/* Contact Page Styles */

/* Page Container */
.page_starting {
    padding: 40px 0;
}

/* Hero Section */
.contact-hero {
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h1 {
    color: #002245;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Main Contact Wrapper */
.contact-wrapper {
    margin-top: 40px;
}

/* Contact Info Cards - Left Side */
.contact-info-section {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    /* height: 100%; */
}

.contact-info-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info-header h3 {
    color: #002245;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: #666;
    font-size: 14px;
}

.contact-info-item {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item:hover {
    background: #fff5f2;
    border-left-color: #F37039;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F37039, #ff8c5a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.contact-info-icon i {
    color: #fff;
    font-size: 20px;
}

.contact-info-content h5 {
    color: #002245;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #F37039;
}

/* Contact Image */
.contact-image-wrapper {
    margin-top: 30px;
    text-align: center;
}

.contact-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Contact Form - Right Side */
.contact-form-section {
    background: #fff;
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-header h2 {
    color: #002245;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 28px;
}

.contact-form-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Form Styles - Clean Design */

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-form .required-star {
    color: #F37039;
}

.contact-form .form-control,
.contact-form .form-cus,
.contact-form select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    background: #fff;
}

.contact-form .form-control:focus,
.contact-form .form-cus:focus,
.contact-form select:focus {
    border-color: #F37039;
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 112, 57, 0.1);
    background: #fff;
}

.contact-form textarea.form-control,
.contact-form textarea.form-cus {
    resize: vertical;
    min-height: 120px;
}

/* Captcha Section */
.captcha-section {
    margin-top: 8px;
}

.captcha-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.captcha-label {
    color: #002245;
    font-size: 14px;
    font-weight: 500;
}

.captcha-code {
    background: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #F37039;
    letter-spacing: 3px;
    border: 1px solid #ddd;
}

.refresh-btn {
    background: #F37039;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: #002245;
}

/* Error Messages */
.text-danger_form_error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.form-messege {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

/* Modal Styles */
.message-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.message-modal .modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.message-modal .modal-content p {
    color: #333;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.message-modal .btn.color-bg {
    background: #F37039;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message-modal .btn.color-bg:hover {
    background: #002245;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-info-section {
        padding: 25px 20px;
    }
    
    .contact-form-header h2 {
        font-size: 24px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .captcha-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .captcha-code {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .contact.theme-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-form-header h2 {
        font-size: 22px;
    }
}
