/* ============================================ */
/* FAQS PAGE - UK MARRIAGE BUREAU               */
/* TERMS PAGE STYLE - COMPLETE                  */
/* PREMIUM SIDEBAR UPGRADE - TERMS/PRIVACY STYLE*/
/* ============================================ */

:root {
    --primary: #135678;
    --primary-dark: #0e425c;
    --primary-light: #1a6a8a;
    --accent: #C8A96A;
    --accent-dark: #b89858;
    --white: #FFFFFF;
    --bg-light: #F8F7F3;
    --card-bg: #195a70;
    --text-dark: #1E1E1E;
    --text-muted: #6B6B6B;
    --text-white: #FFFFFF;
    --border: #EAEAEA;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #135678 0%, #0e425c 100%);
    --gradient-accent: linear-gradient(135deg, #C8A96A 0%, #b89858 100%);
    --gradient-sidebar: linear-gradient(135deg, #0f4c5e 0%, #0a3a48 100%);
    --gradient-teal-emerald: linear-gradient(135deg, #0B4F6C 0%, #0A3A44 100%);
    --gradient-teal-light: linear-gradient(135deg, #0D5D7A 0%, #0B4F6C 100%);
    --gradient-active: linear-gradient(135deg, #0E6B7C 0%, #0C5A6B 100%);
    --gradient-gold: linear-gradient(135deg, #C8A96A 0%, #B8963C 100%);
    --shadow-premium: 0 20px 35px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(200,169,106,0.1);
    --shadow-premium-hover: 0 25px 40px -15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(200,169,106,0.2);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(200, 169, 106, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float3D {
    0% { transform: translateY(0px) rotateX(0deg); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
    50% { transform: translateY(-5px) rotateX(3deg); box-shadow: 0 20px 30px rgba(0,0,0,0.25); }
    100% { transform: translateY(0px) rotateX(0deg); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(200,169,106,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(200,169,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,169,106,0); }
}

@keyframes welcomeSlideIn {
    0% { opacity: 0; transform: scale(0.7) translateY(-50px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes welcomeBgFade {
    0% { backdrop-filter: blur(0px); background: rgba(0,0,0,0); }
    100% { backdrop-filter: blur(8px); background: rgba(0,0,0,0.6); }
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,169,106,0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(200,169,106,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,169,106,0); }
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.faqs-hero {
    background: var(--gradient-primary);
    padding: 50px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faqs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200,169,106,0.1) 0%, transparent 70%);
    animation: fadeInUp 20s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 18px;
    position: relative;
    z-index: 1;
}

.hero-badge i {
    color: var(--accent);
}

.hero-badge span {
    color: var(--white);
    font-size: 0.8rem;
}

/* ============================================ */
/* BUTTON BAR - TERMS PAGE STYLE                */
/* ============================================ */
.button-bar-two {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
    gap: 20px;
    flex-wrap: wrap;
}

.button-left {
    flex: 1;
}

.button-center {
    flex-shrink: 0;
}

.button-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-language-3d {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid var(--accent);
    border-radius: 70px;
    padding: 14px 38px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 15px 25px -8px rgba(0,0,0,0.3), 0 0 0 1px rgba(200,169,106,0.3) inset;
    animation: float3D 3s ease-in-out infinite, pulseGlow 2.5s ease-in-out infinite;
    text-decoration: none;
}

.btn-language-3d i {
    color: var(--accent);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.btn-language-3d .language-arrow {
    transition: transform 0.3s ease;
}

.btn-language-3d span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Urdu text styling for language button */
.btn-language-3d span {
    font-family: 'Jameel Noori Nastaleeq Regular', 'Noto Nastaliq Urdu', 'Alvi Nastaleeq', 'Urdu Typesetting', 'Nafees Web', serif;
    line-height: 1.6;
    font-weight: normal;
    letter-spacing: normal;
    word-spacing: normal;
    font-feature-settings: normal;
    text-rendering: geometricPrecision;
}

.btn-language-3d:hover {
    background: var(--accent);
    transform: translateY(-8px) rotateX(6deg) scale(1.05);
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.3) inset;
    border-color: transparent;
    animation: none;
}

.btn-language-3d:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.btn-language-3d:hover span {
    color: var(--primary);
    font-family: 'Jameel Noori Nastaleeq Regular', 'Noto Nastaliq Urdu', 'Alvi Nastaleeq', 'Urdu Typesetting', 'Nafees Web', serif;
}

.btn-language-3d:hover .language-arrow {
    transform: translateX(6px);
}

.btn-consult-single {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--white);
}

.btn-consult-single:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================ */
/* FAQS GRID - PREMIUM SIDEBAR UPGRADE          */
/* ============================================ */
.faqs-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.faqs-grid {
    display: flex;
    gap: 40px;
}

/* Sidebar - Premium Terms/Privacy Style */
.faqs-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FDFCF8 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: sticky;
    top: 100px;
    height: fit-content;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 169, 106, 0.15);
}

.faqs-sidebar:hover {
    box-shadow: var(--shadow-premium-hover);
}

/* Sidebar Header - Premium Teal/Emerald Gradient */
.sidebar-header {
    background: linear-gradient(135deg, #0B5D6E 0%, #094A58 100%);
    padding: 28px 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200,169,106,0.15) 0%, transparent 70%);
    animation: fadeInUp 15s ease-in-out infinite;
}

.sidebar-header i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.sidebar-header h3 {
    color: var(--white);
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Premium Capsule Navigation */
.faqs-nav {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: #2C4A5E;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.nav-link i {
    width: 22px;
    font-size: 1rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(11, 93, 110, 0.08) 0%, rgba(9, 74, 88, 0.05) 100%);
    transform: translateX(3px);
    color: #0B5D6E;
}

.nav-link:hover i {
    color: #0B5D6E;
    transform: scale(1.05);
}

.nav-link.active {
    background: linear-gradient(135deg, #0E6B7C 0%, #0C5A6B 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(11, 93, 110, 0.3), 0 1px 2px rgba(0,0,0,0.05);
    font-weight: 600;
}

.nav-link.active i {
    color: var(--accent);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Sidebar Contact - Premium Glass Style */
.sidebar-contact {
    padding: 24px 20px;
    background: linear-gradient(135deg, #F8F9FA 0%, #F0F2F4 100%);
    border-top: 1px solid rgba(200, 169, 106, 0.2);
    text-align: center;
    margin-top: 8px;
}

.sidebar-contact h4 {
    color: #0B5D6E;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #20B859 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #20B859 0%, #1AA851 100%);
}

.sidebar-contact p {
    font-size: 0.7rem;
    color: #6B7A8A;
    font-weight: 500;
}

/* Main Content */
.faqs-main {
    flex: 1;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

/* ============================================ */
/* WELCOME MODAL STYLES                         */
/* ============================================ */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: welcomeBgFade 0.5s ease-out;
}

.welcome-overlay.hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.welcome-modal {
    background: linear-gradient(135deg, #ffffff 0%, #fefcf7 100%);
    border-radius: 32px;
    padding: 45px 50px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(200,169,106,0.3) inset;
    animation: welcomeSlideIn 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.welcome-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: iconPulse 1.5s ease-in-out infinite;
}

.welcome-icon i {
    font-size: 40px;
    color: var(--primary);
}

.welcome-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.welcome-modal p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.welcome-close-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.welcome-close-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ============================================ */
/* FAQ CONTENT SECTIONS - HIDE BY DEFAULT       */
/* ============================================ */
.faq-content-section {
    display: none;
}

.faq-content-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Content Card */
.content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.content-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.content-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* Info Box */
.info-box {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.info-box i {
    font-size: 1.5rem;
}

.info-box h5 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.info-box p {
    margin: 0;
}

.info-box.highlight {
    background: rgba(200, 169, 106, 0.1);
    border-left: 4px solid var(--accent);
}

.info-box.highlight i {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 50px 20px;
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 30px;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.no-results h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* FAQs Accordion */
.faqs-accordion {
    margin-bottom: 40px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(200, 169, 106, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    border-top: none;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
    border-top: 1px solid var(--border);
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-answer ul {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-answer li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Still Have Card */
.still-have-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.card-icon i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.still-have-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.still-have-card p {
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.card-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-contact, .btn-wa-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact {
    background: var(--accent);
    color: var(--primary);
}

.btn-contact:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-wa-card {
    background: #25D366;
    color: var(--white);
}

.btn-wa-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 992px) {
    .faqs-grid {
        flex-direction: column;
    }
    
    .faqs-sidebar {
        width: 100%;
        position: static;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .button-bar-two {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    
    .button-left, .button-center, .button-right {
        flex: auto;
        width: 100%;
        justify-content: center;
    }
    
    .button-right {
        justify-content: center;
    }
    
    .btn-language-3d {
        padding: 10px 25px;
    }
    
    .btn-language-3d span {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .still-have-card {
        padding: 30px 20px;
    }
    
    .card-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-contact, .btn-wa-card {
        width: 100%;
        justify-content: center;
    }
    
    .welcome-modal {
        padding: 30px 25px;
    }
    
    .welcome-modal h2 {
        font-size: 1.4rem;
    }
    
    /* Mobile Sidebar Adjustments */
    .faqs-sidebar {
        border-radius: 24px;
    }
    
    .sidebar-header {
        padding: 22px 16px;
    }
    
    .sidebar-header i {
        font-size: 2rem;
    }
    
    .sidebar-header h3 {
        font-size: 1.15rem;
    }
    
    .faqs-nav {
        padding: 14px 12px;
        gap: 2px;
    }
    
    .nav-link {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .sidebar-contact {
        padding: 18px 16px;
    }
    
    .whatsapp-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .btn-language-3d {
        padding: 8px 18px;
        gap: 8px;
    }
    
    .btn-language-3d span {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .faq-question h3 {
        font-size: 0.85rem;
    }
    
    .welcome-modal {
        padding: 25px 20px;
    }
    
    .welcome-modal h2 {
        font-size: 1.2rem;
    }
    
    .welcome-icon {
        width: 60px;
        height: 60px;
    }
    
    .welcome-icon i {
        font-size: 28px;
    }
    
    /* Small Mobile Sidebar */
    .faqs-sidebar {
        border-radius: 20px;
    }
    
    .sidebar-header {
        padding: 18px 12px;
    }
    
    .sidebar-header i {
        font-size: 1.75rem;
    }
    
    .sidebar-header h3 {
        font-size: 1rem;
    }
    
    .faqs-nav {
        padding: 12px 10px;
    }
    
    .nav-link {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
    
    .nav-link i {
        width: 18px;
        font-size: 0.85rem;
    }
}

/* ============================================ */
/* PRINT STYLES                                 */
/* ============================================ */
@media print {
    .faqs-sidebar, .button-bar-two, .still-have-card,
    .sidebar-contact, .hero-badge, .welcome-overlay {
        display: none !important;
    }
    
    .faqs-grid {
        display: block !important;
    }
    
    .faqs-main {
        width: 100% !important;
    }
}