/* faqs.html */
html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        body {
            overflow-x: hidden;
        }

        /* ===== NEW NAVIGATION STYLES ===== */

        /* Desktop dropdown nav */
        .nav-list {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-list > li {
            position: relative;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--accent, #c8a84e);
        }
        .nav-link .dropdown-arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }
        .nav-list > li:hover .dropdown-arrow,
        .nav-list > li.dropdown-open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Desktop dropdown panel */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--white, #fff);
            border: 1px solid var(--gray-200, #e5e7eb);
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 1000;
        }
        .nav-list > li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .dropdown-menu a:hover {
            background: var(--gray-50, #f9fafb);
            color: var(--accent, #c8a84e);
        }

        /* Hide desktop nav on mobile */
        @media (max-width: 900px) {
            .nav { display: none !important; }
        }

        /* ===== BURGER / MOBILE MENU ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
            gap: 5px;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--primary, #0a1628);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        @media (max-width: 900px) {
            .mobile-toggle { display: flex; }
        }

        /* Burger X animation */
        .mobile-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile overlay menu */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white, #fff);
            z-index: 1060;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-header .logo-title {
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--primary, #0a1628);
        }
        .mobile-menu-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50, #f9fafb);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .mobile-menu-close:hover {
            background: var(--gray-200, #e5e7eb);
        }

        .mobile-menu-body {
            padding: 1rem 0;
            flex: 1;
        }

        /* Mobile nav items */
        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-100, #f3f4f6);
        }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--primary, #0a1628);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: background 0.2s ease;
            cursor: pointer;
        }
        .mobile-nav-link:hover {
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-link .mobile-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            color: var(--gray-400, #9ca3af);
        }
        .mobile-nav-item.open .mobile-nav-link .mobile-arrow {
            transform: rotate(180deg);
            color: var(--accent, #c8a84e);
        }
        .mobile-nav-item.open > .mobile-nav-link {
            color: var(--accent, #c8a84e);
        }

        /* Mobile sub-menu */
        .mobile-sub-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-item.open .mobile-sub-menu {
            max-height: 300px;
        }
        .mobile-sub-menu a {
            display: block;
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600, #4b5563);
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .mobile-sub-menu a:hover {
            color: var(--accent, #c8a84e);
            background: var(--gray-100, #f3f4f6);
        }

        /* Mobile menu divider & secondary links */
        .mobile-menu-divider {
            height: 1px;
            background: var(--gray-200, #e5e7eb);
            margin: 0.75rem 1.5rem;
        }
        .mobile-secondary-links {
            padding: 0.25rem 0;
        }
        .mobile-secondary-links a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--gray-500, #6b7280);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: color 0.2s ease;
        }
        .mobile-secondary-links a:hover {
            color: var(--accent, #c8a84e);
        }

        /* Mobile menu footer CTA */
        .mobile-menu-footer {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-footer .btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--accent, #c8a84e);
            color: var(--white, #fff);
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .mobile-menu-footer .btn:hover {
            background: #d4edf4;
            color: var(--primary, #0a1628);
            transform: translateY(-2px);
        }

        /* Prevent body scroll when menu open */
        body.menu-open {
            overflow: hidden;
        }

        /* ===== END NAV STYLES ===== */


        /* Logo image styles */
        .logo-img {
            height: 110px;
            width: auto;
            display: block;
        }

        /* Mobile logo fix - prevent stretching on mobile devices */
        @media (max-width: 900px) {
            .logo-img {
                height: 70px;
                max-width: 220px;
                object-fit: contain;
            }
        }

        /* Reduce Book a Call button padding to give logo more space */
        .header-actions .btn-primary {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Book a Call button hover override */
        .header-actions .btn-primary:hover {
            background: #d4edf4 !important;
            color: var(--primary, #0a1628) !important;
        }

        /* Hero button overrides */
        .page-hero .btn-accent.btn-lg:hover {
            background: #ea580c !important;
            border-color: #ea580c !important;
        }
        .page-hero .btn-outline.btn-lg {
            background: transparent !important;
            border: 2px solid #ffffff !important;
            color: #ffffff !important;
        }
        .page-hero .btn-outline.btn-lg:hover {
            background: #ea580c !important;
            border-color: #ea580c !important;
            color: #ffffff !important;
        }

        /* Mobile hero bottom padding */
        @media (max-width: 768px) {
            .page-hero {
                padding-bottom: 3rem !important;
            }
        }

        /* ===== FAQ ACCORDION STYLES ===== */
        .faq-section {
            padding: 5rem 0 4rem;
            background: #ffffff;
            position: relative;
        }
        .faq-section + .faq-section {
            padding-top: 0;
        }

        /* Section header matching existing style */
        .faq-section .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .faq-section .section-title {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: #0a1628;
            line-height: 1.15;
        }
        .faq-section .section-title .accent-text {
            color: #62BFCA;
        }

        /* Accordion wrapper */
        .faq-accordion {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* Individual FAQ item */
        .faq-item {
            border-bottom: 1px solid #e8e8ec;
            position: relative;
        }
        .faq-item:first-child {
            border-top: 1px solid #e8e8ec;
        }

        /* Trigger button */
        .faq-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            padding: 1.5rem 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Archivo', sans-serif;
            font-size: 1.0625rem;
            font-weight: 700;
            color: #0a1628;
            line-height: 1.4;
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
            position: relative;
        }
        .faq-trigger:hover {
            color: #c8a84e;
        }
        .faq-item.active .faq-trigger {
            color: #0a1628;
        }

        /* Trigger text area */
        .faq-trigger-text {
            flex: 1;
            min-width: 0;
        }

        /* The rotating icon */
        .faq-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            flex-shrink: 0;
        }
        .faq-icon svg {
            width: 16px;
            height: 16px;
            stroke: #0a1628;
            transition: stroke 0.3s ease;
        }
        .faq-trigger:hover .faq-icon {
            background: rgba(200, 168, 78, 0.12);
        }
        .faq-trigger:hover .faq-icon svg {
            stroke: #c8a84e;
        }
        .faq-item.active .faq-icon {
            background: #0a1628;
            transform: rotate(45deg);
        }
        .faq-item.active .faq-icon svg {
            stroke: #ffffff;
        }

        /* Collapsible body */
        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1);
        }

        /* Inner content */
        .faq-body-inner {
            padding: 0 0 2rem;
            position: relative;
        }

        /* Gold-to-teal left accent bar */
        .faq-body-inner::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 2rem;
            width: 3px;
            background: linear-gradient(180deg, #c8a84e, #62BFCA);
            border-radius: 3px;
            opacity: 0;
            transform: scaleY(0);
            transform-origin: top;
            transition: opacity 0.4s ease 0.1s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
        }
        .faq-item.active .faq-body-inner::before {
            opacity: 1;
            transform: scaleY(1);
        }

        .faq-body-inner p {
            font-size: 0.975rem;
            line-height: 1.85;
            color: #4b5563;
            margin: 0 0 1rem;
            padding-left: 1.25rem;
        }
        .faq-body-inner p:last-child {
            margin-bottom: 0;
        }
        .faq-body-inner p strong {
            color: #0a1628;
            font-weight: 700;
        }

        /* Placeholder content style */
        .faq-placeholder {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            margin-left: 1.25rem;
            background: #f8f9fa;
            border: 1px dashed #d1d5db;
            border-radius: 8px;
            font-size: 0.875rem;
            font-style: italic;
            color: #9ca3af;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 3.5rem 0 3rem;
            }
            .faq-trigger {
                padding: 1.25rem 0;
                font-size: 0.975rem;
                gap: 1rem;
            }
            .faq-icon {
                width: 32px;
                height: 32px;
                min-width: 32px;
            }
            .faq-icon svg {
                width: 14px;
                height: 14px;
            }
            .faq-body-inner p {
                font-size: 0.925rem;
                padding-left: 1rem;
            }
            .faq-placeholder {
                margin-left: 1rem;
            }
        }

        /* ===== CONSULTATION STYLES ===== */
        .direct-consultation-section {
            position: relative;
            padding: 8rem 0;
            background: #0f172a;
            overflow: hidden;
        }
        .consultation-background {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .consultation-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
        }
        .consultation-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(98, 191, 202, 0.2));
            z-index: 1;
        }
        .consultation-pattern {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2362BFCA' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 1;
        }
        .consultation-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .consultation-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(98, 191, 202, 0.2);
            border: 1px solid rgba(98, 191, 202, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
        }
        .consultation-badge svg {
            width: 20px;
            height: 20px;
            stroke: #62BFCA;
        }
        .consultation-badge span {
            color: #62BFCA;
            font-weight: 800;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .consultation-title {
            font-family: 'Archivo', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .consultation-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }
        .consultation-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
        }
        .consultation-stat {
            text-align: center;
        }
        .consultation-stat-number {
            font-family: 'Archivo', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: #62BFCA;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .consultation-stat-label {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        @media (max-width: 900px) {
            .consultation-title { font-size: 2.5rem; }
            .consultation-stats { flex-direction: column; gap: 2rem; }
            .direct-consultation-section { padding: 5rem 0; }
        }