 
        /* ========================= DESIGN TOKENS & RESET ========================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #8b6f47;
            --accent-color: #d4a574;
            --text-primary: #1a1a1a;
            --text-secondary: #5a5a5a;
            --bg-light: #faf8f6;
            --bg-white: #ffffff;
            --border-color: #e8e2d8;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ========================= NAVIGATION ========================= */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8%;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: -1px;
        }

        .nav-logo img{
            width: 180px;
            height: 180px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-cta {
            padding: 12px 24px;
            background: var(--primary-color);
            color: var(--bg-white);
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }

        /* ========================= HERO SECTION ========================= */
        .hero {
            margin-top: 80px;
            padding: 100px 8% 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 90vh;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(139, 111, 71, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-title .accent {
            color: var(--accent-color);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 35px;
            max-width: 500px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 16px 36px;
            background: var(--primary-color);
            color: var(--bg-white);
            border: none;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 111, 71, 0.2);
        }

        .btn-secondary {
            padding: 16px 36px;
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--bg-white);
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        /* ========================= STATS SECTION ========================= */
        .stats-section {
            padding: 80px 8%;
            background: var(--bg-white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 35px 20px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 35px rgba(139, 111, 71, 0.1);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* ========================= SECTION TITLE ========================= */
        .section-header {
            margin-bottom: 60px;
            text-align: center;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--text-primary);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* // */
       /* MAIN SECTION */
.area-section {
    width: 100%;
    padding: 60px 6%;
    background: #f7f3ee; /* light warm bg */
    box-sizing: border-box;
}

/* COMMON ROW STYLE */
.area-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Alternate row – reverse on desktop */
/* .area-row-alt {
    flex-direction: row-reverse;
} */

/* COLUMNS */
.area-col {
    flex: 1;
}

/* IMAGE WRAP */
.area-image-wrap {
    overflow: hidden;
    border-radius: 16px;
}

.area-image-wrap img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.area-image-wrap:hover img {
    transform: scale(1.06);
}

/* TEXT SIDE */
.area-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    position: relative;
}

.area-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d4af37, #8b7355);
}

.area-subtitle {
    font-size: 15px;
    color: #666;
    margin: 20px 0;
}

/* LIST */
.area-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.area-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.area-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #d4af37; /* gold accent */
}

/* ========= RESPONSIVE ========= */

/* Tablet */
@media (max-width: 992px) {
    .area-row,
    .area-row-alt {
        flex-direction: column;
        padding: 24px;
    }

    .area-heading {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .area-section {
        padding: 40px 4%;
    }

    .area-row,
    .area-row-alt {
        gap: 24px;
        margin-bottom: 35px;
        padding: 20px;
    }

    .area-heading {
        font-size: 22px;
    }

    .area-subtitle {
        font-size: 14px;
    }

    .area-list li {
        font-size: 14px;
    }
}


        /* ========================= FEATURES SECTION ========================= */
        .features-section {
            padding: 120px 8%;
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.03) 0%, rgba(212, 165, 116, 0.03) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-card {
            background: var(--bg-white);
            padding: 45px 30px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 111, 71, 0.1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(212, 165, 116, 0.2);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .feature-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ========================= GALLERY SECTION – NEW DESIGN ========================= */
        .gallery-section {
            padding: 120px 8%;
            background: var(--bg-white);
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: 1.7fr 1.1fr;
            gap: 24px;
            align-items: stretch;
        }

        .gallery-main,
        .gallery-thumb {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-light);
            cursor: pointer;
        }

        .gallery-main {
            min-height: 380px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .gallery-main img,
        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            display: block;
        }

        .gallery-main:hover img,
        .gallery-thumb:hover img {
            transform: scale(1.05);
        }

        .gallery-thumbs {
            display: grid;
            grid-template-rows: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.05)
            );
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-main:hover .gallery-overlay,
        .gallery-thumb:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-tag {
            display: inline-block;
            padding: 4px 10px;
            font-size: 0.8rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            margin-bottom: 6px;
        }

        .gallery-caption {
            font-size: 0.95rem;
            color: #fff;
            font-weight: 500;
        }
/* Zoom-in effect for all gallery images */
.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    transition: transform 0.6s ease; 
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.12); /* zoom in */
}

