/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #163a52 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #b8d4e8;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Content Section */
.contact-content {
    padding: 80px 0;
    background: #f7f9fb;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #e8f0f5;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(34, 197, 183, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--navy) 0%, #163a52 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 42, 63, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 42, 63, 0.4);
}

/* Contact Information Card */
.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.info-subtitle {
    color: #5a6c7d;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8f0f5;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.info-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal) 0%, #1ab3a6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-content p,
.info-content a {
    color: #5a6c7d;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.info-content a:hover {
    color: var(--teal);
}

/* Social Links */
.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e8f0f5;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #f7f9fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-3px);
}

/* Quick Links Card */
.quick-links-card {
    background: linear-gradient(135deg, var(--navy) 0%, #163a52 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quick-links-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list li:last-child {
    margin-bottom: 0;
}

.quick-links-list a {
    color: #b8d4e8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-links-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 15px;
}

.quick-links-list i {
    width: 20px;
    color: var(--teal);
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 80px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    background: #f7f9fb;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    color: var(--teal);
    font-size: 1.2rem;
}

.faq-answer {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-content {
        padding: 50px 0;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }

    .form-title,
    .info-title {
        font-size: 1.5rem;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}