

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: #1a1f2e;
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ============ HEADER / NAVIGATION ============ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 31, 63, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            height: var(--header-height);
            border-bottom: 2px solid rgba(201, 168, 76, 0.25);
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }
        .header.scrolled {
            box-shadow: var(--shadow-lg);
            border-bottom-color: rgba(201, 168, 76, 0.5);
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            padding: 0 24px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--white);
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--navy-dark);
            font-weight: 900;
            flex-shrink: 0;
        }
        .logo-text span {
            color: var(--gold-light);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .nav-links a {
            color: #d0d6e2;
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-links a.nav-cta {
            background: var(--gold);
            color: var(--navy-dark);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-links a.nav-cta:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            flex-direction: column;
            gap: 6px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 7px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -7px);
        }

        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(10, 31, 63, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 2px;
                transform: translateY(-120%);
                transition: var(--transition);
                box-shadow: var(--shadow-lg);
                border-bottom: 2px solid var(--gold);
                max-height: 80vh;
                overflow-y: auto;
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links a {
                padding: 14px 20px;
                font-size: 1rem;
                width: 100%;
                text-align: left;
            }
        }

        /* ============ PAGE SECTIONS ============ */
        .page-section {
            display: none;
            padding-top: var(--header-height);
            min-height: 60vh;
            animation: fadeSlideIn 0.5s ease;
        }
        .page-section.active {
            display: block;
        }
        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ HERO ============ */
        .hero {
            background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 40%, #0f3460 100%);
            color: var(--white);
            padding: 80px 24px 90px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(201, 168, 76, 0.18);
            color: var(--gold-light);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
            border: 1px solid rgba(201, 168, 76, 0.3);
        }
        .hero h1 {
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }
        .hero h1 span {
            color: var(--gold-light);
            position: relative;
        }
        .hero-subtitle {
            font-size: 1.15rem;
            color: #c5cdd9;
            max-width: 650px;
            margin: 0 auto 32px;
            line-height: 1.6;
        }
        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .btn-gold {
            background: var(--gold);
            color: var(--navy-dark);
            box-shadow: 0 6px 22px rgba(201, 168, 76, 0.35);
        }
        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
        }
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.4);
        }
        .btn-outline:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.06);
        }
        .btn-teal {
            background: var(--teal);
            color: var(--white);
            box-shadow: 0 6px 22px rgba(13, 148, 136, 0.3);
        }
        .btn-teal:hover {
            background: var(--teal-light);
            transform: translateY(-2px);
        }
        .hero-trust {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 44px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        .hero-trust-item {
            text-align: center;
        }
        .hero-trust-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold-light);
        }
        .hero-trust-item .label {
            font-size: 0.8rem;
            color: #a0aab8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ============ COMMON SECTION STYLES ============ */
        .section-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 60px 24px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 16px;
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.4px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--grey-text);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.05rem;
        }
        .section-badge {
            text-align: center;
            display: block;
            color: var(--teal);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.8rem;
            margin-bottom: 8px;
        }

        /* ============ CARDS GRID ============ */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }
        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--grey-mid);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .card-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 16px;
        }
        .card-icon.navy {
            background: #e8edf5;
            color: var(--navy);
        }
        .card-icon.gold {
            background: #fdf6e3;
            color: var(--gold-dark);
        }
        .card-icon.teal {
            background: #e6f7f5;
            color: var(--teal-dark);
        }
        .card h3 {
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--navy);
            font-size: 1.15rem;
        }
        .card p {
            color: var(--grey-text);
            font-size: 0.93rem;
            line-height: 1.6;
        }
        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--teal);
            font-weight: 600;
            text-decoration: none;
            margin-top: 12px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .card-link:hover {
            color: var(--teal-dark);
            gap: 10px;
        }

        /* ============ WHY CHOOSE US ============ */
        .why-us {
            background: var(--grey-light);
            padding: 60px 24px;
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .why-item {
            text-align: center;
            padding: 28px 18px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .why-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .why-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
        .why-item h4 {
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        /* ============ CHART SECTION ============ */
        .chart-section {
            background: var(--white);
            padding: 50px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .chart-wrapper {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--grey-mid);
            max-width: 800px;
            margin: 0 auto;
        }
        .chart-wrapper h3 {
            text-align: center;
            color: var(--navy);
            margin-bottom: 20px;
            font-weight: 700;
        }
        canvas#impactChart {
            width: 100%;
            max-height: 380px;
        }
        .chart-legend {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 16px;
        }
        .chart-legend span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--grey-text);
        }
        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 3px;
            display: inline-block;
        }
        .legend-dot.navy-bg {
            background: var(--navy);
        }
        .legend-dot.gold-bg {
            background: var(--gold);
        }
        .legend-dot.teal-bg {
            background: var(--teal);
        }

        /* ============ CONTACT ============ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: start;
        }
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        .contact-form {
            background: var(--white);
            padding: 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--grey-mid);
        }
        .contact-form h3 {
            color: var(--navy);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--navy);
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--grey-mid);
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            background: #fafbfc;
            resize: vertical;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
            background: #fff;
        }
        .form-group textarea {
            min-height: 120px;
        }
        .form-success {
            display: none;
            background: #e6f9f1;
            color: #0d7a4a;
            padding: 16px;
            border-radius: var(--radius-sm);
            text-align: center;
            font-weight: 600;
            margin-top: 12px;
        }
        .form-success.show {
            display: block;
            animation: fadeSlideIn 0.4s ease;
        }
        .contact-info-card {
            background: var(--navy);
            color: var(--white);
            padding: 32px;
            border-radius: var(--radius);
        }
        .contact-info-card h3 {
            margin-bottom: 16px;
            font-weight: 700;
            color: var(--gold-light);
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
        .contact-info-item .ico {
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .map-embed {
            width: 100%;
            height: 220px;
            border-radius: var(--radius-sm);
            border: none;
            margin-top: 16px;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--navy-dark);
            color: #bcc5d4;
            padding: 48px 24px 24px;
            font-size: 0.9rem;
        }
        .footer-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer h4 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .footer a {
            color: #bcc5d4;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 6px;
        }
        .footer a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            max-width: var(--max-width);
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            text-align: center;
            font-size: 0.82rem;
            color: #8893a8;
        }
        .footer-bottom a {
            color: #8893a8;
            margin: 0 8px;
        }

        /* ============ FLOATING BUTTONS ============ */
        .floating-wa {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            background: #25d366;
            color: #fff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            animation: pulseWa 2s infinite;
        }
        .floating-wa:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
        }
        @keyframes pulseWa {
            0%,
            100% {
                box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
            }
            50% {
                box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
            }
        }
        .floating-call {
            position: fixed;
            bottom: 96px;
            right: 28px;
            z-index: 999;
            background: var(--navy);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 6px 22px rgba(10, 31, 63, 0.5);
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
        }
        .floating-call:hover {
            transform: scale(1.08);
            background: var(--navy-light);
        }

        /* ============ MODALS ============ */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-overlay.open {
            display: flex;
        }
        .modal {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            max-width: 650px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--shadow-lg);
        }
        .modal-close {
            position: absolute;
            top: 12px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--grey-text);
            transition: var(--transition);
        }
        .modal-close:hover {
            color: var(--danger);
        }
        .modal h3 {
            color: var(--navy);
            margin-bottom: 14px;
            font-weight: 700;
        }
        .modal p,
        .modal li {
            color: #444;
            font-size: 0.93rem;
            line-height: 1.7;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 640px) {
            .hero {
                padding: 50px 16px 60px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-trust {
                gap: 18px;
            }
            .hero-trust-item .num {
                font-size: 1.3rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .floating-wa {
                width: 46px;
                height: 46px;
                font-size: 1.3rem;
                bottom: 20px;
                right: 16px;
            }
            .floating-call {
                width: 40px;
                height: 40px;
                bottom: 78px;
                right: 16px;
                font-size: 1rem;
            }
        }