/* Optional: smooth overlay fade*/
.gallery-item .gallery-overlay {
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/* Wrapper Section */
.brochure-download-section {
    width: 100%;
    text-align: center;
    margin: 30px 0;
}


        /* ========================= AMENITIES SECTION ========================= */
        .amenities-section {
            padding: 120px 8%;
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .amenity-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .amenity-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 10px 25px rgba(139, 111, 71, 0.1);
        }

        .amenity-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 165, 116, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .amenity-info h4 {
            font-size: 1.05rem;
            margin-bottom: 5px;
            color: var(--text-primary);
        }

        .amenity-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        /*  */
        /* ========================= VIDEO / WALKTHROUGH SECTION ========================= */
.video-section {
    padding: 120px 8%;
    background: var(--bg-white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-block {
    position: relative;
    width: 100%;
    /* 16:9 ratio for YouTube */
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-block iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


        /* ========================= LOCATION SECTION ========================= */
        .location-section {
            padding: 120px 8%;
            background: var(--bg-white);
        }

        .map-wrapper {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            height: 500px;
            margin-bottom: 40px;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .location-card {
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
            padding: 30px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
        }

        .location-card h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 700;
        }

        .location-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ========================= CONTACT SECTION ========================= */
        .contact-section {
            padding: 120px 8%;
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, rgba(212, 165, 116, 0.08) 100%);
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg-white);
            padding: 50px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .agent-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--accent-color);
            object-fit: cover;
        }

        .contact-container h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--text-primary);
        }

        .contact-container p {
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .contact-phone {
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 25px;
        }

        .contact-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .action-btn {
            flex: 1;
            min-width: 100px;
            padding: 12px 18px;
            background: var(--primary-color);
            color: var(--bg-white);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .action-btn.secondary {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .action-btn.secondary:hover {
            background: var(--primary-color);
            color: var(--bg-white);
            border-color: var(--primary-color);
        }

        /* ========================= CTA SECTION ========================= */
        .cta-section {
            padding: 100px 8%;
            background: var(--primary-color);
            color: var(--bg-white);
            text-align: center;
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .cta-desc {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            padding: 16px 40px;
            background: var(--bg-white);
            color: var(--primary-color);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* ========================= FOOTER ========================= */
        .footer {
            padding: 40px 8%;
            background: var(--text-primary);
            color: var(--bg-light);
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ========================= SCROLL REVEAL ANIMATIONS ========================= */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            will-change: opacity, transform;
        }

        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================= RESPONSIVE ========================= */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-image {
                height: 350px;
            }

            .gallery-layout {
                grid-template-columns: 1fr;
            }

            .gallery-main {
                min-height: 320px;
            }

            .gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: none;
            }
        }

        /* 🔹 MOBILE "SWIPER" EFFECT – section by section */
        @media (max-width: 768px) {
            /* Enable vertical scroll-snap so each section behaves like a slide */
            html, body {
                height: 100%;
                scroll-snap-type: y mandatory;
                scroll-behavior: smooth;
                overscroll-behavior-y: contain;
            }

            section {
                scroll-snap-align: start;
                scroll-snap-stop: always;
            }

            .navbar {
                padding: 0 5%;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .location-info {
                grid-template-columns: 1fr;
            }

            /* Make each major section at least full viewport height for slide feel */
            .hero,
            .stats-section,
            .features-section,
            .gallery-section,
            .amenities-section,
            .cta-section,
            .location-section,
            .contact-section {
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.6rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            /* Mobile-friendly gallery: main image + horizontal scroll thumbs */
            .gallery-main {
                min-height: 260px;
            }

            .gallery-thumbs {
                display: flex;
                gap: 12px;
                overflow-x: auto;
                padding: 10px 4px 0;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }

            .gallery-thumbs::-webkit-scrollbar {
                display: none;
            }

            .gallery-thumb {
                flex: 0 0 100%;
                min-height: 180px;
                scroll-snap-align: center;
            }

            .contact-container {
                padding: 30px 20px;
            }

            .action-btn {
                padding: 2px 5px;
            }
        }
@media (max-width: 480px) {
    .video-section {
        padding: 80px 5%;
    }
}
@media (max-width: 992px) {

    .footer {
        padding: 35px 6%;
        font-size: 0.9rem;
        text-align: center;
        opacity: 0.9;
    }

    .footer p,
    .footer span,
    .footer a {
        margin: 4px 0;
        font-size: 0.95rem;
        display: block;  /* keeps it clean */
    }
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 600px) {

    .footer {
        padding: 25px 6%;
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: center;
        opacity: 1; /* More readable on mobile */
    }

    .footer p,
    .footer span,
    .footer a {
        display: block;
        margin: 6px 0;
        font-size: 0.9rem;
    }

    .footer a {
        text-decoration: none;
        color: var(--bg-light);
        opacity: 0.9;
    }

    .footer a:hover {
        opacity: 1;
    }