:root {
            --gold: #F5A623;
            --gold-dark: #D4891C;
            --gold-light: #FFF3DC;
            --black: #1A1A1A;
            --dark: #2D2D2D;
            --grey: #6B6B6B;
            --light-grey: #F5F5F5;
            --border: #E8E8E8;
            --white: #FFFFFF;
            --green: #27AE60;
            --wa: #25D366;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
            --radius: 12px;
            --radius-sm: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3 {
            font-family: 'Playfair Display', serif;
        }

        /* ─── PAGES ─── */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* ─── NAV ─── */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--black);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .nav-logo span {
            color: var(--gold);
        }

        .nav-location {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            color: var(--grey);
            cursor: pointer;
            white-space: nowrap;
            padding: 6px 10px;
            border-radius: 6px;
            border: 1px solid var(--border);
        }

        .nav-search {
            flex: 1;
            max-width: 500px;
            display: flex;
            align-items: center;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            background: var(--light-grey);
        }

        .nav-search input {
            flex: 1;
            border: none;
            outline: none;
            padding: 10px 16px;
            font-size: 14px;
            background: transparent;
            font-family: 'DM Sans', sans-serif;
        }

        .nav-search button {
            background: var(--gold);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            transition: background .2s;
        }

        .nav-search button:hover {
            background: var(--gold-dark);
        }

        .nav-actions {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-partner {
            font-size: 13px;
            font-weight: 500;
            color: var(--dark);
            cursor: pointer;
            white-space: nowrap;
            padding: 8px 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all .2s;
        }

        .nav-partner:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .nav-icon {
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            transition: background .2s;
        }

        .nav-icon:hover {
            background: var(--light-grey);
        }

        /* ─── SUB NAV ─── */
        .sub-nav {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            display: flex;
            gap: 0;
            overflow-x: auto;
        }

        .sub-nav a {
            padding: 14px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--grey);
            text-decoration: none;
            white-space: nowrap;
            border-bottom: 2px solid transparent;
            transition: all .2s;
            cursor: pointer;
        }

        .sub-nav a:hover,
        .sub-nav a.active {
            color: var(--black);
            border-color: var(--gold);
        }

        /* ─── HERO ─── */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 400px;
            padding: 48px 40px;
            gap: 40px;
            align-items: center;
            background: linear-gradient(135deg, #FEFEFE 0%, #FFF8EE 100%);
        }

        .hero-text h1 {
            font-size: clamp(28px, 4vw, 44px);
            line-height: 1.15;
            margin-bottom: 16px;
            color: var(--black);
        }

        .hero-text p {
            font-size: 16px;
            color: var(--grey);
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .hero-location {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--grey);
            margin-bottom: 20px;
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--white);
            border: none;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all .2s;
            box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
        }

        .btn-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--border);
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all .2s;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .hero-image {
            border-radius: 16px;
            overflow: hidden;
            height: 340px;
            background: #C9B99A;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #D4C4A8, #B8A882);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        /* ─── SECTION ─── */
        .section {
            padding: 56px 40px;
        }

        .section-alt {
            background: var(--light-grey);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }

        .section-header h2 {
            font-size: 26px;
            color: var(--black);
        }

        .view-all {
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
            cursor: pointer;
            text-decoration: none;
        }

        /* ─── CATEGORIES ─── */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .cat-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 16px;
            text-align: center;
            border: 1.5px solid var(--border);
            cursor: pointer;
            transition: all .25s;
        }

        .cat-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .cat-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .cat-card h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .cat-card p {
            font-size: 12px;
            color: var(--grey);
            line-height: 1.4;
        }

        /* ─── SERVICE CARDS ─── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all .25s;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .service-card-img {
            height: 180px;
            background: linear-gradient(135deg, #C9B99A, #A89880);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            position: relative;
            overflow: hidden;
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-card-body {
            padding: 16px;
        }

        .service-card-body h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .price {
            font-size: 16px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 4px;
        }

        .price span {
            font-size: 13px;
            font-weight: 400;
            color: var(--grey);
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--grey);
            margin-bottom: 14px;
        }

        .rating .star {
            color: var(--gold);
        }

        .rating strong {
            color: var(--black);
        }

        .btn-book {
            width: 100%;
            background: var(--gold);
            color: var(--white);
            border: none;
            padding: 10px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: background .2s;
        }

        .btn-book:hover {
            background: var(--gold-dark);
        }

        /* ─── TRUST ─── */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .trust-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 24px;
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .trust-icon {
            font-size: 32px;
            flex-shrink: 0;
        }

        .trust-item h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .trust-item p {
            font-size: 13px;
            color: var(--grey);
            line-height: 1.5;
        }

        /* ─── HOW IT WORKS ─── */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
        }

        .how-item {
            text-align: center;
            padding: 32px 24px;
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            position: relative;
        }

        .how-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--white);
            font-size: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-family: 'Playfair Display', serif;
        }

        .how-item h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .how-item p {
            font-size: 14px;
            color: var(--grey);
            line-height: 1.5;
        }

        /* ─── CTA BANNER ─── */
        .cta-banner {
            background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            border-radius: 20px;
            padding: 48px 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .cta-banner h2 {
            color: var(--white);
            font-size: 28px;
            margin-bottom: 8px;
        }

        .cta-banner p {
            color: #B0B0B0;
            font-size: 15px;
        }

        .cta-btns {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-wa {
            background: var(--wa);
            color: var(--white);
            border: none;
            padding: 14px 24px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all .2s;
        }

        .btn-wa:hover {
            opacity: .9;
        }

        .btn-call {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all .2s;
        }

        .btn-call:hover {
            border-color: var(--white);
        }

        /* ─── LISTING PAGE ─── */
        .listing-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 28px;
            padding: 32px 40px;
            align-items: start;
        }

        .filters-panel {
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 24px;
            position: sticky;
            top: 80px;
        }

        .filter-group {
            margin-bottom: 28px;
        }

        .filter-group h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--black);
            display: flex;
            justify-content: space-between;
            cursor: pointer;
        }

        .filter-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--dark);
            margin-bottom: 8px;
            cursor: pointer;
        }

        .filter-group input[type=checkbox] {
            accent-color: var(--gold);
        }

        .budget-slider {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .budget-slider input {
            flex: 1;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 8px 10px;
            font-size: 13px;
            outline: none;
            font-family: 'DM Sans', sans-serif;
        }

        .listing-results {}

        .listing-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .listing-header h2 {
            font-family: 'DM Sans', sans-serif;
            font-size: 22px;
            font-weight: 600;
        }

        .listing-header p {
            font-size: 13px;
            color: var(--grey);
        }

        .sort-select {
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 16px;
            font-size: 13px;
            outline: none;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
        }

        .result-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .result-card {
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            display: grid;
            grid-template-columns: 200px 1fr auto;
            overflow: hidden;
            transition: all .25s;
        }

        .result-card:hover {
            box-shadow: var(--shadow);
            border-color: #DDD;
        }

        .result-card-img {
            height: 160px;
            background: linear-gradient(135deg, #C9B99A, #A89880);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .result-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .result-card-body {
            padding: 18px 20px;
        }

        .result-card-body h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .provider-meta {
            font-size: 12px;
            color: var(--grey);
            margin-bottom: 8px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .provider-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .result-card-body p {
            font-size: 13px;
            color: var(--grey);
            line-height: 1.5;
            margin-top: 8px;
        }

        .result-card-actions {
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            justify-content: center;
            align-items: flex-end;
            min-width: 160px;
            border-left: 1px solid var(--border);
        }

        .result-card-actions .price {
            text-align: right;
            margin-bottom: 4px;
        }

        .btn-view {
            width: 130px;
            border: 2px solid var(--border);
            background: transparent;
            padding: 9px 16px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: all .2s;
        }

        .btn-view:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .btn-book-sm {
            width: 130px;
            background: var(--gold);
            color: var(--white);
            border: none;
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: background .2s;
        }

        .btn-book-sm:hover {
            background: var(--gold-dark);
        }

        /* ─── BREADCRUMB ─── */
        .breadcrumb {
            padding: 14px 40px;
            font-size: 13px;
            color: var(--grey);
            border-bottom: 1px solid var(--border);
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .breadcrumb a {
            color: var(--gold);
            text-decoration: none;
        }

        /* ─── DETAIL PAGE ─── */
        .detail-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 32px;
            padding: 32px 40px;
            align-items: start;
        }

        .detail-main {}

        .detail-header {
            margin-bottom: 24px;
        }

        .detail-header h1 {
            font-size: 30px;
            margin-bottom: 8px;
        }

        .detail-meta {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .badge {
            background: var(--gold-light);
            color: var(--gold-dark);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
        }

        .gallery {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 220px 160px;
            gap: 8px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 28px;
        }

        .gallery-main {
            grid-row: 1 / 3;
            background: linear-gradient(135deg, #C9B99A, #A89880);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
        }

        .gallery-thumb {
            background: linear-gradient(135deg, #B8A882, #9A8B6E);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            position: relative;
        }

        .gallery-thumb:last-child::after {
            content: '+15';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 600;
        }

        .detail-tabs {
            display: flex;
            gap: 0;
            border-bottom: 2px solid var(--border);
            margin-bottom: 28px;
        }

        .tab {
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--grey);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all .2s;
        }

        .tab.active {
            color: var(--black);
            border-color: var(--gold);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .includes-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .includes-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--dark);
        }

        .includes-list li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            flex-shrink: 0;
        }

        .packages {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 20px;
        }

        .pkg {
            border: 2px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all .2s;
            text-align: center;
        }

        .pkg:hover,
        .pkg.active {
            border-color: var(--gold);
            background: var(--gold-light);
        }

        .pkg h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pkg .pkg-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .pkg p {
            font-size: 12px;
            color: var(--grey);
            line-height: 1.5;
        }

        .reviews-summary {
            display: flex;
            gap: 32px;
            align-items: center;
            padding: 24px;
            background: var(--light-grey);
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .reviews-big {
            text-align: center;
        }

        .reviews-big .big-num {
            font-size: 52px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .reviews-big p {
            font-size: 13px;
            color: var(--grey);
        }

        .review-bars {
            flex: 1;
        }

        .review-bar-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
            font-size: 13px;
        }

        .bar-track {
            flex: 1;
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
        }

        .bar-fill {
            height: 100%;
            background: var(--gold);
            border-radius: 3px;
        }

        .review-card {
            padding: 16px;
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 12px;
        }

        .review-card .reviewer {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .review-card p {
            font-size: 13px;
            color: var(--grey);
            line-height: 1.5;
        }

        /* ─── STICKY CTA ─── */
        .sticky-cta {
            position: sticky;
            top: 80px;
            background: var(--white);
            border-radius: 16px;
            border: 1.5px solid var(--border);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }

        .sticky-cta-header {
            background: var(--black);
            padding: 20px 24px;
            color: var(--white);
        }

        .sticky-cta-header h3 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .sticky-cta-header .price {
            color: var(--gold);
            font-size: 22px;
        }

        .sticky-cta-body {
            padding: 20px 24px;
        }

        .sticky-cta .rating {
            margin-bottom: 16px;
        }

        .sticky-cta-body .btn-gold {
            width: 100%;
            margin-bottom: 10px;
            padding: 14px;
            font-size: 15px;
        }

        .contact-btns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .contact-btns button {
            padding: 11px 8px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all .2s;
        }

        .btn-call-outline {
            background: transparent;
            border: 2px solid var(--border);
            color: var(--dark);
        }

        .btn-call-outline:hover {
            border-color: var(--dark);
        }

        .btn-wa-outline {
            background: transparent;
            border: 2px solid #25D36640;
            color: var(--wa);
        }

        .btn-wa-outline:hover {
            background: #25D36610;
        }

        .guarantee {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--grey);
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        /* ─── BOOKING ─── */
        .booking-wrapper {
            max-width: 720px;
            margin: 0 auto;
            padding: 40px 24px;
        }

        .step-indicator {
            display: flex;
            align-items: center;
            gap: 0;
            margin-bottom: 40px;
        }

        .step-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--border);
            color: var(--grey);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            transition: all .3s;
            flex-shrink: 0;
        }

        .step-dot.active {
            background: var(--gold);
            color: var(--white);
        }

        .step-dot.done {
            background: var(--green);
            color: var(--white);
        }

        .step-line {
            flex: 1;
            height: 2px;
            background: var(--border);
        }

        .step-line.done {
            background: var(--green);
        }

        .step-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            margin-bottom: 32px;
        }

        .step-label {
            font-size: 12px;
            color: var(--grey);
            text-align: center;
            flex: 1;
        }

        .step-label.active {
            color: var(--gold);
            font-weight: 600;
        }

        .booking-card {
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--border);
            padding: 32px;
            box-shadow: var(--shadow);
        }

        .booking-card h2 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .booking-card>p {
            font-size: 14px;
            color: var(--grey);
            margin-bottom: 24px;
        }

        .service-select-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .service-option {
            border: 2px solid var(--border);
            border-radius: 10px;
            padding: 16px 12px;
            text-align: center;
            cursor: pointer;
            transition: all .2s;
        }

        .service-option:hover,
        .service-option.active {
            border-color: var(--gold);
            background: var(--gold-light);
        }

        .service-option .icon {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .service-option h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            border: 1.5px solid var(--border);
            border-radius: 8px;
            padding: 11px 14px;
            font-size: 14px;
            outline: none;
            transition: border .2s;
            font-family: 'DM Sans', sans-serif;
            color: var(--black);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .summary-box {
            background: var(--light-grey);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 24px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }

        .summary-row:last-child {
            border: none;
            font-weight: 600;
            font-size: 15px;
        }

        .summary-row span:first-child {
            color: var(--grey);
        }

        .booking-nav {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            margin-top: 24px;
        }

        .booking-nav button {
            flex: 1;
        }

        /* ─── CONFIRM PAGE ─── */
        .confirm-wrapper {
            max-width: 540px;
            margin: 0 auto;
            padding: 60px 24px;
            text-align: center;
        }

        .confirm-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #E8F8EE;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .confirm-wrapper h1 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .confirm-wrapper>p {
            font-size: 15px;
            color: var(--grey);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .request-id-box {
            background: var(--light-grey);
            border-radius: 10px;
            padding: 16px 24px;
            margin-bottom: 28px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .request-id-box span {
            font-size: 12px;
            color: var(--grey);
        }

        .request-id-box strong {
            font-size: 22px;
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            letter-spacing: 2px;
        }

        .confirm-btns {
            display: flex;
            gap: 12px;
        }

        .confirm-btns button {
            flex: 1;
        }

        /* ─── ADMIN ─── */
        .admin-layout {
            display: grid;
            grid-template-columns: 220px 1fr;
            min-height: calc(100vh - 64px);
        }

        .admin-sidebar {
            background: var(--black);
            padding: 24px 0;
        }

        .admin-sidebar .logo {
            padding: 0 24px 24px;
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: var(--white);
            border-bottom: 1px solid #333;
            margin-bottom: 8px;
        }

        .admin-sidebar .logo span {
            color: var(--gold);
        }

        .admin-nav-item {
            padding: 12px 24px;
            font-size: 14px;
            color: #888;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all .2s;
            border-left: 3px solid transparent;
        }

        .admin-nav-item:hover,
        .admin-nav-item.active {
            color: var(--white);
            background: #2D2D2D;
            border-color: var(--gold);
        }

        .admin-main {
            padding: 32px;
            background: #F8F8F8;
        }

        .admin-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }

        .stat-card {
            background: var(--white);
            border-radius: 12px;
            padding: 20px 24px;
            border: 1px solid var(--border);
        }

        .stat-card p {
            font-size: 12px;
            color: var(--grey);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-card h2 {
            font-size: 28px;
            color: var(--black);
        }

        .stat-card .change {
            font-size: 12px;
            color: var(--green);
            margin-top: 4px;
        }

        .admin-table-wrap {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .admin-table-header {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .admin-table-header h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th {
            text-align: left;
            padding: 12px 20px;
            font-size: 12px;
            color: var(--grey);
            font-weight: 600;
            background: var(--light-grey);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        td {
            padding: 14px 20px;
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
        }

        tr:last-child td {
            border: none;
        }

        tr:hover td {
            background: #FAFAFA;
        }

        .status-badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
        }

        .status-new {
            background: #EBF4FF;
            color: #2563EB;
        }

        .status-contacted {
            background: #FFF3DC;
            color: var(--gold-dark);
        }

        .status-converted {
            background: #E8F8EE;
            color: var(--green);
        }

        .status-pending {
            background: #FFF1F1;
            color: #E53E3E;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 48px 40px 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .footer-brand h3 span {
            color: var(--gold);
        }

        .footer-brand p {
            font-size: 14px;
            color: #888;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .footer-col h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 14px;
            color: var(--white);
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: #888;
            text-decoration: none;
            margin-bottom: 8px;
            cursor: pointer;
            transition: color .2s;
        }

        .footer-col a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #666;
        }

        /* ─── MOBILE BOTTOM NAV ─── */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid var(--border);
            padding: 8px 0 16px;
            z-index: 200;
        }

        .mobile-nav-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            color: var(--grey);
            cursor: pointer;
            padding: 6px 0;
            transition: color .2s;
        }

        .mobile-nav-item.active {
            color: var(--gold);
        }

        .mobile-nav-item .icon {
            font-size: 20px;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-image {
                height: 240px;
            }

            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .how-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .listing-layout {
                grid-template-columns: 1fr;
            }

            .filters-panel {
                display: none;
            }

            .result-card {
                grid-template-columns: 140px 1fr;
            }

            .result-card-actions {
                display: none;
            }

            .detail-layout {
                grid-template-columns: 1fr;
            }

            .sticky-cta {
                position: static;
            }

            .packages {
                grid-template-columns: 1fr;
            }

            .gallery {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .gallery-main {
                grid-row: auto;
                grid-column: 1 / -1;
                height: 200px;
            }

            .admin-layout {
                grid-template-columns: 1fr;
            }

            .admin-sidebar {
                display: none;
            }

            .admin-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-banner {
                flex-direction: column;
                text-align: center;
            }

            nav {
                padding: 0 16px;
                gap: 8px;
            }

            .nav-location {
                display: none;
            }

            .nav-partner {
                display: none;
            }

            .section {
                padding: 40px 20px;
            }

            .breadcrumb {
                padding: 12px 20px;
            }

            .listing-layout {
                padding: 20px;
            }

            .detail-layout {
                padding: 20px;
            }

            .booking-wrapper {
                padding: 24px 16px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .service-select-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .mobile-nav {
                display: block;
            }

            body {
                padding-bottom: 72px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .result-card {
                grid-template-columns: 120px 1fr;
            }

            .admin-stats {
                grid-template-columns: 1fr 1fr;
            }

            .includes-list {
                grid-template-columns: 1fr;
            }
        }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page.active>* {
            animation: fadeInUp .4s ease both;
        }

        .hero-text {
            animation-delay: 0s !important;
        }

        .hero-image {
            animation-delay: .1s !important;
        }