/* ==========================================================================
   FAQ STYLES (HIGH-CONTRAST & BRAND MATCHED)
   ========================================================================== */

.modern-faq-section {
    background: #f8fafc !important;
    padding-top: 100px !important;
    padding-bottom: 90px !important;
}

/* Header Typography Overrides */
.modern-faq-section .section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff7b2c !important;
    background: rgba(255, 123, 44, 0.08);
    border: 1px solid rgba(255, 123, 44, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
}

.modern-faq-section .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #071a52 !important;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.modern-faq-section .section-subtitle {
    color: #475569 !important;
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Cards */
.faq-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: border-color 0.25s ease;
}

.faq-card:hover { 
    border-color: #ff7b2c; 
}

.faq-card .card-header { 
    background: #ffffff; 
    padding: 18px 24px; 
    border: none; 
    text-decoration: none !important; 
    display: block; 
}

.faq-card .card-header h6 { 
    font-size: 16.5px; 
    font-weight: 700; 
    color: #071a52 !important; 
}

.faq-chevron { 
    color: #94a3b8; 
    font-size: 14px; 
    transition: transform 0.3s ease; 
}

.faq-card .card-header[aria-expanded="true"] .faq-chevron { 
    transform: rotate(180deg); 
    color: #ff7b2c; 
}

.faq-card .card-body { 
    padding: 0 24px 22px 24px; 
    color: #64748b; 
    font-size: 15px; 
    line-height: 1.7; 
    border-top: none; 
}

.text-orange { 
    color: #ff7b2c !important; 
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .modern-faq-section {
        padding-top: 70px !important;
        padding-bottom: 60px !important;
    }

    .modern-faq-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .modern-faq-section .section-title {
        font-size: 26px;
    }

    .faq-card .card-header { 
        padding: 14px 16px; 
    }

    .faq-card .card-header h6 { 
        font-size: 14.5px; 
    }

    .faq-card .card-body { 
        padding: 0 16px 16px 16px; 
        font-size: 13.5px; 
    }
}