:root {
            --navy-deep: #0F172A;
            --navy-dark: #1E293B;
            --navy-mid: #334155;
            --gold: #D4AF37;
            --gold-light: #E8CD6A;
            --gold-dark: #B8961E;
            --gold-pale: #FBF6E8;
            --white: #FFFFFF;
            --slate-50: #F8FAFC;
            --slate-100: #F1F5F9;
            --slate-200: #E2E8F0;
            --slate-300: #CBD5E1;
            --slate-400: #94A3B8;
            --slate-500: #64748B;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1E293B;
            --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
            --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
            --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 10px -4px rgba(15, 23, 42, 0.08);
            --shadow-xl: 0 20px 40px -5px rgba(15, 23, 42, 0.14), 0 8px 16px -6px rgba(15, 23, 42, 0.1);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--slate-800);
            background: var(--white);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            min-height: 100vh;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--navy-deep);
            letter-spacing: -0.01em;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
        }
        h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.5rem);
            font-weight: 700;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.75rem);
            font-weight: 600;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.3rem);
            font-weight: 600;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            outline: none;
            transition: all var(--transition);
        }

        input,
        textarea,
        select {
            font-family: var(--font-body);
            font-size: 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 2rem;
            }
        }
        @media (min-width: 1024px) {
            .container {
                padding: 0 2.5rem;
            }
        }

        /* ========== SKIP LINK ========== */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            background: var(--gold);
            color: var(--navy-deep);
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            z-index: 9999;
            transition: top 0.3s;
            font-size: 0.9rem;
        }
        .skip-link:focus {
            top: 0.75rem;
        }

        /* ========== HEADER ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--slate-200);
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1.25rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 1rem;
        }
        @media (min-width: 768px) {
            .header-inner {
                padding: 0.85rem 2rem;
            }
        }
        @media (min-width: 1024px) {
            .header-inner {
                padding: 0.85rem 2.5rem;
            }
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--navy-deep);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 0;
            flex-shrink: 0;
        }
        .logo-text {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--navy-deep);
            line-height: 1.1;
            letter-spacing: -0.01em;
        }
        .logo-text small {
            display: block;
            font-family: var(--font-body);
            font-weight: 400;
            font-size: 0.7rem;
            color: var(--slate-500);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .main-nav {
            display: none;
            align-items: center;
            gap: 0.25rem;
        }
        @media (min-width: 1024px) {
            .main-nav {
                display: flex;
            }
        }
        .nav-link {
            padding: 0.5rem 0.85rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--slate-700);
            border-radius: var(--radius-sm);
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.01em;
        }
        .nav-link:hover,
        .nav-link.active {
            color: var(--navy-deep);
            background: var(--slate-100);
        }
        .nav-link.active {
            font-weight: 600;
        }

        /* Dropdown */
        .nav-dropdown {
            position: relative;
        }
        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.5rem 0.85rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--slate-700);
            border-radius: var(--radius-sm);
            background: none;
            cursor: pointer;
            white-space: nowrap;
            letter-spacing: 0.01em;
            font-family: var(--font-body);
            transition: all var(--transition);
        }
        .nav-dropdown-toggle:hover {
            color: var(--navy-deep);
            background: var(--slate-100);
        }
        .nav-dropdown-toggle svg {
            width: 14px;
            height: 14px;
            transition: transform var(--transition);
        }
        .nav-dropdown:hover .nav-dropdown-toggle svg {
            transform: rotate(180deg);
        }
        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.4rem;
            background: var(--white);
            border: 1px solid var(--slate-200);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            min-width: 240px;
            padding: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all var(--transition);
            z-index: 100;
        }
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-dropdown-menu a {
            display: block;
            padding: 0.65rem 1rem;
            font-size: 0.88rem;
            color: var(--slate-700);
            border-radius: var(--radius-sm);
            font-weight: 500;
        }
        .nav-dropdown-menu a:hover {
            background: var(--slate-100);
            color: var(--navy-deep);
        }

        .header-cta {
            display: none;
        }
        @media (min-width: 768px) {
            .header-cta {
                display: inline-flex;
            }
        }

        /* Hamburger */
        .hamburger-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: none;
            border-radius: var(--radius-sm);
            padding: 0;
            flex-shrink: 0;
        }
        .hamburger-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--navy-deep);
            position: relative;
            transition: var(--transition);
        }
        .hamburger-btn span::before,
        .hamburger-btn span::after {
            content: '';
            position: absolute;
            width: 22px;
            height: 2px;
            background: var(--navy-deep);
            transition: var(--transition);
            left: 0;
        }
        .hamburger-btn span::before {
            top: -7px;
        }
        .hamburger-btn span::after {
            top: 7px;
        }
        .hamburger-btn.open span {
            background: transparent;
        }
        .hamburger-btn.open span::before {
            top: 0;
            transform: rotate(45deg);
        }
        .hamburger-btn.open span::after {
            top: 0;
            transform: rotate(-45deg);
        }
        @media (min-width: 1024px) {
            .hamburger-btn {
                display: none;
            }
        }

        /* Mobile nav */
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--white);
            border-bottom: 1px solid var(--slate-200);
            padding: 0.75rem 1.25rem 1.25rem;
            gap: 0.3rem;
            box-shadow: var(--shadow-md);
        }
        .mobile-nav.open {
            display: flex;
        }
        @media (min-width: 1024px) {
            .mobile-nav.open {
                display: none;
            }
        }
        .mobile-nav a,
        .mobile-nav .mobile-dropdown-toggle {
            display: block;
            padding: 0.8rem 1rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--slate-700);
            border-radius: var(--radius-sm);
            text-align: left;
            width: 100%;
            background: none;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all var(--transition);
        }
        .mobile-nav a:hover,
        .mobile-nav .mobile-dropdown-toggle:hover {
            background: var(--slate-100);
            color: var(--navy-deep);
        }
        .mobile-dropdown-menu {
            display: none;
            padding-left: 1rem;
            border-left: 2px solid var(--gold);
            margin-left: 0.5rem;
        }
        .mobile-dropdown-menu.open {
            display: block;
        }
        .mobile-dropdown-menu a {
            font-size: 0.85rem;
            padding: 0.55rem 1rem;
        }
        .mobile-cta {
            margin-top: 0.5rem;
            width: 100%;
            text-align: center;
            padding: 0.85rem !important;
            background: var(--gold) !important;
            color: var(--navy-deep) !important;
            font-weight: 700 !important;
            border-radius: var(--radius) !important;
            font-size: 0.95rem !important;
        }
        .mobile-cta:hover {
            background: var(--gold-dark) !important;
        }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.6rem;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius);
            letter-spacing: 0.01em;
            white-space: nowrap;
            min-height: 48px;
            min-width: 48px;
            cursor: pointer;
            transition: all var(--transition);
            text-align: center;
        }
        .btn-primary {
            background: var(--gold);
            color: var(--navy-deep);
            box-shadow: var(--shadow-md);
        }
        .btn-primary:hover {
            background: var(--gold-dark);
            box-shadow: var(--shadow-lg);
            transform: translateY(-1px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: var(--shadow-sm);
        }
        .btn-secondary {
            background: var(--white);
            color: var(--navy-deep);
            border: 2px solid var(--navy-deep);
        }
        .btn-secondary:hover {
            background: var(--navy-deep);
            color: var(--white);
            border-color: var(--navy-deep);
        }
        .btn-outline-light {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .btn-outline-light:hover {
            background: var(--white);
            color: var(--navy-deep);
        }
        .btn-lg {
            padding: 1rem 2.2rem;
            font-size: 1.05rem;
            border-radius: var(--radius-lg);
        }
        .btn-full {
            width: 100%;
        }

        /* ========== SECTIONS ========== */
        section {
            padding: 3rem 0;
        }
        @media (min-width: 768px) {
            section {
                padding: 4.5rem 0;
            }
        }
        @media (min-width: 1024px) {
            section {
                padding: 5.5rem 0;
            }
        }
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .section-header h2 {
            margin-bottom: 0.75rem;
        }
        .section-header p {
            color: var(--slate-500);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gold-dark);
            margin-bottom: 0.5rem;
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            background: var(--navy-deep);
            color: var(--white);
            padding: 3.5rem 0 4rem;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
        }
        @media (min-width: 768px) {
            .hero {
                padding: 5rem 0 6rem;
                min-height: 70vh;
            }
        }
        .hero-bg-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.06;
            background-image: radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }
        .hero-bg-ornament {
            position: absolute;
            top: -120px;
            right: -120px;
            width: 450px;
            height: 450px;
            border: 2px solid rgba(212, 175, 55, 0.12);
            border-radius: 50%;
            pointer-events: none;
        }
        @media (min-width: 768px) {
            .hero-bg-ornament {
                width: 600px;
                height: 600px;
                top: -180px;
                right: -150px;
            }
        }
        .hero-bg-ornament::after {
            content: '';
            position: absolute;
            inset: 30px;
            border: 1px solid rgba(212, 175, 55, 0.08);
            border-radius: 50%;
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-content {
            max-width: 650px;
        }
        .hero-content h1 {
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 800;
        }
        .hero-content h1 .gold-accent {
            color: var(--gold-light);
        }
        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--slate-300);
            margin-bottom: 2rem;
            line-height: 1.7;
            max-width: 520px;
        }
        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .hero-ctas .btn {
            flex: 1 1 auto;
            min-width: 180px;
        }
        @media (min-width: 480px) {
            .hero-ctas {
                flex-wrap: nowrap;
            }
        }

        /* ========== TRUST BAR ========== */
        .trust-bar {
            background: var(--white);
            border-bottom: 1px solid var(--slate-200);
            padding: 1.5rem 0;
        }
        .trust-bar .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1.5rem 2.5rem;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--slate-700);
            white-space: nowrap;
        }
        .trust-badge-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--gold-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
            color: var(--gold-dark);
        }

        /* ========== SERVICE CARDS ========== */
        .service-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .service-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }
        .service-card {
            background: var(--white);
            border: 1px solid var(--slate-200);
            border-radius: var(--radius-xl);
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-slow);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        @media (min-width: 768px) {
            .service-card {
                padding: 2.5rem 2rem;
            }
        }
        .service-card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
            border-color: var(--gold);
        }
        .service-card-accent {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            opacity: 0;
            transition: opacity var(--transition-slow);
        }
        .service-card:hover .service-card-accent {
            opacity: 1;
        }
        .service-card-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--radius);
            background: var(--navy-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 1.25rem;
            flex-shrink: 0;
        }
        .service-card h3 {
            margin-bottom: 0.6rem;
        }
        .service-card p {
            color: var(--slate-500);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--gold-dark);
        }
        .service-card-link svg {
            transition: transform var(--transition);
        }
        .service-card:hover .service-card-link svg {
            transform: translateX(4px);
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials-section {
            background: var(--slate-50);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (min-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 1.75rem;
            }
        }
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--slate-200);
            transition: all var(--transition);
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-md);
        }
        .testimonial-stars {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            letter-spacing: 2px;
        }
        .testimonial-card p {
            font-size: 0.9rem;
            color: var(--slate-600);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 1rem;
        }
        .testimonial-author {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--navy-deep);
        }
        .testimonial-role {
            font-size: 0.78rem;
            color: var(--slate-400);
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: var(--navy-deep);
            color: var(--white);
            text-align: center;
            padding: 3.5rem 0;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background: radial-gradient(ellipse at center, var(--gold) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-banner .container {
            position: relative;
            z-index: 2;
        }
        .cta-banner h2 {
            color: var(--white);
            margin-bottom: 0.75rem;
        }
        .cta-banner p {
            color: var(--slate-300);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .cta-banner .btn-primary {
            font-size: 1.05rem;
            padding: 1rem 2.5rem;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--slate-800);
            color: var(--slate-300);
            padding: 3rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
        .footer-brand .logo-text {
            color: var(--white);
            font-size: 1.2rem;
        }
        .footer-brand .logo-text small {
            color: var(--slate-400);
        }
        .footer-brand p {
            font-size: 0.85rem;
            margin-top: 0.5rem;
            color: var(--slate-400);
            line-height: 1.6;
        }
        .footer-col h4 {
            font-family: var(--font-body);
            color: var(--white);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .footer-col a {
            display: block;
            font-size: 0.88rem;
            color: var(--slate-400);
            padding: 0.3rem 0;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            border-top: 1px solid var(--slate-700);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.8rem;
            color: var(--slate-400);
        }
        .footer-bottom a {
            color: var(--gold-light);
        }

        /* ========== PAGE HERO (subpages) ========== */
        .page-hero {
            background: var(--navy-deep);
            color: var(--white);
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background: radial-gradient(ellipse at center, var(--gold) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
        }
        .page-hero h1 {
            color: var(--white);
            margin-bottom: 0.5rem;
        }
        .page-hero p {
            color: var(--slate-300);
            font-size: 1rem;
            max-width: 550px;
            margin: 0 auto;
        }

        /* ========== SERVICE LIST ========== */
        .service-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        @media (min-width: 640px) {
            .service-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }
        }
        @media (min-width: 1024px) {
            .service-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .service-item {
            background: var(--white);
            border: 1px solid var(--slate-200);
            border-radius: var(--radius);
            padding: 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .service-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--gold);
        }
        .service-item-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: var(--gold-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1rem;
            color: var(--gold-dark);
        }
        .service-item h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
            color: var(--navy-deep);
        }
        .service-item p {
            font-size: 0.82rem;
            color: var(--slate-500);
            line-height: 1.5;
        }

        /* ========== CHECKLIST SIDEBAR ========== */
        .content-with-sidebar {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 1024px) {
            .content-with-sidebar {
                grid-template-columns: 1fr 320px;
            }
        }
        .sidebar-card {
            background: var(--gold-pale);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--slate-700);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li::before {
            content: '✓';
            color: var(--gold-dark);
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        /* ========== PARTNER SECTION ========== */
        .partner-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .partner-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 1024px) {
            .partner-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .partner-card {
            background: var(--white);
            border: 1px solid var(--slate-200);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .partner-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--gold);
        }
        .partner-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--navy-deep);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.3rem;
        }
        .partner-card h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
        }
        .partner-card p {
            font-size: 0.82rem;
            color: var(--slate-500);
            line-height: 1.5;
        }

        /* ========== CONTACT FORM ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 0.4rem;
            color: var(--slate-700);
            letter-spacing: 0.01em;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--slate-200);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            color: var(--slate-800);
            background: var(--white);
            transition: border-color var(--transition);
            min-height: 48px;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 480px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }
        .coverage-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem 1rem;
        }
        @media (min-width: 480px) {
            .coverage-list {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .coverage-list li {
            padding: 0.4rem 0;
            font-size: 0.9rem;
            color: var(--slate-600);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .coverage-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }
        .map-placeholder {
            background: var(--slate-100);
            border-radius: var(--radius-lg);
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--slate-400);
            font-weight: 500;
            border: 2px dashed var(--slate-300);
            font-size: 0.95rem;
        }

        /* ========== ACCORDION ========== */
        .accordion {
            border: 1px solid var(--slate-200);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .accordion-item {
            border-bottom: 1px solid var(--slate-200);
        }
        .accordion-item:last-child {
            border-bottom: none;
        }
        .accordion-toggle {
            width: 100%;
            text-align: left;
            padding: 1rem 1.25rem;
            background: var(--white);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--navy-deep);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            cursor: pointer;
            transition: background var(--transition);
            font-family: var(--font-body);
            min-height: 48px;
        }
        .accordion-toggle:hover {
            background: var(--slate-50);
        }
        .accordion-toggle svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            transition: transform var(--transition);
        }
        .accordion-item.open .accordion-toggle svg {
            transform: rotate(180deg);
        }
        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 1.25rem;
        }
        .accordion-item.open .accordion-body {
            max-height: 300px;
            padding: 0 1.25rem 1.25rem;
        }
        .accordion-body p {
            font-size: 0.88rem;
            color: var(--slate-600);
            line-height: 1.6;
        }

        /* ========== UTILITY ========== */
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .gold-text {
            color: var(--gold-dark);
        }
        .page-content {
            display: none;
        }
        .page-content.active {
            display: block;
        }

        @media print {
            .site-header,
            .mobile-nav,
            .hamburger-btn,
            .cta-banner,
            .site-footer {
                display: none !important;
            }
        }
/* AOS Overrides if any */
