/* --- 1. THEME VARIABLES --- */
        :root {
            /* Brand Identity Colors */
            --brand-navy: #022e47;
            --brand-cream: #FAF8F1;
            --brand-orange: #f68f1d;
            --brand-pink: #ea3b60;
            
            /* Default LIGHT Theme Mapping */
            --bg-body: var(--brand-cream);
            --text-main: var(--brand-navy);
            --text-muted: rgba(2, 46, 71, 0.7);
            --nav-bg-scrolled: rgba(250, 248, 241, 0.95);
            --nav-mobile-bg: #FAF8F1;
            --nav-mobile-shadow: rgba(0,0,0,0.1);
            
            /* Footer is always dark */
            --footer-bg: var(--brand-navy);
            
            --vf-grad: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange) 65%, var(--brand-pink) 100%);
            
            --font-display: 'Bakbak One', cursive;
            --font-body: 'Work Sans', sans-serif;
        }

        /* DARK THEME OVERRIDES */
        [data-theme="dark"] {
            --bg-body: #011a2a; 
            --text-main: #e6e6e6;
            --text-muted: rgba(255, 255, 255, 0.7);
            --nav-bg-scrolled: rgba(1, 26, 42, 0.95);
            --nav-mobile-bg: #022e47;
            --nav-mobile-shadow: rgba(0,0,0,0.4);
        }

        /* --- 2. GLOBAL STYLES --- */
        body {
            background-color: var(--bg-body);
            font-family: var(--font-body);
            color: var(--text-main);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            text-transform: uppercase;
            font-weight: 600;
        }

        .text-gradient {
            background: var(--vf-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* --- 3. AMBIENT BACKGROUND --- */
        .ambient-light {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            z-index: -1; pointer-events: none; overflow: hidden;
            background: var(--bg-body);
            transition: background-color 0.3s ease;
        }

        .orb {
            position: absolute; border-radius: 50%;
            filter: blur(80px); opacity: 0.5;
            animation: floatOrb 20s infinite ease-in-out;
        }

        .orb-1 { width: 100vw; height: 100vw; background: var(--brand-orange); top: -10%; left: -10%; opacity: 0.15;}
        .orb-2 { width: 30vw; height: 30vw; background: var(--brand-pink); bottom: 10%; right: -5%; animation-delay: -5s; opacity: 0.15;}
        .orb-3 { width: 60vw; height: 60vw; background: #ff5500; top: 40%; left: 40%; animation-delay: -10s; opacity: 0.1;}

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -50px) scale(1.1); }
        }

        /* BRAND LOGO THEME ADAPTATION */
        .brand-logo { height: 70px; width: auto; object-fit: contain; }
        .logo-light { display: block; }
        .logo-dark { display: none; }
        html[data-theme="dark"] .logo-light { display: none; }
        html[data-theme="dark"] .logo-dark { display: block; }

        /* --- 7. FAQ SECTION STYLING --- */
        .faq-section {
            padding-top: 160px; /* Offset for fixed nav */
            padding-bottom: 80px;
            min-height: 80vh;
            position: relative;
            z-index: 1;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .faq-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .accordion-item {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(128, 128, 128, 0.2);
            margin-bottom: 1rem;
            border-radius: 0 !important;
        }

        .accordion-button {
            background-color: transparent !important;
            color: var(--text-main);
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            padding: 1.5rem 1rem;
            box-shadow: none !important;
            transition: all 0.3s ease;
            text-transform: none; /* Keep questions readable */
            letter-spacing: 0.5px;
        }

        .accordion-button:not(.collapsed) {
            color: var(--brand-orange);
            background-color: transparent;
        }

        /* Adjusting Bootstrap's default accordion chevron for themeing */
        .accordion-button::after {
            transition: transform 0.3s ease;
        }
        [data-theme="dark"] .accordion-button::after {
            filter: invert(1);
        }
        [data-theme="dark"] .accordion-button:not(.collapsed)::after {
            filter: invert(0.6) sepia(1) saturate(5) hue-rotate(345deg); /* Orange tint */
        }

        .accordion-body {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.8;
            padding: 0 1rem 2rem 1rem;
            font-weight: 400;
        }

        /* Custom Bullet List inside FAQ */
        .services-list {
            list-style: none;
            padding-left: 0;
            margin-top: 15px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        @media (min-width: 768px) {
            .services-list {
                grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
            }
        }

        .services-list li {
            position: relative;
            padding-left: 30px;
        }

        .services-list li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--brand-orange);
            font-size: 0.9rem;
        }

        .highlight-text {
            font-weight: 700;
            color: var(--text-main);
        }

        .ambient-light { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; overflow: hidden; background: var(--bg-body); }
        .orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; }
        .orb-1 { width: 60vw; height: 60vw; background: var(--brand-orange); top: -20%; left: -10%; }
        .orb-2 { width: 40vw; height: 40vw; background: var(--brand-pink); bottom: -10%; right: -10%; }

        /* --- NAVBAR --- */
        .navbar-prestige { background: transparent; padding: 1.5rem 0; transition: all 0.4s; }
        .navbar-prestige.scrolled { padding: 10px 0; background: var(--nav-bg-scrolled); backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
        .brand-logo { height: 60px; width: auto; }
        .nav-link { font-weight: 700; color: var(--text-main) !important; margin: 0 10px; position: relative; }
        .nav-link:hover, .nav-link.active { color: var(--brand-orange) !important; }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 0; background: var(--vf-grad); transition: 0.3s; }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        
        .btn-nav-contact { background: var(--vf-grad); color: white !important; padding: 8px 20px; border-radius: 50px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; text-decoration: none; transition: 0.3s; }
        .btn-nav-contact:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(246, 143, 29, 0.4); }

        /* --- FAQ GRID --- */
        .faq-wrapper { padding: 160px 0 100px; }
        .section-tag { font-family: var(--font-display); color: var(--brand-orange); letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
        .section-title { font-family: var(--font-display); font-size: 3.5rem; margin-bottom: 50px; }

        .faq-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            backdrop-filter: blur(15px);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }
        .faq-card:hover {
            transform: translateY(-10px);
            border-color: var(--brand-orange);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .faq-icon-box {
            width: 50px; height: 50px;
            background: var(--vf-grad);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.5rem;
            margin-bottom: 25px;
        }
        .faq-question { font-size: 1.5rem; margin-bottom: 20px; color: var(--text-main); line-height: 1.2; }
        
        /* Structured Content */
        .answer-struct { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
        .struct-label { display: block; font-weight: 800; text-transform: uppercase; font-size: 0.75rem; color: var(--brand-orange); margin-bottom: 5px; margin-top: 15px; letter-spacing: 1px; }
        .struct-list { list-style: none; padding: 0; margin: 0; }
        .struct-list li { margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
        .struct-list li i { color: var(--brand-pink); font-size: 0.8rem; margin-top: 5px; }

        /* --- THEME TOGGLE --- */
        .theme-switch-track { width: 60px; height: 30px; background: #dbe4eb; border-radius: 50px; position: relative; cursor: pointer; }
        [data-theme="dark"] .theme-switch-track { background: rgba(255,255,255,0.1); }
        .theme-switch-ball { width: 24px; height: 24px; background: white; border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: 0.3s; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        [data-theme="dark"] .theme-switch-ball { transform: translateX(30px); background: var(--brand-navy); color: white; }

        /* --- FOOTER (Minimal Version) --- */
        .footer-horizon { background: var(--footer-bg); color: white; padding: 80px 0 40px; margin-top: 50px; }
        .footer-nav-link { color: rgba(255,255,255,0.5); text-decoration: none; margin-right: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; }
        .footer-nav-link:hover { color: var(--brand-orange); }

        @media (max-width: 768px) {
            .section-title { font-size: 2.5rem; }
            .faq-card { padding: 30px; }
        }
		
		/* --- Base FAQ Card (Light Mode) --- */
.faq-card {
    background: #ffffff; /* Solid white for light mode */
    border: 1px solid rgba(2, 46, 71, 0.08); /* Subtle navy border for light mode */
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Dark Mode FAQ Card (Sleek Black Mask) --- */
[data-theme="dark"] .faq-card {
    background: rgba(0, 0, 0, 0.4); /* The sleek black mask */
    backdrop-filter: blur(12px); /* High-end glass blur */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle edge highlight */
}

/* Ensure hover state looks good in dark mode too */
[data-theme="dark"] .faq-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
