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

        /* Safety net: prevent any raster image (incl. those with explicit
           width/height attributes for CLS) from overflowing a narrower
           container. Class-specific image rules below take precedence. */
        img {
            max-width: 100%;
            height: auto;
        }

        :root {
            --navy: #1F4B6E;
            --dark-navy: #0F1B2E;
            --gold: #C4A574;
            --gold-accessible: #8A6A3A; /* WCAG AA-safe (5:1) variant for small text on white */
            --warm-white: #F9F7F4;
            --light-gray: #F3F1ED;
            --text-dark: #2C3E50;
            --text-light: #5A6C7D;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100%;
        }

        /* ===== SCROLL REVEAL ANIMATIONS ===== */
        [data-animate] {
            opacity: 0;
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }
        [data-animate="fade-up"]    { transform: translate3d(0, 40px, 0); }
        [data-animate="fade-down"]  { transform: translate3d(0, -40px, 0); }
        [data-animate="fade-left"]  { transform: translate3d(40px, 0, 0); }
        [data-animate="fade-right"] { transform: translate3d(-40px, 0, 0); }
        [data-animate="scale-in"]   { transform: scale(0.92); }
        [data-animate="zoom-in"]    { transform: scale(0.96); }

        [data-animate].animate-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }

        /* Stagger delays for cascading reveals */
        [data-animate-delay="80"]  { transition-delay: 0.08s; }
        [data-animate-delay="160"] { transition-delay: 0.16s; }
        [data-animate-delay="240"] { transition-delay: 0.24s; }
        [data-animate-delay="320"] { transition-delay: 0.32s; }
        [data-animate-delay="400"] { transition-delay: 0.40s; }
        [data-animate-delay="480"] { transition-delay: 0.48s; }
        [data-animate-delay="560"] { transition-delay: 0.56s; }
        [data-animate-delay="640"] { transition-delay: 0.64s; }

        /* Reduced motion: skip animation entirely */
        @media (prefers-reduced-motion: reduce) {
            [data-animate] {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* Safety fallback: if JS never runs (blocked / error), show after 2s */
        .animate-fallback [data-animate] {
            opacity: 1;
            transform: none;
        }
        /* ===== END SCROLL REVEAL ANIMATIONS ===== */

        /* ===== STICKY MOBILE CTA BAR ===== */
        .sticky-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: none;
            z-index: 998;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
            transform: translateY(100%);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-bottom: env(safe-area-inset-bottom, 0);
        }
        .sticky-cta-bar.visible {
            transform: translateY(0);
        }

        .sticky-cta-btn {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 12px 4px;
            text-decoration: none;
            color: var(--text-dark);
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: background-color 0.2s, transform 0.15s;
            border: none;
            background: transparent;
            -webkit-tap-highlight-color: transparent;
        }
        .sticky-cta-btn:active {
            transform: scale(0.96);
            background: rgba(0, 0, 0, 0.04);
        }
        .sticky-cta-btn:hover {
            background: rgba(0, 0, 0, 0.03);
        }
        .sticky-cta-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .sticky-cta-label {
            font-size: 11px;
            text-transform: uppercase;
        }
        .sticky-cta-call { border-right: 1px solid rgba(0, 0, 0, 0.05); }
        .sticky-cta-whatsapp {
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            color: #25D366;
        }
        .sticky-cta-enquire {
            color: var(--navy);
            background: linear-gradient(180deg, transparent 0%, rgba(31, 75, 110, 0.06) 100%);
        }
        .sticky-cta-enquire:hover {
            background: linear-gradient(180deg, transparent 0%, rgba(31, 75, 110, 0.12) 100%);
        }

        /* Show sticky bar only on mobile */
        @media (max-width: 767px) {
            .sticky-cta-bar {
                display: flex;
            }
            body.has-sticky-cta {
                padding-bottom: 68px;
            }
        }

        /* Respect reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .sticky-cta-bar {
                transition: none;
            }
        }
        /* ===== END STICKY MOBILE CTA BAR ===== */

        /* ===== FLOATING WHATSAPP (DESKTOP) ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            z-index: 997;
            text-decoration: none;
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.25s ease,
                        opacity 0.3s ease;
            opacity: 0;
            transform: scale(0.85);
        }
        .whatsapp-float.visible {
            opacity: 1;
            transform: scale(1);
        }
        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
        }
        .whatsapp-float:focus-visible {
            outline: 3px solid rgba(37, 211, 102, 0.4);
            outline-offset: 3px;
        }

        /* Pulsing ring */
        .whatsapp-float::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid #25D366;
            opacity: 0.4;
            animation: whatsapp-pulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
        }
        @keyframes whatsapp-pulse {
            0% { transform: scale(1); opacity: 0.5; }
            80%, 100% { transform: scale(1.35); opacity: 0; }
        }

        .whatsapp-float-tooltip {
            position: absolute;
            right: 72px;
            top: 50%;
            transform: translateY(-50%) translateX(6px);
            background: var(--text-dark);
            color: white;
            padding: 8px 14px;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s, transform 0.25s;
        }
        .whatsapp-float-tooltip::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -5px;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left-color: var(--text-dark);
        }
        .whatsapp-float:hover .whatsapp-float-tooltip {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        /* Show on desktop, hide on mobile (mobile uses sticky bar instead) */
        @media (min-width: 768px) {
            .whatsapp-float { display: flex; }
        }

        @media (prefers-reduced-motion: reduce) {
            .whatsapp-float::before { animation: none; }
            .whatsapp-float { transition: opacity 0.3s; }
        }
        /* ===== END FLOATING WHATSAPP ===== */

        body {
            font-family: 'Poppins', sans-serif;
            background: #ffffff;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        /* ===== HEADER ===== */
        header {
            background: rgba(255, 255, 255, 0);
            backdrop-filter: none;
            padding: 15px 0;
            border-bottom: 1px solid transparent;
            position: fixed;
            top: 0;
            z-index: 1000;
            width: 100%;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #E8E4DC;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        header.scrolled nav.active {
            background: rgba(249, 247, 244, 0.98);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: row-reverse;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: 2px;
        }

        .logo img {
            height: 56px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--gold);
        }

        .cta-button {
            background: var(--navy);
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 1px solid var(--navy);
            cursor: pointer;
        }

        .cta-button:hover {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
            transition: color 0.3s;
            padding: 8px 12px;
        }

        .menu-toggle:hover {
            color: var(--gold);
        }

        /* ===== IMAGE SLIDER ===== */
        .slider-section {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-left: calc(-50vw + 50%);
            margin-top: 0;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-slide picture {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .slider-slide.active {
            opacity: 1;
        }

        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 27, 46, 0.15), rgba(28, 42, 67, 0.2));
            z-index: 2;
        }

        .slider-arrow {
            display: none !important;
        }

        .slider-dots {
            display: none !important;
        }

        .slider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 3;
            color: white;
        }

        .slider-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 80px;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            letter-spacing: 2px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            line-height: 1.1;
        }

        .slider-content p {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: var(--gold);
            font-weight: 300;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }
        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            padding: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 64px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 32px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--navy);
            color: white;
            padding: 14px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: auto;
        }

        .btn-primary:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            color: var(--navy);
            padding: 14px 40px;
            border: 2px solid var(--navy);
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s;
            cursor: pointer;
            width: auto;
        }

        .btn-secondary:hover {
            background: var(--navy);
            color: white;
        }

        /* ===== STORYTELLING SECTION (NO AMENITIES) ===== */
        .storytelling-wrapper {
            width: 100%;
            background: #ffffff;
        }

        /* Full-width breakout: the "Welcome To" story blocks previously sat
           inside the standard 1400px container, leaving large empty margins
           on wide screens. Break the container out edge-to-edge here; each
           .story-section keeps its own 40-60px padding as the visual inset,
           so content still reads comfortably without touching the edges. */
        .about-section .container {
            max-width: 100vw;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            padding: 0;
        }

        .story-section {
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 40px 60px;
            gap: 0;
            position: relative;
            overflow: hidden;
        }

        .story-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .story-flush-left {
            padding-left: 0;
        }

        /* For row-reverse sections (image visually on the right), the
           section's own right padding is what creates the gap before the
           image — same idea as .story-flush-left, mirrored. */
        .story-flush-right {
            padding-right: 0;
        }

        .letter-container {
            flex: 0 0 50%;
            height: 480px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 300px;
            overflow: hidden;
        }

        /* The story photos sit in a <picture> wrapper inside a flex-centered
           .letter-container. Relying on percentage width/height through the
           <picture> (an inline element with no size of its own) and flex
           sizing has repeatedly produced mismatched box dimensions across
           breakpoints. Taking the picture/img out of flex flow entirely and
           pinning it to the container's edges with inset:0 removes that
           ambiguity — the image is always exactly the size of
           .letter-container, no matter what the flex/aspect-ratio math on
           the container resolves to. */
        .letter-container picture {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
        }
        .letter-container picture img {
            width: 100%;
            height: 100%;
        }

        .letter-mask {
            position: relative;
            width: 100%;
            height: 100%;
            /* Sized to fit fully inside the container instead of being
               clipped by it — the old clamp(300px, 45vw, 500px) ceiling was
               tuned for a wide multi-letter "BLUE" strip and badly
               overflowed the single-letter boxes each section actually
               uses now, cropping the glyph into an unreadable fragment. */
            font-size: clamp(220px, 32vw, 380px);
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            line-height: 1;
            color: var(--warm-white);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* No longer spelling out multiple letters side by side, so the
               large negative tracking that used to pull them together is
               unnecessary and was skewing this single glyph off-center. */
            letter-spacing: normal;
        }

        .letter-mask::before {
            content: attr(data-letter);
            position: absolute;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .story-b .letter-mask::before {
            background-image: url('../images/story/optimized/story-b-new.jpg');
        }

        .story-l .letter-mask::before {
            background-image: url('../images/story/optimized/story-l-new.jpg');
        }

        .story-u .letter-mask::before {
            background-image: url('../images/story/optimized/story-u-new.jpg');
        }

        .story-e .letter-mask::before {
            background-image: url('../images/story/optimized/story-e-new.jpg');
        }

        .content-container {
            flex: 1;
            padding: 0 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .story-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold-accessible);
            margin-bottom: 16px;
            display: block;
        }

        .story-heading {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 800;
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .story-divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin-bottom: 24px;
        }

        .story-description {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 40px;
            font-weight: 300;
            letter-spacing: 0.3px;
        }

        /* ===== AMENITIES SECTION ===== */
        .amenities-section {
            padding: 0;
            position: relative;
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                              url('../images/Amenities Background Images/Amenities_1_large.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: auto;
        }

        .amenities-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 140px;
            background: white;
            z-index: 1;
        }

        .amenities-section .container {
            position: relative;
            z-index: 2;
            padding-top: 120px;
            padding-bottom: 200px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header .label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: inline-block;
        }

        .section-header {
            text-align: center;
            padding: 50px 0 40px;
            background: white;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: -120px;
            margin-bottom: 50px;
            padding-left: 50vw;
            padding-right: 50vw;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 800;
            color: #20B2AA;
            margin-bottom: 0;
            line-height: 1.2;
            letter-spacing: 2px;
        }

        .section-header p {
            font-size: 15px;
            color: var(--text-light);
            margin-top: 0;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            max-width: 100%;
        }

        .amenity-card-horizontal {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }

        .amenity-icon-box {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            border: none;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            background: transparent;
            overflow: visible;
        }

        .amenity-icon-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 0;
            filter: brightness(0) invert(1);
        }

        .amenity-text h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: white;
            margin-bottom: 0;
            line-height: 1.4;
            letter-spacing: 0.5px;
        }

        .amenity-text p {
            display: none;
        }

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            padding: 40px 0 64px;
            background: white;
        }
        @media (max-width: 768px) {
            .gallery-section { padding: 48px 0; }
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .gallery-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 800;
            color: #20B2AA;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .gallery-header h2::before,
        .gallery-header h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 80px;
            height: 1px;
            background: #20B2AA;
        }

        .gallery-header h2::before {
            right: 100%;
            margin-right: 20px;
        }

        .gallery-header h2::after {
            left: 100%;
            margin-left: 20px;
        }

        @media (max-width: 1024px) {
            .gallery-header h2 { font-size: 44px; }
            .gallery-header h2::before, .gallery-header h2::after { width: 60px; }
        }
        @media (max-width: 768px) {
            .gallery-header h2 { font-size: 32px; }
            .gallery-header h2::before, .gallery-header h2::after { width: 32px; margin: 0 12px; }
        }
        @media (max-width: 480px) {
            .gallery-header h2 { font-size: 24px; letter-spacing: 1px; }
            .gallery-header h2::before, .gallery-header h2::after { display: none; }
        }

        .gallery-filter {
            display: none;
        }

        .filter-btn {
            display: none;
        }

        /* Full-width, immersive gallery slider (edge-to-edge like the hero slider) */
        .gallery-container {
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .gallery-image-wrapper {
            width: 100%;
            height: clamp(280px, 45vw, 600px);
            overflow: hidden;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            transition: opacity 0.3s ease-in-out;
        }

        .gallery-dots {
            text-align: center;
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(32, 178, 170, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .gallery-dot:hover {
            background: rgba(32, 178, 170, 0.6);
        }

        .gallery-dot.active {
            background: #20B2AA;
            transform: scale(1.2);
        }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #20B2AA;
            color: white;
            border: none;
            font-size: 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            z-index: 2;
            transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
        }

        .gallery-arrow:hover {
            background: #1a8a7d;
            transform: translateY(-50%) scale(1.15);
        }

        .gallery-prev {
            left: 24px;
        }

        .gallery-next {
            right: 24px;
        }

        @media (max-width: 768px) {
            .gallery-image-wrapper {
                height: clamp(220px, 60vw, 380px);
            }
            .gallery-arrow {
                width: 42px;
                height: 42px;
                font-size: 22px;
            }
            .gallery-prev { left: 12px; }
            .gallery-next { right: 12px; }
        }
        /* ===== END GALLERY SECTION ===== */

        /* ===== LOCATION SECTION ===== */
        .location-section {
            padding: 0 0 64px 0;
            background: white;
            min-height: 600px;
        }

        .location-header {
            text-align: center;
            padding: 50px 0 40px;
            background: white;
        }

        .location-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 800;
            color: #20B2AA;
            letter-spacing: 2px;
            margin-bottom: 0;
        }

        .location-content-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 0;
            height: 600px;
        }

        .location-map-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .location-map-container iframe {
            width: 100%;
            height: 100%;
        }

        .location-highlights-container {
            background: rgba(32, 178, 170, 0.1);
            padding: 40px 30px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        @media (max-width: 1024px) {
            .location-header h2 { font-size: 44px; }
            .location-content-wrapper { height: 520px; }
            .location-highlights-container { padding: 30px 24px; gap: 16px; }
        }
        @media (max-width: 900px) {
            .location-content-wrapper {
                grid-template-columns: 1fr;
                height: auto;
            }
            .location-map-container { height: 320px; }
        }
        @media (max-width: 768px) {
            .location-header h2 { font-size: 32px; }
            .location-header { padding: 40px 20px 30px; }
        }
        @media (max-width: 480px) {
            .location-header h2 { font-size: 24px; }
            .location-map-container { height: 260px; }
            .location-highlights-container { padding: 24px 16px; gap: 14px; }
        }

        .location-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            padding-bottom: 20px;
            border-bottom: 1px dotted rgba(32, 178, 170, 0.3);
        }

        .location-item:last-child {
            border-bottom: none;
        }

        .location-item-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 40px;
            color: #20B2AA;
        }

        .location-item-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .location-item-name {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--navy);
            display: block;
        }

        .location-item-distance {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: #20B2AA;
            font-weight: 600;
            display: block;
        }

        .location-info {
            display: none;
        }

        .location-highlights {
            display: none;
        }

        /* ===== VILLA TYPES SECTION ===== */
        .villas-section {
            padding: 64px 0;
            background: #ffffff;
        }

        .villas-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .villa-card {
            background: white;
            border: 1px solid #E8E4DC;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .villa-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px);
        }

        .villa-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #E8E4DC, #D8D4CC);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        .villa-content {
            padding: 40px;
        }

        .villa-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            display: block;
        }

        .villa-name {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .villa-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid #E8E4DC;
        }

        .spec {
            text-align: center;
        }

        .spec-value {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 4px;
        }

        .spec-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .villa-description {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .villa-button {
            background: var(--navy);
            color: white;
            padding: 12px 24px;
            border-radius: 0;
            text-decoration: none;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .villa-button:hover {
            background: var(--gold);
        }

        /* ===== FOOTER ===== */
        footer {
            background: white;
            color: var(--text-dark);
            padding: 24px 60px;
            border-top: 1px solid #E8E4DC;
        }

        .footer-bottom-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #E8E4DC;
        }
        .footer-developer {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 16px;
            text-align: left;
        }
        .footer-developer-logo {
            width: 72px;
            height: 72px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }
        .footer-developer-text {
            display: flex;
            flex-direction: column;
            gap: 3px;
            max-width: 480px;
        }
        .footer-developer-label {
            font-family: 'Poppins', sans-serif;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold-accessible);
        }
        .footer-developer-name {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--navy);
            line-height: 1.3;
        }
        .footer-developer-address {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
        }
        .footer-address-icon {
            flex-shrink: 0;
            margin-right: 5px;
            vertical-align: -1px;
            color: var(--gold-accessible);
        }
        .footer-rera {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-rera p {
            font-size: 12px;
            line-height: 1.7;
            color: var(--text-light);
            margin: 0;
        }
        @media (max-width: 768px) {
            .footer-bottom-info {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 600px) {
            .footer-developer-logo { width: 56px; height: 56px; }
        }

        .quick-enquiry-section {
            background: #f9f7f4;
            padding: 32px 60px;
            margin: 0 -60px -24px -60px;
            border-top: 2px solid #E8E4DC;
        }

        .enquiry-form {
            max-width: 1400px;
            margin: 0 auto;
        }

        .enquiry-form h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 30px;
            text-align: left;
        }

        .enquiry-form-group {
            display: grid;
            grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr 0.8fr;
            gap: 20px;
            margin-bottom: 20px;
            align-items: center;
        }

        .enquiry-form-group input,
        .enquiry-form-group select {
            padding: 14px 16px;
            border: 2px solid var(--navy);
            border-radius: 4px;
            font-size: 13px;
            font-family: 'Poppins', sans-serif;
            background: white;
            height: 48px;
        }

        .enquiry-form-group input::placeholder {
            color: #5A6C7D;
            font-size: 12px;
        }

        .enquiry-form-group input:focus,
        .enquiry-form-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: white;
        }

        .submit-btn {
            background: #0F4C2F;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            height: 48px;
            width: 100%;
        }

        .submit-btn:hover {
            background: #0a3820;
        }

        .form-agreement {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 20px;
            max-width: 1400px;
        }

        .form-agreement input[type="checkbox"] {
            margin-top: 6px;
            cursor: pointer;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .form-agreement label {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.7;
            cursor: pointer;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .container {
                padding: 0 40px;
            }

            .slider-section {
                width: 100vw;
                margin-left: calc(-50vw + 50%);
            }

            .slider-content h1 {
                font-size: 60px;
            }

            .slider-content p {
                font-size: 20px;
            }

            .slider-arrow {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .slider-prev {
                left: 30px;
            }

            .slider-next {
                right: 30px;
            }

            .story-section {
                padding: 48px 0;
                gap: 60px;
            }

            .content-container {
                padding: 0 40px;
            }

            .story-heading {
                font-size: 40px;
            }

            .amenities-grid {
                gap: 40px 50px;
            }

            .amenity-icon-box {
                width: 75px;
                height: 75px;
                font-size: 36px;
            }

            .location-content {
                gap: 40px;
            }

            .villas-grid {
                gap: 30px;
            }
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }

            /* SLIDER */
            .slider-section {
                width: 100vw;
                height: 70vh;
                margin-left: calc(-50vw + 50%);
            }

            .slider-content h1 {
                font-size: 48px;
                margin-bottom: 16px;
            }

            .slider-content p {
                font-size: 18px;
            }

            .slider-arrow {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .slider-prev {
                left: 20px;
            }

            .slider-next {
                right: 20px;
            }

            /* HERO */
            .hero {
                padding: 70px 30px;
                min-height: auto;
            }

            .hero-content h1 {
                font-size: 48px;
                margin-bottom: 18px;
            }

            .hero-content p {
                font-size: 16px;
                margin-bottom: 30px;
            }

            /* ABOUT/STORY */
            .about-section {
                padding: 60px 30px;
            }

            .story-section {
                padding: 40px 30px !important;
                gap: 50px;
                min-height: auto;
                flex-direction: row !important;
            }

            .story-section:nth-child(even) {
                flex-direction: row-reverse !important;
            }

            .letter-container {
                height: 280px;
                flex: 0 0 35%;
            }

            /* Box is only 280px tall here, so cap the letter below that
               (not the base clamp's ~320-380px at this viewport width) to
               keep it from being clipped by .letter-mask's overflow:hidden. */
            .letter-mask {
                font-size: 220px;
            }

            .content-container {
                padding: 0 30px;
                flex: 1;
            }

            .story-heading {
                font-size: 40px;
                margin-bottom: 18px;
            }

            .story-label {
                font-size: 11px;
                margin-bottom: 16px;
            }

            .story-divider {
                margin-bottom: 24px;
            }

            .story-description {
                font-size: 14px;
                line-height: 1.8;
            }

            /* AMENITIES */
            .amenities-section {
                padding: 80px 30px;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .section-header h2 {
                font-size: 44px;
                margin-bottom: 18px;
            }

            .section-header p {
                font-size: 14px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                max-width: 100%;
            }

            .amenity-card-horizontal {
                gap: 24px;
            }

            .amenity-icon-box {
                width: 75px;
                height: 75px;
                font-size: 36px;
            }

            .amenity-text h3 {
                font-size: 16px;
            }

            .amenity-text p {
                font-size: 12px;
            }

            /* LOCATION */
            .location-section {
                padding: 80px 30px;
            }

            .location-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .location-info h3 {
                font-size: 44px;
                margin-bottom: 18px;
            }

            .location-info p {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .location-highlights {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .highlight-box {
                padding: 20px;
            }

            .highlight-box h4 {
                font-size: 26px;
                margin-bottom: 8px;
            }

            .highlight-box p {
                font-size: 11px;
            }

            .location-map {
                min-height: 400px;
            }

            /* VILLAS */
            .villas-section {
                padding: 56px 0;
            }

            .villas-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }

            .villa-image {
                height: 250px;
                font-size: 70px;
            }

            .villa-content {
                padding: 35px;
            }

            .villa-name {
                font-size: 26px;
                margin-bottom: 14px;
            }

            .villa-description {
                font-size: 12px;
                margin-bottom: 20px;
            }

            /* FOOTER */
            footer {
                padding: 35px 30px;
            }

            .quick-enquiry-section {
                padding: 45px 30px;
                margin: 0 -30px -35px -30px;
            }

            .enquiry-form-group {
                gap: 18px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            /* SLIDER RESPONSIVE */
            .slider-section {
                width: 100vw;
                height: 50vh;
                margin-left: calc(-50vw + 50%);
            }

            .slider-content h1 {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .slider-content p {
                font-size: 14px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .slider-prev {
                left: 10px;
            }

            .slider-next {
                right: 10px;
            }

            .slider-dots {
                bottom: 20px;
                gap: 10px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            /* HEADER MOBILE */
            header {
                background: transparent;
                padding: 12px 0;
            }

            header.scrolled {
                background: rgba(255, 255, 255, 0.98);
                border-bottom: 1px solid #E8E4DC;
            }

            header .container {
                padding: 0 20px;
                flex-direction: row-reverse;
            }

            /* Legacy dropdown-style nav rules removed — superseded by the
               off-canvas nav#nav implementation (see "MOBILE MENU IMPROVED UX"
               section below). The old block left "left: 0" set on the plain
               `nav` type selector, which was never cleared by the newer
               `nav#nav` ID rule (ID only sets `right`), over-constraining the
               fixed-position box (left + right + width all non-auto) and
               causing the panel to mis-render instead of cleanly sliding in
               from the right edge. Removed entirely to eliminate the conflict. */

            .menu-toggle {
                display: block;
            }

            .logo {
                font-size: 18px;
            }

            .logo img {
                height: 44px;
            }

            /* HERO SECTION */
            .hero {
                min-height: auto;
                padding: 60px 20px;
            }

            .hero-content h1 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .hero-content p {
                font-size: 14px;
                margin-bottom: 25px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 12px 20px;
                font-size: 11px;
            }

            /* ABOUT/STORY SECTION */
            .about-section {
                padding: 40px 20px;
            }

            .story-section {
                flex-direction: column !important;
                padding: 32px 20px !important;
                gap: 20px;
                min-height: auto;
            }

            .letter-container {
                /* A masked letter glyph needs a roughly square box to read
                   clearly — the old fixed 170px strip was far too short and
                   wide for a photo clipped into a letterform. The image
                   inside is position:absolute (out of flow), so this box no
                   longer gets any height from its content — it depends
                   entirely on aspect-ratio to have a size at all. Pair it
                   with the classic padding-bottom percentage trick as a
                   fallback so the box is never zero-height even if
                   aspect-ratio doesn't compute for some reason. */
                height: 0;
                padding-bottom: 100%;
                aspect-ratio: 1 / 1;
                flex: 0 0 auto;
                width: 100%;
                min-width: 0;
            }
            @supports (aspect-ratio: 1 / 1) {
                .letter-container {
                    height: auto;
                    padding-bottom: 0;
                }
            }

            /* .letter-mask font-size now comes from the base clamp() —
               the square aspect-ratio box here is tall enough that the
               responsive clamp never needs a fixed override. */

            .content-container {
                padding: 0 !important;
                flex: 1;
            }

            .story-label {
                font-size: 10px;
                margin-bottom: 10px;
            }

            .story-heading {
                font-size: 24px;
                margin-bottom: 12px;
                line-height: 1.3;
            }

            .story-divider {
                width: 50px;
                margin-bottom: 15px;
            }

            .story-description {
                font-size: 13px;
                margin-bottom: 0;
                line-height: 1.6;
                color: var(--text-light);
            }

            /* AMENITIES SECTION */
            .amenities-section {
                padding: 80px 20px;
                background-attachment: scroll;
                min-height: auto;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-header h2 {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .section-header p {
                font-size: 13px;
            }

            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
                max-width: 100%;
            }

            .amenity-card-horizontal {
                gap: 10px;
            }

            .amenity-icon-box {
                width: 45px;
                height: 45px;
                font-size: 20px;
                flex-shrink: 0;
            }

            .amenity-text h3 {
                font-size: 12px;
                margin-bottom: 0;
            }

            /* LOCATION SECTION */
            .location-section {
                padding: 60px 20px;
            }

            .location-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .location-info h3 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .location-info p {
                font-size: 13px;
                margin-bottom: 25px;
            }

            .location-highlights {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .highlight-box {
                padding: 16px;
                border-left: 2px solid var(--gold);
            }

            .highlight-box h4 {
                font-size: 22px;
                margin-bottom: 6px;
            }

            .highlight-box p {
                font-size: 11px;
            }

            .location-map {
                min-height: 300px;
            }

            /* VILLAS SECTION */
            .villas-section {
                padding: 48px 0;
            }

            .villas-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .villa-card {
                border: 1px solid #E8E4DC;
            }

            .villa-image {
                height: 220px;
                font-size: 60px;
            }

            .villa-content {
                padding: 25px;
            }

            .villa-name {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .villa-size {
                font-size: 13px;
                margin-bottom: 6px;
            }

            .villa-config {
                font-size: 11px;
                margin-bottom: 12px;
            }

            .villa-description {
                font-size: 12px;
                margin-bottom: 18px;
                line-height: 1.6;
            }

            .btn-villa-enquire {
                font-size: 11px;
                padding: 10px 16px;
                height: auto;
            }

            /* FOOTER */
            footer {
                padding: 20px;
            }

            .footer-disclaimer {
                margin-bottom: 25px;
                padding-bottom: 25px;
            }

            .footer-disclaimer p {
                font-size: 11px;
                line-height: 1.6;
            }

            .quick-enquiry-section {
                padding: 25px 15px;
                margin: 0 -20px -20px -20px;
                background: #f9f7f4;
            }

            .enquiry-form h3 {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .enquiry-form-group {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 15px;
            }

            .enquiry-form-group input,
            .enquiry-form-group select {
                height: 44px;
                padding: 10px 12px;
                /* 16px minimum prevents iOS Safari from auto-zooming the
                   page when a field is tapped/focused on mobile. */
                font-size: 16px;
                border: 2px solid var(--navy);
            }

            .submit-btn {
                height: 44px;
                padding: 10px 16px;
                font-size: 11px;
                width: 100%;
            }

            .form-agreement {
                gap: 8px;
                margin-top: 15px;
                flex-direction: row;
            }

            .form-agreement input[type="checkbox"] {
                margin-top: 3px;
                width: 14px;
                height: 14px;
            }

            .form-agreement label {
                font-size: 11px;
                line-height: 1.5;
            }
        }

        @media (max-width: 600px) {
            .container {
                padding: 0 16px;
            }

            /* HEADER MOBILE */
            header {
                background: transparent;
                padding: 10px 0;
            }

            header .container {
                flex-direction: row-reverse;
            }

            header.scrolled {
                background: rgba(255, 255, 255, 0.98);
                border-bottom: 1px solid #E8E4DC;
            }

            .logo {
                font-size: 16px;
            }

            .logo img {
                height: 36px;
            }

            /* SLIDER */
            .slider-section {
                width: 100vw;
                height: 45vh;
                min-height: 300px;
                margin-left: calc(-50vw + 50%);
            }

            .slider-content h1 {
                font-size: 26px;
                margin-bottom: 10px;
            }

            .slider-content p {
                font-size: 12px;
            }

            .slider-arrow {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .slider-prev {
                left: 8px;
            }

            .slider-next {
                right: 8px;
            }

            .slider-dots {
                bottom: 15px;
                gap: 8px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            /* HEADER */
            .logo {
                font-size: 18px;
            }

            .logo img {
                height: 36px;
            }

            /* HERO */
            .hero {
                padding: 40px 16px;
                min-height: auto;
            }

            .hero-content h1 {
                font-size: 26px;
                margin-bottom: 12px;
            }

            .hero-content p {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .btn-primary, .btn-secondary {
                padding: 10px 16px;
                font-size: 10px;
            }

            /* ABOUT */
            .about-section {
                padding: 30px 16px;
            }

            .story-section {
                padding: 24px 16px !important;
                gap: 15px;
            }

            /* height/aspect-ratio for .letter-container inherited from the
               768px breakpoint (kept square) — nothing to override here. */

            /* .letter-mask font-size comes from the base clamp() (floors
               at 220px), which comfortably fits this square box too. */

            .story-label {
                font-size: 9px;
                margin-bottom: 8px;
            }

            .story-heading {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .story-divider {
                width: 40px;
                height: 2px;
                margin-bottom: 12px;
            }

            .story-description {
                font-size: 12px;
                line-height: 1.5;
            }

            /* AMENITIES */
            .amenities-section {
                padding: 70px 16px;
                background-attachment: scroll;
                min-height: auto;
            }

            .section-header {
                margin-bottom: 35px;
            }

            .section-header h2 {
                font-size: 26px;
                margin-bottom: 10px;
            }

            .section-header p {
                font-size: 12px;
            }

            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }

            .amenity-card-horizontal {
                gap: 10px;
            }

            .amenity-icon-box {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .amenity-text h3 {
                font-size: 13px;
            }

            .amenity-text p {
                font-size: 10px;
            }

            /* LOCATION */
            .location-section {
                padding: 50px 16px;
            }

            .location-info h3 {
                font-size: 26px;
                margin-bottom: 12px;
            }

            .location-info p {
                font-size: 12px;
                margin-bottom: 20px;
            }

            .location-highlights {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .highlight-box {
                padding: 12px;
                border-left: 2px solid var(--gold);
            }

            .highlight-box h4 {
                font-size: 20px;
                margin-bottom: 4px;
            }

            .highlight-box p {
                font-size: 10px;
            }

            .location-map {
                min-height: 250px;
                font-size: 36px;
            }

            /* VILLAS */
            .villas-section {
                padding: 40px 0;
            }

            .villa-image {
                height: 200px;
                font-size: 50px;
            }

            .villa-content {
                padding: 20px;
            }

            .villa-name {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .villa-size {
                font-size: 12px;
                margin-bottom: 5px;
            }

            .villa-config {
                font-size: 10px;
                margin-bottom: 10px;
            }

            .villa-description {
                font-size: 11px;
                margin-bottom: 15px;
            }

            .btn-villa-enquire {
                font-size: 10px;
                padding: 8px 12px;
            }

            /* FOOTER */
            footer {
                padding: 15px;
            }

            .footer-disclaimer {
                margin-bottom: 20px;
                padding-bottom: 20px;
            }

            .footer-disclaimer p {
                font-size: 10px;
            }

            .quick-enquiry-section {
                padding: 20px 12px;
                margin: 0 -16px -15px -16px;
            }

            .enquiry-form h3 {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .enquiry-form-group {
                gap: 10px;
                margin-bottom: 12px;
            }

            .enquiry-form-group input,
            .enquiry-form-group select {
                height: 44px;
                padding: 8px 10px;
                /* Keep at 16px (not 11px) so iOS Safari doesn't zoom the
                   page in when a field is tapped on small screens. */
                font-size: 16px;
            }

            .submit-btn {
                height: 40px;
                font-size: 11px;
            }
        }

        /* ===== MODAL (Brochure / Enquiry / Lead-gate) ===== */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 27, 46, 0.72);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 1200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .modal-backdrop:not([hidden]) { opacity: 1; }
        .modal-backdrop[hidden] { display: none; }

        .modal-dialog {
            background: white;
            border-radius: 16px;
            width: 100%;
            max-width: 460px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 36px 32px 32px;
            position: relative;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
            transform: translateY(20px) scale(0.98);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .modal-backdrop:not([hidden]) .modal-dialog {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 12px;
            right: 14px;
            background: transparent;
            border: none;
            font-size: 32px;
            line-height: 1;
            color: var(--text-light);
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .modal-close:hover { background: rgba(0, 0, 0, 0.06); color: var(--text-dark); }
        .modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

        .modal-header { text-align: center; margin-bottom: 24px; }
        .modal-icon { display: flex; justify-content: center; color: var(--gold); margin-bottom: 8px; }
        .modal-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: var(--navy);
            margin: 0 0 6px;
        }
        .modal-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
        }

        .modal-form { display: flex; flex-direction: column; gap: 14px; }
        .modal-field { display: flex; flex-direction: column; gap: 4px; }
        .modal-field label {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-dark);
            letter-spacing: 0.3px;
        }
        .modal-field label .req { color: #E14; margin-left: 2px; }
        .modal-field label .opt { color: var(--text-light); font-weight: 400; font-style: italic; }
        .modal-field input {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            padding: 11px 14px;
            border: 1.5px solid #E1E5EA;
            border-radius: 8px;
            background: #F9FAFB;
            transition: border-color 0.2s, background 0.2s;
        }
        .modal-field input:focus {
            outline: none;
            border-color: var(--navy);
            background: white;
        }
        .modal-field input.error { border-color: #E14; background: #FFF5F5; }
        .modal-error {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            color: #E14;
            min-height: 0;
        }
        .modal-error:empty {
            display: none;
        }

        .honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .modal-submit {
            margin-top: 8px;
            padding: 14px;
            background: linear-gradient(135deg, var(--navy) 0%, #2A5F87 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
        }
        .modal-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(31, 75, 110, 0.35);
        }
        .modal-submit:active { transform: translateY(0); }
        .modal-submit[disabled] {
            opacity: 0.7;
            cursor: not-allowed;
        }
        .modal-submit .btn-spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-top-color: white;
            border-radius: 50%;
            animation: modal-spin 0.7s linear infinite;
        }
        .modal-submit.loading .btn-spinner { display: inline-block; }
        .modal-submit.loading .btn-label { opacity: 0.75; }
        @keyframes modal-spin { to { transform: rotate(360deg); } }

        .modal-consent {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            color: var(--text-light);
            text-align: center;
            margin: 6px 0 0;
            line-height: 1.5;
        }

        .modal-success {
            text-align: center;
            padding: 12px 0;
        }
        .modal-success-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #E8F7EE;
            color: #22C55E;
            font-size: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            animation: modal-check-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @keyframes modal-check-in {
            0% { transform: scale(0); opacity: 0; }
            80% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }
        .modal-success h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: var(--navy);
            margin: 0 0 6px;
        }
        .modal-success p {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-light);
            margin: 0 0 16px;
        }

        body.modal-open {
            overflow: hidden;
            padding-right: var(--scrollbar-width, 0);
        }

        @media (max-width: 480px) {
            .modal-dialog {
                padding: 28px 22px 24px;
                border-radius: 12px;
            }
            .modal-header h3 { font-size: 22px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .modal-backdrop, .modal-dialog, .modal-success-icon { transition: none; animation: none; }
        }
        /* ===== END MODAL ===== */

        /* Modal select styling (matches inputs) */
        .modal-field select {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            padding: 11px 14px;
            border: 1.5px solid #E1E5EA;
            border-radius: 8px;
            background: #F9FAFB;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%235A6C7D' stroke-width='1.5' stroke-linecap='round'/></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }
        .modal-field select:focus {
            outline: none;
            border-color: var(--navy);
            background-color: white;
        }
        .modal-field select.error { border-color: #E14; background-color: #FFF5F5; }

        /* ===== FOOTER ENQUIRY FORM ENHANCEMENTS ===== */
        .enquiry-form-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-light);
            margin: -6px 0 16px;
        }
        .enquiry-field {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .enquiry-field input.error,
        .enquiry-field select.error {
            border-color: #E14 !important;
            background-color: #FFF5F5 !important;
        }
        .submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
        }
        .submit-btn:hover { transform: translateY(-1px); }
        .submit-btn[disabled] { opacity: 0.7; cursor: not-allowed; }
        .submit-btn .btn-spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-top-color: white;
            border-radius: 50%;
            animation: modal-spin 0.7s linear infinite;
        }
        .submit-btn.loading .btn-spinner { display: inline-block; }
        .submit-btn.loading .btn-label { opacity: 0.75; }

        .enquiry-success {
            margin-top: 16px;
            padding: 20px;
            background: rgba(34, 197, 94, 0.08);
            border-left: 4px solid #22C55E;
            border-radius: 8px;
            text-align: center;
        }
        .enquiry-success h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: var(--navy);
            margin: 8px 0 6px;
        }
        .enquiry-success p {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.5;
        }

        .enquiry-error {
            margin-top: 12px;
            padding: 12px 16px;
            background: rgba(225, 68, 68, 0.08);
            border-left: 4px solid #E14;
            border-radius: 8px;
        }
        .enquiry-error p {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.5;
        }
        /* ===== END FOOTER FORM ===== */

        /* ===== HERO LEAD FORM CARD ===== */
        .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-lead-card {
            background: white;
            border-radius: 14px;
            padding: 28px 26px 24px;
            box-shadow: 0 20px 60px rgba(15, 27, 46, 0.18);
            max-width: 420px;
            width: 100%;
            justify-self: end;
            position: relative;
            border: 1px solid rgba(196, 165, 116, 0.15);
        }

        .hero-lead-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, #D4B584 100%);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .hero-lead-card h2 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--navy);
            margin: 0 0 4px;
            line-height: 1.2;
        }

        .hero-lead-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-light);
            margin: 0 0 18px;
            line-height: 1.4;
        }

        .hero-lead-form {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hero-lead-form input,
        .hero-lead-form select {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            padding: 10px 14px;
            border: 1.5px solid #E1E5EA;
            border-radius: 8px;
            background: #F9FAFB;
            transition: border-color 0.2s, background 0.2s;
            width: 100%;
        }
        .hero-lead-form input:focus,
        .hero-lead-form select:focus {
            outline: none;
            border-color: var(--navy);
            background: white;
        }
        .hero-lead-form input.error,
        .hero-lead-form select.error {
            border-color: #E14;
            background-color: #FFF5F5;
        }
        .hero-lead-form select {
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%235A6C7D' stroke-width='1.5' stroke-linecap='round'/></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
            cursor: pointer;
        }

        .hero-lead-submit {
            margin-top: 4px;
            padding: 14px;
            background: linear-gradient(135deg, var(--navy) 0%, #2A5F87 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
        }
        .hero-lead-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(31, 75, 110, 0.35);
        }
        .hero-lead-submit[disabled] { opacity: 0.7; cursor: not-allowed; }
        .hero-lead-submit .btn-spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.4);
            border-top-color: white;
            border-radius: 50%;
            animation: modal-spin 0.7s linear infinite;
        }
        .hero-lead-submit.loading .btn-spinner { display: inline-block; }
        .hero-lead-submit.loading .btn-label { opacity: 0.75; }

        .hero-lead-consent {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            color: var(--text-light);
            text-align: center;
            margin: 4px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        .hero-lead-lock { display: inline-flex; vertical-align: -1px; }

        .hero-lead-success {
            text-align: center;
            padding: 12px 0;
        }
        .hero-lead-success h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: var(--navy);
            margin: 8px 0 6px;
        }
        .hero-lead-success p {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
        }

        /* Stack on tablet/mobile */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-lead-card {
                max-width: 500px;
                justify-self: center;
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .hero-lead-card { padding: 22px 20px 20px; }
            .hero-lead-card h2 { font-size: 22px; }
        }
        /* ===== END HERO LEAD FORM ===== */

        /* ===== TRUST STRIP ===== */
        .trust-strip {
            padding: 34px 0;
            background: linear-gradient(180deg, #FAF7F2 0%, #F5F0E8 100%);
            border-top: 1px solid rgba(196, 165, 116, 0.15);
            border-bottom: 1px solid rgba(196, 165, 116, 0.15);
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 22px;
            align-items: center;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 4px 6px;
        }
        .trust-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            box-shadow: 0 4px 12px rgba(196, 165, 116, 0.18);
        }
        .trust-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
        .trust-title {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: 0.3px;
            line-height: 1.2;
        }
        .trust-sub {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 500;
            color: var(--text-light);
            letter-spacing: 0.2px;
            line-height: 1.3;
        }

        @media (max-width: 1024px) {
            .trust-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px 16px;
            }
        }
        @media (max-width: 640px) {
            .trust-strip { padding: 26px 0; }
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px 12px;
            }
            .trust-icon { width: 38px; height: 38px; }
            .trust-title { font-size: 12px; }
            .trust-sub { font-size: 10px; }
        }
        @media (max-width: 400px) {
            .trust-grid { grid-template-columns: 1fr; }
        }
        /* ===== END TRUST STRIP ===== */

        /* ===== PRICING SECTION ===== */
        .pricing-section { padding: 64px 0 80px; background: white; }
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.1fr;
            gap: 24px;
            margin-top: 40px;
        }
        .pricing-card {
            background: white;
            border: 1.5px solid #EDEBE6;
            border-radius: 14px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
            position: relative;
            overflow: hidden;
        }
        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(31, 75, 110, 0.15);
        }
        .pricing-card.featured {
            border-color: var(--gold);
            background: linear-gradient(180deg, white 0%, #FDFAF3 100%);
            box-shadow: 0 12px 40px rgba(196, 165, 116, 0.15);
        }
        .pricing-flag {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--gold);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 4px;
        }
        .pricing-header { margin-bottom: 22px; }
        .pricing-badge {
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--gold-accessible);
            margin-bottom: 8px;
        }
        .pricing-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: var(--navy);
            margin: 0 0 4px;
        }
        .pricing-config {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
            letter-spacing: 0.3px;
        }
        .pricing-amount {
            padding: 18px 0;
            border-top: 1px dashed #E5E3DE;
            border-bottom: 1px dashed #E5E3DE;
            margin-bottom: 22px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .pricing-prefix {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: var(--text-light);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .pricing-value {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--navy);
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex-grow: 1;
        }
        .pricing-features li {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-dark);
            padding-left: 22px;
            position: relative;
            line-height: 1.5;
        }
        .pricing-features li::before {
            content: '';
            position: absolute;
            left: 3px;
            top: 4px;
            width: 8px;
            height: 4px;
            border-left: 2px solid var(--gold);
            border-bottom: 2px solid var(--gold);
            transform: rotate(-45deg);
        }
        .btn-pricing {
            padding: 13px 20px;
            background: white;
            color: var(--navy);
            border: 1.5px solid var(--navy);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-pricing:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-1px);
        }
        .btn-pricing-featured {
            background: linear-gradient(135deg, var(--gold) 0%, #D4B584 100%);
            color: white;
            border-color: var(--gold);
        }
        .btn-pricing-featured:hover {
            background: linear-gradient(135deg, #B89968 0%, var(--gold) 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(196, 165, 116, 0.35);
        }

        /* EMI Calculator */
        .emi-calculator {
            background: linear-gradient(180deg, var(--navy) 0%, #163F5E 100%);
            border-radius: 14px;
            padding: 32px 28px;
            color: white;
            display: flex;
            flex-direction: column;
        }
        .emi-body {
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .emi-header { margin-bottom: 22px; }
        .emi-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            margin: 0 0 4px;
        }
        .emi-header p {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        .emi-field { margin-bottom: 16px; }
        .emi-field label {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }
        .emi-input-wrap {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            padding: 0 12px;
            transition: background 0.2s;
        }
        .emi-input-wrap:focus-within { background: rgba(255, 255, 255, 0.13); }
        .emi-input-prefix, .emi-input-suffix {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }
        .emi-input-wrap input[type="number"] {
            flex: 1;
            background: transparent;
            border: none;
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 8px;
            outline: none;
            -moz-appearance: textfield;
        }
        .emi-input-wrap input::-webkit-outer-spin-button,
        .emi-input-wrap input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .emi-field input[type="range"] {
            width: 100%;
            margin-top: 8px;
            -webkit-appearance: none;
            appearance: none;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            outline: none;
        }
        .emi-field input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            background: var(--gold);
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.15s;
        }
        .emi-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
        .emi-field input[type="range"]::-moz-range-thumb {
            width: 16px;
            height: 16px;
            background: var(--gold);
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

        .emi-result {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
        .emi-result-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
        .emi-result-item.small { flex: 1; }
        .emi-result-label {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.65);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .emi-result-value {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
        }
        .emi-result-value.small { font-size: 16px; color: white; font-weight: 600; }
        .emi-result-row { display: flex; gap: 20px; }

        .pricing-disclaimer {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            color: var(--text-light);
            text-align: center;
            margin-top: 32px;
            font-style: italic;
        }

        @media (max-width: 1024px) {
            .pricing-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
            .emi-calculator { grid-column: span 2; }
        }
        @media (max-width: 640px) {
            .pricing-grid { grid-template-columns: 1fr; }
            .emi-calculator { grid-column: auto; }
            .pricing-value { font-size: 28px; }
            .emi-result-value { font-size: 24px; }
            .pricing-section { padding: 48px 0 64px; }
        }
        /* ===== END PRICING SECTION ===== */

        /* ===== FLOOR PLANS SECTION ===== */
        .floorplans-section { padding: 64px 0; background: #FAF7F2; }
        .floorplan-tabs {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin: 30px 0 32px;
            flex-wrap: wrap;
        }
        .floorplan-tab {
            background: white;
            border: 1.5px solid #E5E3DE;
            border-radius: 10px;
            padding: 14px 26px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }
        .floorplan-tab .tab-sub {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-light);
            letter-spacing: 0.3px;
        }
        .floorplan-tab:hover {
            border-color: var(--gold);
            transform: translateY(-1px);
        }
        .floorplan-tab.active {
            background: var(--navy);
            border-color: var(--navy);
            color: white;
            box-shadow: 0 6px 16px rgba(31, 75, 110, 0.3);
        }
        .floorplan-tab.active .tab-sub { color: rgba(255, 255, 255, 0.7); }

        .floorplan-content {
            background: white;
            border-radius: 14px;
            padding: 32px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .floorplan-panel[hidden] { display: none; }
        .floorplan-panel {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .floorplan-media {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .floorplan-media .btn-floorplan-download {
            margin: 0 auto;
            max-width: 360px;
        }
        .floorplan-visual {
            background: #FAF7F2;
            border-radius: 10px;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .floorplan-info {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 32px;
            align-items: start;
            padding-top: 4px;
            border-top: 1px solid #EFEAE0;
        }
        .floorplan-info .floorplan-summary {
            margin-top: 20px;
        }
        .floorplan-visual svg { width: 100%; height: auto; display: block; }
        .floorplan-visual img { width: 100%; height: auto; display: block; border-radius: 6px; }
        .floorplan-image-box {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .floorplan-image-caption {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
        }
        @media (max-width: 640px) {
            .floorplan-visual { grid-template-columns: 1fr; }
        }

        .floorplan-summary {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }
        .floorplan-stat {
            background: #F9F7F4;
            border-radius: 8px;
            padding: 12px;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: var(--text-light);
            letter-spacing: 0.3px;
        }
        .floorplan-stat strong {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 2px;
        }
        .floorplan-highlights {
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .floorplan-highlights li {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-dark);
            padding-left: 22px;
            position: relative;
            line-height: 1.5;
        }
        .floorplan-highlights li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.7;
        }
        .btn-floorplan-download {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--navy) 0%, #2A5F87 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .btn-floorplan-download:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(31, 75, 110, 0.35);
        }

        @media (max-width: 900px) {
            .floorplan-content { padding: 20px; }
        }
        @media (max-width: 640px) {
            .floorplan-info { grid-template-columns: 1fr; gap: 16px; }
            .floorplan-info .floorplan-summary { margin-top: 0; }
        }
        @media (max-width: 480px) {
            .floorplans-section { padding: 48px 0; }
            .floorplan-tab { padding: 12px 18px; font-size: 13px; }
        }
        /* ===== END FLOOR PLANS ===== */

        /* ===== SPECIFICATIONS SECTION ===== */
        /* ===== PROJECT HIGHLIGHTS ===== */
        .highlights-section {
            padding: 48px 0;
            background: white;
        }
        .highlights-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 36px;
        }
        .highlights-header h2 {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 44px;
            color: #20B2AA;
            margin: 0;
            letter-spacing: 2px;
            line-height: 1.2;
            white-space: nowrap;
        }
        .highlights-line {
            flex: 1;
            max-width: 90px;
            height: 1px;
            background: #C9C2B4;
        }
        /* .highlights-row reuses .trust-grid for identical icon-box + text styling as the trust strip */
        @media (max-width: 768px) {
            .highlights-section { padding: 40px 0; }
            .highlights-header h2 { font-size: 32px; }
            .highlights-line { max-width: 40px; }
        }
        @media (max-width: 480px) {
            .highlights-header { gap: 12px; margin-bottom: 28px; }
            .highlights-header h2 { font-size: 24px; }
        }
        /* ===== END PROJECT HIGHLIGHTS ===== */

        /* ===== LAYOUT PLAN (section wrapper only — see assets/css/layout-plan.css for the interactive stage) ===== */
        .layoutplan-section { padding: 64px 0; background: #FAF7F2; }
        @media (max-width: 1024px) { .layoutplan-section { padding: 48px 0; } }
        @media (max-width: 768px) { .layoutplan-section { padding: 40px 0; } }
        @media (max-width: 480px) { .layoutplan-section { padding: 32px 0; } }
        /* ===== END LAYOUT PLAN ===== */

        .specs-section { padding: 48px 0 40px; background: white; }
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 24px;
        }
        .spec-card {
            background: #FAF7F2;
            border-radius: 12px;
            padding: 18px 18px;
            border: 1px solid rgba(196, 165, 116, 0.15);
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, background 0.25s;
        }
        .spec-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(31, 75, 110, 0.12);
            background: white;
            border-color: var(--gold);
        }
        .spec-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            margin-bottom: 14px;
            box-shadow: 0 4px 12px rgba(196, 165, 116, 0.15);
        }
        .spec-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin: 0 0 12px;
        }
        .spec-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
        .spec-card li {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: var(--text-dark);
            padding-left: 16px;
            position: relative;
            line-height: 1.5;
        }
        .spec-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            opacity: 0.6;
        }
        /* Simplified single-line spec points (icon + title, no sub-bullet list) */
        .spec-card-simple {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .spec-card-simple .spec-icon {
            margin-bottom: 16px;
        }
        .spec-card-simple h3 {
            font-size: 16px;
            line-height: 1.4;
            margin: 0;
        }
        @media (max-width: 1024px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 768px) { .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } .specs-section { padding: 48px 0; } }
        @media (max-width: 480px) { .specs-grid { grid-template-columns: 1fr; } }
        /* ===== END SPECIFICATIONS ===== */

        /* ===== MAP DIRECTIONS BUTTON ===== */
        .location-map-container { position: relative; }
        .map-directions-btn {
            position: absolute;
            bottom: 16px;
            left: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            color: var(--navy);
            padding: 10px 16px;
            border-radius: 24px;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.15s, box-shadow 0.2s;
            z-index: 2;
        }
        .map-directions-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
            color: var(--navy);
        }
        .map-directions-btn svg { color: var(--gold); }

        /* ===== HERO SLIDER — KEN BURNS ===== */
        .slider-slide {
            transition: opacity 1.2s ease-in-out;
        }
        .slider-slide.active picture img {
            animation: kenburns 8s ease-out forwards;
        }
        @keyframes kenburns {
            0%   { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.12) translate(-1.5%, -1.5%); }
        }
        .slider-slide:not(.active) picture img {
            animation: none;
            transform: scale(1);
        }
        @media (prefers-reduced-motion: reduce) {
            .slider-slide.active picture img { animation: none; }
        }
        /* ===== END KEN BURNS ===== */

        /* ===== HOVER MICROINTERACTIONS ===== */

        /* Amenity cards - subtle lift + icon color pulse */
        .amenity-card-horizontal {
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: default;
        }
        .amenity-card-horizontal:hover {
            transform: translateY(-4px);
        }
        .amenity-card-horizontal:hover .amenity-icon-box img {
            filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(196, 165, 116, 0.6));
            transform: scale(1.1);
        }
        .amenity-icon-box img {
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.3s ease;
        }

        /* Villa cards - lift + shine */
        .villa-card {
            position: relative;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.35s ease;
        }
        .villa-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent 30%, rgba(196, 165, 116, 0.15) 50%, transparent 70%);
            transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }
        .villa-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(31, 75, 110, 0.18);
        }
        .villa-card:hover::after { left: 100%; }
        .villa-card .villa-icon {
            display: flex;
            justify-content: center;
            color: var(--gold);
            margin-bottom: 8px;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .villa-card:hover .villa-icon { transform: scale(1.15) rotate(-4deg); }

        /* Location items - highlight on hover */
        .location-item {
            transition: transform 0.25s, background 0.25s;
            border-radius: 8px;
            padding: 8px 10px;
            margin: -8px -10px;
        }
        .location-item:hover {
            background: rgba(32, 178, 170, 0.06);
            transform: translateX(4px);
        }
        .location-item-icon {
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .location-item:hover .location-item-icon { transform: scale(1.15); }

        /* Buttons — button shine sweep */
        .btn-primary,
        .btn-secondary,
        .submit-btn,
        .modal-submit,
        .hero-lead-submit,
        .btn-pricing,
        .btn-floorplan-download {
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before,
        .btn-secondary::before,
        .submit-btn::before,
        .modal-submit::before,
        .hero-lead-submit::before,
        .btn-pricing::before,
        .btn-floorplan-download::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }
        .btn-primary:hover::before,
        .btn-secondary:hover::before,
        .submit-btn:hover::before,
        .modal-submit:hover::before,
        .hero-lead-submit:hover::before,
        .btn-pricing:hover::before,
        .btn-floorplan-download:hover::before {
            left: 100%;
        }

        /* Header CTA button — slight glow on hover */
        .cta-button {
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .cta-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(196, 165, 116, 0.4);
        }

        /* Trust icons — subtle bounce on hover */
        .trust-item {
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .trust-item:hover { transform: translateY(-3px); }
        .trust-item:hover .trust-icon {
            box-shadow: 0 10px 24px rgba(196, 165, 116, 0.35);
        }
        .trust-icon { transition: box-shadow 0.25s ease; }

        /* Respect reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .amenity-card-horizontal,
            .villa-card,
            .location-item,
            .trust-item,
            .villa-card::after,
            .btn-primary::before, .btn-secondary::before, .submit-btn::before,
            .modal-submit::before, .hero-lead-submit::before,
            .btn-pricing::before, .btn-floorplan-download::before {
                transition: none;
                animation: none;
            }
        }
        /* ===== END HOVER MICROINTERACTIONS ===== */

        /* ===== SCROLL PROGRESS INDICATOR ===== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold) 0%, #E5C793 100%);
            z-index: 10000;
            box-shadow: 0 0 8px rgba(196, 165, 116, 0.5);
            transition: width 0.08s linear;
            will-change: width;
        }
        @media (prefers-reduced-motion: reduce) {
            .scroll-progress { transition: none; }
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-section { padding: 64px 0; background: linear-gradient(180deg, white 0%, #FAF7F2 100%); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 32px 28px;
            box-shadow: 0 8px 30px rgba(31, 75, 110, 0.06);
            position: relative;
            border: 1px solid rgba(196, 165, 116, 0.15);
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
        }
        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 45px rgba(31, 75, 110, 0.14);
        }
        .testimonial-quote {
            font-family: 'Playfair Display', serif;
            font-size: 68px;
            font-weight: 700;
            color: var(--gold);
            line-height: 0.5;
            height: 24px;
            opacity: 0.6;
        }
        .testimonial-text {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
            padding-top: 16px;
            border-top: 1px solid #EDEBE6;
        }
        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--navy) 0%, #2A5F87 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 15px;
            flex-shrink: 0;
        }
        .testimonial-name {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--navy);
        }
        .testimonial-role {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            color: var(--text-light);
        }
        .testimonial-stars {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            color: var(--gold-accessible);
        }

        .press-strip {
            margin-top: 50px;
            padding: 24px 0;
            border-top: 1px dashed rgba(196, 165, 116, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 24px;
        }
        .press-label {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-light);
        }
        .press-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 32px;
            align-items: center;
        }
        .press-logo {
            font-family: 'Playfair Display', serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            opacity: 0.6;
            transition: opacity 0.2s;
            letter-spacing: 0.5px;
        }
        .press-logo:hover { opacity: 1; }

        @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; gap: 20px; } }
        @media (max-width: 480px) { .testimonials-section { padding: 40px 0; } }
        /* ===== END TESTIMONIALS ===== */

        /* ===== FAQ SECTION ===== */
        .faq-section { padding: 64px 0; background: white; }
        .faq-list {
            margin-top: 40px;
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        /* Two-column layout on wider screens — roughly halves the section's
           height and makes better use of the container's width. Grid (not
           CSS columns) is used so expanding an item never shifts other
           items between columns. */
        @media (min-width: 768px) {
            .faq-list {
                max-width: 1100px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px 24px;
                align-items: start;
            }
        }
        .faq-item {
            background: #FAF7F2;
            border-radius: 10px;
            border: 1px solid rgba(196, 165, 116, 0.15);
            overflow: hidden;
            transition: box-shadow 0.25s ease;
        }
        .faq-item[open] {
            box-shadow: 0 8px 24px rgba(31, 75, 110, 0.08);
            background: white;
            border-color: var(--gold);
        }
        .faq-item summary {
            padding: 13px 20px 13px 20px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transition: color 0.2s;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: '+';
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            color: var(--gold);
            font-weight: 300;
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            flex-shrink: 0;
        }
        .faq-item[open] summary::after { transform: rotate(45deg); }
        .faq-item summary:hover { color: var(--gold); }
        .faq-answer {
            padding: 0 20px 16px;
            font-family: 'Poppins', sans-serif;
            font-size: 13.5px;
            color: var(--text-dark);
            line-height: 1.6;
        }
        .faq-answer p { margin: 0; }
        .faq-answer strong { color: var(--navy); }

        @media (max-width: 640px) {
            .faq-section { padding: 48px 0; }
            .faq-item summary { padding: 16px 18px; font-size: 14px; }
            .faq-answer { padding: 0 18px 18px; font-size: 13px; }
        }
        /* ===== END FAQ ===== */

        /* ===== EXIT INTENT MODAL ===== */
        .exit-dialog .modal-header h3 {
            font-size: 24px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .exit-dialog { border-top: 4px solid var(--gold); }

        /* Two-column layout: project branding (left) + form (right) */
        .modal-dialog-split {
            display: flex;
            align-items: stretch;
            max-width: 780px;
            padding: 0;
            overflow-y: auto;
            overflow-x: hidden;
        }
        .modal-split-left {
            flex: 0 0 42%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 6px;
            padding: 40px 28px;
            background: var(--light-gray);
            border-right: 1px solid rgba(196, 165, 116, 0.2);
        }
        .modal-split-logo {
            width: 140px;
            height: auto;
            margin-bottom: 14px;
        }
        .modal-split-project {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: 0.5px;
            margin: 0;
        }
        .modal-split-config {
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--gold-accessible);
            margin: 10px 0 0;
        }
        .modal-split-tagline {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: var(--text-light);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin: 4px 0 0;
        }
        .modal-split-right {
            flex: 1;
            min-width: 0;
            padding: 36px 32px 32px;
        }
        .modal-dialog-split .modal-close { z-index: 2; }
        @media (max-width: 640px) {
            .modal-dialog-split {
                flex-direction: column;
                max-width: 460px;
                max-height: 90vh;
                overflow-y: auto;
            }
            .modal-split-left {
                padding: 24px 20px;
                flex: 0 0 auto;
                border-right: none;
                border-bottom: 1px solid rgba(196, 165, 116, 0.2);
            }
            .modal-split-logo { width: 110px; margin-bottom: 8px; }
            .modal-split-right {
                padding: 28px 22px 24px;
                max-height: none;
                overflow-y: visible;
            }
        }
        /* ===== END EXIT INTENT ===== */

        /* ===== MOBILE MENU IMPROVED UX ===== */
        .mobile-menu-close {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            font-size: 40px;
            color: white;
            cursor: pointer;
            line-height: 1;
            padding: 4px 12px;
            border-radius: 6px;
        }
        .mobile-menu-close:hover { background: rgba(255,255,255,0.1); }
        .mobile-menu-backdrop {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 27, 46, 0.5);
            z-index: 800;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mobile-menu-backdrop.visible { opacity: 1; }
        .mobile-menu-cta-group {
            display: none;
            width: 100%;
            gap: 12px;
            margin-top: 20px;
            padding: 0 24px;
            flex-direction: column;
        }
        .mobile-menu-call, .mobile-menu-wa {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            text-align: center;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
        }
        .mobile-menu-call {
            background: var(--navy);
            color: white;
        }
        .mobile-menu-wa {
            background: #25D366;
            color: white;
        }

        @media (max-width: 1200px) {
            /* Breakpoint raised from 900px to 1200px: with 9 nav links + logo,
               the horizontal nav overflows well before 1200px (measured ~1000px
               of nav content vs. ~1080-1120px available at 901-1199px viewports).
               Hamburger must be visible whenever nav converts to off-canvas below,
               otherwise mid-range viewports have no way to open the nav. */
            .menu-toggle {
                display: block;
            }
            /* Full-screen slide-in overlay */
            nav#nav {
                position: fixed;
                top: 0;
                right: 0;
                left: auto;
                width: 82%;
                max-width: 340px;
                height: 100vh;
                background: linear-gradient(180deg, var(--navy) 0%, #163F5E 100%);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 32px 32px;
                transform: translateX(100%);
                transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
                z-index: 850;
                gap: 8px;
                overflow-y: auto;
                box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
            }
            nav#nav.active {
                transform: translateX(0);
            }
            nav#nav a {
                color: white;
                font-family: 'Poppins', sans-serif;
                font-size: 16px;
                font-weight: 500;
                padding: 14px 4px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                width: 100%;
            }
            nav#nav a:hover { color: var(--gold); }
            nav#nav .cta-button {
                width: 100%;
                margin-top: 12px;
            }
            .mobile-menu-close { display: block; }
            .mobile-menu-cta-group { display: flex; }
            nav#nav.active ~ .mobile-menu-backdrop,
            .mobile-menu-backdrop.visible {
                display: block;
                opacity: 1;
            }
            body.mobile-menu-open {
                overflow: hidden;
            }
        }
        /* ===== END MOBILE MENU ===== */

        /* ===== ACCESSIBILITY ===== */

        /* Skip-to-content link */
        .skip-to-content {
            position: absolute;
            top: -60px;
            left: 12px;
            background: var(--navy);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            z-index: 20000;
            transition: top 0.2s;
        }
        .skip-to-content:focus {
            top: 12px;
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* Focus visible styles for keyboard nav */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
            border-radius: 4px;
        }
        input:focus-visible, select:focus-visible {
            outline-offset: 1px;
        }

        /* Screen-reader-only utility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Ensure form fields have sufficient contrast */
        input::placeholder,
        select {
            color: var(--text-dark);
            opacity: 0.75;
        }
        /* ===== END ACCESSIBILITY ===== */

        /* ===== COOKIE CONSENT BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 640px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(15, 27, 46, 0.25);
            padding: 20px 24px;
            z-index: 9999;
            border: 1px solid rgba(196, 165, 116, 0.2);
            transform: translateY(120%);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        }
        .cookie-banner.visible {
            transform: translateY(0);
            opacity: 1;
        }
        .cookie-banner[hidden] {
            display: none !important;
        }
        .cookie-content {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }
        .cookie-text {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            color: var(--text-dark);
            line-height: 1.5;
        }
        .cookie-text strong { color: var(--navy); }
        .cookie-text a {
            color: var(--navy);
            font-weight: 600;
            text-decoration: underline;
        }
        .cookie-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }
        .cookie-btn {
            padding: 10px 18px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
            border: 1.5px solid transparent;
            white-space: nowrap;
        }
        .cookie-btn-reject {
            background: transparent;
            color: var(--text-dark);
            border-color: #E1E5EA;
        }
        .cookie-btn-reject:hover {
            border-color: var(--text-dark);
            background: #FAF7F2;
        }
        .cookie-btn-accept {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }
        .cookie-btn-accept:hover {
            background: #2A5F87;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(31, 75, 110, 0.35);
        }

        @media (max-width: 600px) {
            .cookie-banner { left: 12px; right: 12px; padding: 16px 18px; }
            .cookie-content { flex-direction: column; align-items: stretch; gap: 14px; }
            .cookie-actions { justify-content: center; }
            .cookie-text { font-size: 12px; }
        }
        /* ===== END COOKIE BANNER ===== */

        /* ===== GALLERY LIGHTBOX ===== */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 1500;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .lightbox:not([hidden]) { opacity: 1; }
        .lightbox[hidden] { display: none; }
        .lightbox img {
            max-width: 100%;
            max-height: calc(100vh - 80px);
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 28px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .lightbox-close:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); }
        .lightbox-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.12);
            color: white;
            border: none;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            font-size: 32px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }
        .lightbox-arrow:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: translateY(-50%) scale(1.1);
        }
        .lightbox-counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            padding: 6px 16px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 24px;
        }
        .gallery-image { cursor: zoom-in; }
        @media (max-width: 640px) {
            .lightbox { padding: 20px; }
            .lightbox-arrow { width: 42px; height: 42px; font-size: 24px; }
            .lightbox-close { width: 40px; height: 40px; font-size: 22px; }
        }

        /* ===== VIDEO WALKTHROUGH ===== */
        .btn-video-play {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s, border-color 0.2s;
            backdrop-filter: blur(8px);
        }
        .btn-video-play:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .video-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1300;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .video-modal:not([hidden]) { opacity: 1; }
        .video-modal[hidden] { display: none; }
        .video-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 28px;
            cursor: pointer;
        }
        .video-modal-inner {
            width: 100%;
            max-width: 900px;
            aspect-ratio: 16 / 9;
            background: black;
            border-radius: 12px;
            overflow: hidden;
        }
        .video-embed-wrap {
            width: 100%;
            height: 100%;
        }
        .video-embed-wrap iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }
        /* ===== END VIDEO WALKTHROUGH ===== */
