
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --navy: #0b1f3a;
            --navy-mid: #122848;
            --navy-light: #1a3a60;
            --gold: #c9a84c;
            --gold-light: #e8c97a;
            --cream: #f8f5ef;
            --cream-dark: #ede9e0;
            --white: #ffffff;
            --text-muted: #8a9ab5;
            --border: rgba(255,255,255,0.10);
            --card-bg: rgba(255,255,255,0.04);
            --radius: 10px;
            --radius-lg: 16px;
        }

        html, body {
            height: 100%;
            font-family: 'DM Sans', sans-serif;
            background-color: var(--navy);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ── Background texture ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201,168,76,0.07) 0%, transparent 60%),
                radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,58,96,0.5) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* ── Site Header ── */
        .site-header {
            position: relative;
            z-index: 10;
            border-bottom: 1px solid var(--border);
            padding: 0;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
        }

        .brand-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .brand-wrap img {
            width: 44px;
            height: 44px;
            border-radius: 8px;
        }

        .brand-initials {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 17px;
            color: var(--navy);
            letter-spacing: 1px;
            flex-shrink: 0;
        }

        .brand-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            line-height: 1.2;
            margin: 0;
        }

        .brand-subtitle {
            font-size: 11px;
            font-weight: 300;
            color: var(--text-muted);
            letter-spacing: 0.04em;
            margin: 0;
        }

        .header-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .header-links a {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            text-decoration: none;
            padding: 7px 14px;
            border-radius: 6px;
            transition: color 0.2s, background 0.2s;
        }

        .header-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

        .header-btn {
            font-size: 13px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-main-blue {
            background: var(--gold);
            color: var(--navy) !important;
        }

        .btn-main-blue:hover { background: var(--gold-light); }

        .btn-outline-blue {
            border: 1px solid rgba(201,168,76,0.4);
            color: var(--gold) !important;
        }

        .btn-outline-blue:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

        /* ── Hero Section ── */
        .hero-section {
            position: relative;
            z-index: 1;
            min-height: calc(100vh - 81px);
            display: flex;
            align-items: center;
        }

        .hero-section .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* ── Left: Text ── */
        .hero-left {}

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .hero-eyebrow::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 1px;
            background: var(--gold);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 600;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 20px;
        }

        .hero-title span { color: var(--gold); }

        .hero-text {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 440px;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
        }

        .stat-item {}

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.04em;
        }

        /* ── Right: Action Grid (was hero-box) ── */
        .hero-box {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            backdrop-filter: blur(10px);
        }

        .hero-box-title {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.10em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .action-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            border-radius: var(--radius);
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            color: var(--white);
            cursor: pointer;
        }

        .action-btn i {
            font-size: 14px;
            width: 16px;
            flex-shrink: 0;
            opacity: 0.9;
        }

        .action-btn:hover {
            text-decoration: none;
            transform: translateY(-1px);
            color: var(--white);
        }

        /* Color variants — keeping original class names */
        .action-blue {
            background: rgba(24,95,165,0.25);
            border-color: rgba(24,95,165,0.35);
        }
        .action-blue:hover { background: rgba(24,95,165,0.40); border-color: rgba(24,95,165,0.6); }

        .action-dark {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.10);
        }
        .action-dark:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); }

        .action-green {
            background: rgba(59,109,17,0.25);
            border-color: rgba(59,109,17,0.35);
        }
        .action-green:hover { background: rgba(59,109,17,0.38); border-color: rgba(59,109,17,0.55); }

        .action-orange {
            background: rgba(201,168,76,0.15);
            border-color: rgba(201,168,76,0.25);
        }
        .action-orange:hover { background: rgba(201,168,76,0.25); border-color: rgba(201,168,76,0.45); }
        .action-orange i { color: var(--gold); }

        /* ── Modals ── */
        .modal-content {
            background: var(--navy-mid);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg);
            color: var(--white);
        }

        .modal-header {
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding: 22px 28px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-title-custom {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--white);
            margin: 0;
        }

        .modal-header .close {
            color: var(--text-muted);
            opacity: 1;
            font-size: 22px;
            line-height: 1;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .modal-header .close:hover { color: var(--white); }

        .modal-body {
            padding: 24px 28px 28px;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            background: rgba(255,255,255,0.06) !important;
            border: 1px solid rgba(255,255,255,0.12) !important;
            border-radius: 8px !important;
            color: var(--white) !important;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            padding: 11px 14px;
            transition: border-color 0.2s, background 0.2s;
        }

        .form-control:focus {
            outline: none;
            border-color: rgba(201,168,76,0.5) !important;
            background: rgba(255,255,255,0.08) !important;
            box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
        }

        .form-control::placeholder { color: rgba(255,255,255,0.25) !important; }

        .form-control option {
            background: var(--navy-mid);
            color: var(--white);
        }

        .form-group {
            margin-bottom: 18px;
        }

        /* Split line */
        .split-line {
            text-align: center;
            position: relative;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin: 20px 0 4px;
        }

        .split-line::before,
        .split-line::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background: rgba(255,255,255,0.08);
        }

        .split-line::before { left: 0; }
        .split-line::after { right: 0; }

        /* Modal buttons */
        .modal-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .btn-cancel {
            background: rgba(255,255,255,0.06);
            color: var(--text-muted);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .btn-cancel:hover { background: rgba(255,255,255,0.10); color: var(--white); }

        .btn-submit {
            background: var(--gold);
            color: var(--navy);
        }

        .btn-submit:hover { background: var(--gold-light); }

        .btn-green {
            background: #3b6d11;
            color: var(--white);
        }

        .btn-green:hover { background: #4a8815; }

        /* WhatsApp float */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.35);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(37,211,102,0.50);
        }

        .whatsapp-float img { width: 28px; height: 28px; }

        /* Bootstrap modal backdrop override */
        .modal-backdrop { background-color: rgba(5,12,25,0.75); }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section .container {
                grid-template-columns: 1fr;
                gap: 48px;
                padding: 40px 20px;
            }

            .hero-stats { gap: 24px; }
            .header-links { display: none; }
            .action-grid { grid-template-columns: 1fr; }
            .hero-box { padding: 24px 20px; }
        }
