/* ==========================================================================
   GAUR ASPIRE CENTURIAN PARK - STYLING ARCHITECTURE (LIGHT LUXURY RESORT RESIDENCE)
   Typography: Cinzel & Montserrat | Palette: Luxury Gold, Warm Sand & Gaurs Leaf Green
   NO DARK DESIGN ELEMENTS - Crispy, Airy, Light & Premium Atmosphere
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL SYSTEM SETTINGS & VARIABLES (LIGHT SYSTEM)
   -------------------------------------------------------------------------- */
:root {
    /* Primary Light Colors */
    --color-dark-bg: #FAF8F5;
    /* Warm Soft Sand */
    --color-dark-card: #FFFFFF;
    /* Pure White Card */
    --color-light-bg: #FFFFFF;
    /* Pristine White */
    --color-light-sec: #F7F4EF;
    /* Sand Cream */
    --color-forest-green: #F3EFE7;
    /* Biophilic Light Sand */

    /* Luxury Accents */
    --color-gold: #c5a880;
    /* Warm Sand Gold */
    --color-gold-hover: #b4966e;
    --color-green: #5ba827;
    /* Leaf Green from Gaurs Logo */
    --color-green-hover: #4a8b20;
    --color-green-light: rgba(91, 168, 39, 0.1);

    /* Text Colors (High Contrast Slate-Charcoal) */
    --text-light-primary: #1a202c;
    /* Reversed for Light Theme */
    --text-light-secondary: #4a5568;
    --text-dark-primary: #1a202c;
    --text-dark-secondary: #718096;

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light-bg);
    color: var(--text-dark-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY & LAYOUT HIGHLIGHTS
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--text-dark-primary);
}

p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* Common Section Headers */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-green);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    padding: 0 15px;
    margin-bottom: 12px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 1px;
    background-color: var(--color-green);
    top: 50%;
}

.section-subtitle::before {
    left: 0;
}

.section-subtitle::after {
    right: 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 auto;
}

.divider.align-left {
    margin: 0;
}

.section-desc {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--text-dark-secondary);
}

/* --------------------------------------------------------------------------
   3. LUXURY CUSTOM MOUSE CURSOR TRAIL
   -------------------------------------------------------------------------- */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

@media (max-width: 1024px) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION LAYOUT (LIGHT AIRY SYSTEM)
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.12);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--color-light-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark-primary);
    line-height: 1;
    letter-spacing: 2px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 3px;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark-secondary);
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark-primary);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    color: var(--color-gold);
}

/* Button UI exactly like Eldeco demo */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn {
    text-decoration: none;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    background-color: transparent;
    border: 1.5px solid var(--color-gold);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background-color: var(--color-gold);
    color: #fff;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.45);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: #fff;
}

.nav-btn-mobile {
    display: none;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark-primary);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   5. HERO SPLIT GRID SECTION (LIGHT LUXURY RESORT ESTATE STYLE)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-split-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 50px;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

/* OLD hero-split-left — neutralized (new design uses hero-left) */
.hero-split-left {
    color: inherit;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 168, 128, 0.08);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.inline-pin {
    color: var(--color-gold);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--text-dark-primary);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}

.hero-badges-row {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.9);
}

.badge-price {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.badge-poss {
    border-color: var(--color-green);
    color: var(--color-green);
}

.hero-tagline {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Three mini card boxes at the bottom left */
.hero-highlights-boxes {
    display: flex;
    gap: 20px;
}

.hero-mini-card {
    background-color: var(--color-dark-card);
    border: 1.5px solid rgba(197, 168, 128, 0.15);
    border-top: 3px solid var(--color-gold);
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.hero-mini-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.12);
}

.mini-card-icon {
    font-size: 1.6rem;
    color: var(--color-gold);
}

.hero-mini-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 2px;
}

.hero-mini-card p {
    font-size: 0.72rem;
    color: var(--text-dark-secondary);
    margin-bottom: 0;
}

/* Floating Enquiry Form Box on the right (Clean Light Theme) */
.hero-split-right {
    display: flex;
    justify-content: flex-end;
}

.hero-floating-form {
    background-color: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(197, 168, 128, 0.25);
    border-radius: 8px;
    padding: 35px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    border-top: 4px solid var(--color-gold);
}

.floating-form-header {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.floating-form-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 6px;
}

.floating-form-header p {
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
}

.hero-floating-form .input-group input,
.hero-floating-form .input-group select {
    background-color: var(--color-light-sec);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark-primary);
}

.hero-floating-form .input-group input:focus,
.hero-floating-form .input-group select:focus {
    background-color: var(--color-light-bg);
    border-color: var(--color-gold);
}

.hero-floating-form .input-group label {
    color: var(--text-dark-secondary);
}

.hero-floating-form .input-group input:focus+label,
.hero-floating-form .input-group input:not(:placeholder-shown)+label {
    background-color: #fff;
}

.hero-split-dots {
    bottom: 40px;
    left: 40px;
}

/* --------------------------------------------------------------------------
   6. METRICS / RERA REGISTER STRIP (LIGHT LUXURY THEME)
   -------------------------------------------------------------------------- */
.metrics-strip {
    background-color: var(--color-light-sec);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding: 40px 0;
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-box {
    text-align: center;
    border-right: 1px solid rgba(197, 168, 128, 0.15);
}

.metric-box:last-child {
    border-right: none;
}

.metric-box h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark-primary);
}

.metric-box p {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* --------------------------------------------------------------------------
   7. OVERVIEW SECTION (LIGHT LUXURY RESORT)
   -------------------------------------------------------------------------- */
.overview-section {
    background-color: var(--color-forest-green);
    position: relative;
    overflow: hidden;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(197, 168, 128, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.overview-text .lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark-primary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.overview-text p {
    color: var(--text-dark-secondary);
    margin-bottom: 30px;
}

/* Elegant gold highlights list */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.08);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    margin-bottom: 0;
}

/* Overlapping Image presentation */
.overview-images {
    position: relative;
    height: 480px;
}

.image-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overview-images .main-img {
    width: 80%;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.overview-images .sub-img {
    width: 60%;
    height: 240px;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.badge-accent {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: var(--color-gold);
    color: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.2);
    z-index: 4;
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-txt {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

.hover-zoom {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-wrapper:hover .hover-zoom {
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   8. AMENITIES SECTION
   -------------------------------------------------------------------------- */
.amenities-section {
    background-color: var(--color-light-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.amenity-card {
    background-color: var(--color-light-sec);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.08);
    border-color: rgba(197, 168, 128, 0.35);
}

.amenity-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.amenity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-img-box img {
    transform: scale(1.08);
}

.amenity-info {
    padding: 30px;
}

.amenity-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.amenity-icon-svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.amenity-info h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark-primary);
}

.amenity-info p {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

.amenities-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.highlight-item-pill {
    background-color: var(--color-light-sec);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.highlight-item-pill:hover {
    background-color: var(--color-light-bg);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE FLOOR PLANS SECTION (BLURRED SCHEMATIC CARDS - LIGHT THEME)
   -------------------------------------------------------------------------- */
.floor-plans-section {
    background-color: var(--color-light-sec);
}

.tab-container {
    background-color: var(--color-light-bg);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(197, 168, 128, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: 1.5px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1.5px solid rgba(197, 168, 128, 0.2);
    color: var(--text-dark-secondary);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floorplan-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 50px;
    align-items: center;
}

.floorplan-details h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 25px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-detail {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 10px;
}

.spec-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.spec-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark-primary);
}

.price-box {
    margin-bottom: 35px;
    background-color: var(--color-light-sec);
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 5px;
}

.floorplan-preview {
    display: flex;
    justify-content: center;
}

.schematic-placeholder {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1.15;
    background: var(--color-light-sec);
    border-radius: 8px;
    border: 2px solid rgba(197, 168, 128, 0.25);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.schematic-layout {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    filter: blur(1.8px) grayscale(40%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.schematic-placeholder:hover .schematic-layout {
    filter: blur(0) grayscale(0);
    opacity: 1;
}

.sch-room {
    background-color: #fff;
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark-primary);
    font-size: 0.7rem;
    font-weight: 600;
}

.sch-room.master-bed {
    grid-row: 1 / 3;
    grid-column: 1;
}

.sch-room.bed-2 {
    grid-row: 1;
    grid-column: 2;
}

.sch-room.bed-3 {
    grid-row: 2;
    grid-column: 2;
}

.sch-room.bed-4 {
    grid-row: 3;
    grid-column: 2;
}

.sch-room.study {
    grid-row: 3;
    grid-column: 1;
}

.sch-room.living-dining {
    grid-row: 1 / 3;
    grid-column: 3;
}

.sch-room.kitchen {
    grid-row: 3;
    grid-column: 3;
}

.click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-dark-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.schematic-placeholder:hover .click-overlay {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
}

.btn-circle-plus {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.25);
    transition: var(--transition-smooth);
}

.schematic-placeholder:hover .btn-circle-plus {
    transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   10. LIGHTBOX GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-section {
    background-color: var(--color-light-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
}

.gallery-filters .filter-btn {
    background: transparent;
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--text-dark-secondary);
    padding: 10px 22px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1.4;
    border: 1px solid rgba(197, 168, 128, 0.15);
    display: none;
}

.gallery-item.show {
    display: block;
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: #fff;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-hover-text h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 4px;
}

.gallery-hover-text p {
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
}

/* --------------------------------------------------------------------------
   11. LOCATION advantages & VECTOR MAP
   -------------------------------------------------------------------------- */
.location-section {
    background-color: var(--color-light-sec);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-details h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 20px;
}

.location-details .lead-text {
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
    margin-bottom: 35px;
}

.connectivity-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.con-category h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.con-cat-icon {
    color: var(--color-gold);
}

.con-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.con-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    border-bottom: 1px dashed rgba(197, 168, 128, 0.25);
    padding-bottom: 8px;
    transition: var(--transition-smooth);
}

.con-category li:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
    padding-left: 5px;
}

.time-badge {
    background-color: var(--color-light-bg);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    color: var(--color-green);
    font-size: 0.75rem;
}

/* Vector route map layout and ping overlays */
.location-map {
    width: 100%;
}

.map-placeholder {
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid rgba(197, 168, 128, 0.25);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.luxury-map {
    height: 380px;
    width: 100%;
}

.vector-map-svg {
    width: 100%;
    height: 100%;
}

.ping-circle {
    transform-origin: center;
    animation: pulseGlow 3s infinite ease-in-out;
}

.ping-circle-inner {
    transform-origin: center;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
}

.map-actions {
    padding: 20px;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    display: flex;
    justify-content: center;
}

.map-btn-icon {
    margin-right: 8px;
}

/* --------------------------------------------------------------------------
   12. PRIVATE ENQUIRY FORM (CREAM SAND LAYOUT - NO DARK COLORS)
   -------------------------------------------------------------------------- */
.enquiry-section {
    background-color: var(--color-dark-bg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.enquiry-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enquiry-info .lead-text {
    font-size: 1.1rem;
    color: var(--text-dark-secondary);
    margin-bottom: 40px;
}

.perk-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.perk-item {
    display: flex;
    gap: 15px;
}

.perk-icon {
    color: var(--color-green);
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 2px;
}

.perk-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 4px;
}

.perk-item p {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
}

.direct-contact-box {
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    padding-top: 30px;
}

.direct-contact-box p {
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
    margin-bottom: 12px;
}

.phone-call-card {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.phone-call-card:hover {
    color: var(--text-dark-primary);
}

/* Floating White Contact Form styling exactly like Eldeco demo */
.enquiry-form-wrapper {
    background-color: var(--color-light-bg);
    border-radius: 8px;
    padding: 40px;
    border: 2.5px solid rgba(197, 168, 128, 0.25);
    box-shadow: 0 20px 50px rgba(197, 168, 128, 0.1);
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--color-light-sec);
    color: var(--text-dark-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    outline: none;
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-group label.select-label {
    top: 25%;
    display: none;
}

.input-group select:focus+.select-label,
.input-group select:valid+.select-label {
    display: block;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--color-gold);
    background-color: var(--color-light-bg);
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gold);
    background-color: var(--color-light-bg);
    padding: 0 6px;
    transform: translateY(-50%);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-label {
    position: static !important;
    transform: none !important;
    font-size: 0.72rem !important;
    color: var(--text-dark-secondary) !important;
    pointer-events: auto !important;
}

.btn-block {
    width: 100%;
    padding: 15px 0;
    font-size: 0.85rem;
}

.btn-submit {
    position: relative;
}

.btn-submit.loading span:first-child {
    opacity: 0;
}

.btn-spinner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    animation: spin 0.8s linear infinite;
    transition: var(--transition-smooth);
}

.btn-submit.loading .btn-spinner {
    opacity: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.success-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    color: var(--color-green);
    margin-bottom: 15px;
}

.success-msg h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 10px;
}

.success-msg p {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
}

/* --------------------------------------------------------------------------
   13. PREMIUM FOOTER SECTION (NO DARK BACKGROUND)
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-light-sec);
    border-top: 2px solid var(--color-gold);
    color: var(--text-dark-primary);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 55px;
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.brand-col .brand-desc {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.7;
}



.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a::before {
    content: '\203A';
    margin-right: 8px;
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: bold;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.address-p {
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.address-p strong {
    color: var(--text-dark-primary);
}

.footer-bottom {
    background-color: #FAF8F5;
    padding: 40px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.disclaimer-p {
    font-size: 0.7rem;
    color: var(--text-dark-secondary);
    line-opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 25px;
}

.disclaimer-p strong {
    color: var(--text-dark-primary);
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 20px;
}

.copyright-p {
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
}

/* --------------------------------------------------------------------------
   14. INTERACTIVE MODAL OVERLAYS — Premium Compact Redesign
   -------------------------------------------------------------------------- */

/* ---- Base modal overlay ---- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* Frosted glass backdrop */
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 40, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ---- Wrapper: compact, centered card ---- */
.modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    z-index: 2;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.35s ease;
}

.modal.active .modal-wrapper {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ---- Card box ---- */
.modal-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 36px 28px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 50px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(197, 168, 128, 0.18);
    position: relative;
    overflow: hidden;
}

/* Subtle left-edge gold accent stripe */
.modal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #c5a880 0%, #b4966e 100%);
    border-radius: 18px 0 0 18px;
}

/* ---- Close button — pill style, top-right ---- */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    background: #f7f4ef;
    border: 1.5px solid rgba(197, 168, 128, 0.35);
    color: #718096;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.modal-close:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    color: #ffffff;
    transform: rotate(90deg) scale(1.05);
}

/* ---- Header ---- */
.modal-header {
    padding-left: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.12);
}

.modal-subtitle {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    color: #c5a880;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.modal-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.modal-header p {
    font-size: 0.82rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.modal-header strong {
    color: var(--color-green);
    font-weight: 700;
}

/* ---- Body (blueprint / content area) ---- */
.modal-body {
    background: #f7f4ef;
    border-radius: 10px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
    margin-bottom: 6px;
}

.blueprint-vector-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Footer ---- */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(197, 168, 128, 0.12);
    gap: 14px;
    flex-wrap: wrap;
}

.footnote {
    font-size: 0.68rem;
    color: #a0aec0;
    line-height: 1.5;
    flex: 1 1 180px;
}

/* ---- Mobile responsive ---- */
@media (max-width: 600px) {
    .modal-wrapper {
        max-width: 100% !important;
    }

    .modal-box {
        padding: 26px 20px 22px !important;
        border-radius: 14px !important;
    }

    .modal-header {
        padding-left: 10px !important;
    }

    .modal-header h3 {
        font-size: 1.15rem !important;
    }

    .modal-body {
        height: 240px !important;
    }

    .modal-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .footnote {
        flex: unset !important;
    }

    .modal-footer .btn {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Portrait phones (≤480px): lock popup image to aspect-ratio-safe height */
@media (max-width: 480px) {
    .popup-wrapper-wide {
        max-width: 98vw !important;
        width: 98vw !important;
    }

    .popup-flyer-img {
        width: 100% !important;
        height: auto !important;
        /* 62vw ≈ 98vw / 1.62 — exact aspect ratio on phone width */
        max-height: 62vw !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .popup-action-buttons {
        padding: 10px 12px !important;
        gap: 6px !important;
    }

    .popup-action-buttons .btn {
        font-size: 0.68rem !important;
        padding: 9px 10px !important;
        letter-spacing: 0.8px !important;
        max-width: none !important;
    }
}


/* --------------------------------------------------------------------------
   14A. ONLOAD VIP FLYER POPUP — Aspect-ratio-aware (1280×789 landscape image)
   -------------------------------------------------------------------------- */

/* Popup wrapper: sized to the image's ~1.62:1 aspect ratio.
   Max-width 820px lets the popup breathe on desktop without overflowing.
   We use min() so it never exceeds 96vw on any screen. */
.popup-wrapper-wide {
    max-width: min(820px, 96vw) !important;
    width: 100% !important;
}

/* Box: zero padding so image fills edge-to-edge */
.popup-box-split {
    padding: 0 !important;
    overflow: hidden;
    border: 2px solid var(--color-gold) !important;
    border-radius: 14px !important;
    position: relative;
    background: #000;
    /* Reserve the image height automatically via aspect ratio.
       The image itself will dictate height; buttons sit below it. */
    display: flex;
    flex-direction: column;
}

/* Close button — visible over the image in the top-right corner */
.popup-close-modern {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    background-color: rgba(255, 255, 255, 0.92) !important;
    border: 2px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    z-index: 1005 !important;
    transition: var(--transition-bounce) !important;
    backdrop-filter: blur(4px) !important;
}

.popup-close-modern:hover {
    background-color: var(--color-gold) !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Image wrapper: let the image define its own height naturally */
.onload-promo-poster {
    width: 100%;
    display: block;
    line-height: 0;   /* remove inline gap below img */
    flex: 1 1 auto;
}

/* The flyer image:
   - width: 100% fills the popup width
   - height: auto preserves the 1280×789 aspect ratio exactly
   - object-fit: cover fills the full container without letterboxing
   - max-height constraint keeps it within ~85vh on tall monitors */
.popup-flyer-img {
    width: 100%;
    height: auto;
    max-height: 78vh;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Action buttons bar */
.popup-action-buttons {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    background-color: #ffffff;
    border-top: 1px solid rgba(197, 168, 128, 0.18);
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.popup-action-buttons .btn {
    flex: 1;
    max-width: 220px;
    text-align: center;
    font-size: 0.8rem;
    padding: 12px 16px;
    white-space: nowrap;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.popup-action-buttons .btn-popup-call {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-hover) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(91, 168, 39, 0.2);
}

.popup-action-buttons .btn-popup-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 168, 39, 0.35);
}

.popup-action-buttons .btn-popup-enquiry {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.popup-action-buttons .btn-popup-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.45);
}

/* --------------------------------------------------------------------------
   14B. FLOATING MESSAGING ACTIONS (STICKY WHATSAPP & FLUTTER MESSAGE CHAT)
   -------------------------------------------------------------------------- */
.floating-actions-bar {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.floating-btn {
    background: #c5a880;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.3);
    position: relative;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.08);
}

.btn-whatsapp {
    background-color: var(--color-green);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Flutter animation floating message button */
.btn-message {
    background-color: var(--color-gold);
    border: 1.5px solid #ffffff;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
    animation: flutter 3s infinite ease-in-out;
    /* Smooth flutter animation */
}

.btn-message:hover {
    background-color: var(--color-gold-hover);
}

@keyframes flutter {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0);
    }

    20% {
        transform: translateY(-6px) scale(1.04) rotate(-3deg);
    }

    40% {
        transform: translateY(-2px) scale(1.02) rotate(3deg);
    }

    60% {
        transform: translateY(-5px) scale(1.03) rotate(-2deg);
    }

    80% {
        transform: translateY(-1px) scale(1.01) rotate(2deg);
    }
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--text-dark-primary);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid var(--color-gold);
    opacity: 0;
    pointer-events: none;
    transform: translateX(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Surrounding ripple rings for visual attraction */
.ripple-ring {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    border: 1px solid var(--color-green);
    pointer-events: none;
    opacity: 0;
}

.ring-1 {
    animation: rippleRing 2.4s infinite ease-out;
}

.ring-2 {
    animation: rippleRing 2.4s infinite ease-out 1.2s;
}

@keyframes rippleRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   15. INTERSECTION OBSERVER SCROLL REVEALS
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   16. PIXEL-PERFECT RESPONSIVE BREAKPOINTS (LIGHT THEME)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .overview-grid {
        gap: 40px;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floorplan-card {
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .logo-brand {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.55rem;
    }

    .phone-link span,
    .header-actions .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background-color: var(--color-light-bg);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(197, 168, 128, 0.15);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        color: var(--text-dark-primary);
    }

    .nav-btn-mobile {
        display: block !important;
        background-color: var(--color-gold) !important;
        color: #fff !important;
        border-radius: 4px;
        padding: 12px 40px !important;
    }

    /* Sections */
    .hero-section {
        height: auto;
        padding: 120px 0 80px 0;
    }

    .hero-split-container {
        margin-top: 0;
        padding: 0 20px;
    }

    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-split-left {
        text-align: center;
        padding: 20px;
    }

    .hero-location-badge {
        align-self: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .hero-badges-row {
        justify-content: center;
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights-boxes {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-mini-card {
        min-width: 140px;
        padding: 12px 15px;
    }

    .hero-split-right {
        justify-content: center;
    }

    .hero-floating-form {
        max-width: 100%;
    }

    /* Tablet/mobile popup: full-width, image natural height, compact buttons */
    .popup-wrapper-wide {
        max-width: 98vw !important;
        width: 98vw !important;
    }

    .popup-box-split {
        border-radius: 10px !important;
    }

    .popup-close-modern {
        top: 10px !important;
        right: 10px !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 1.4rem !important;
    }

    .popup-flyer-img {
        width: 100% !important;
        height: auto !important;
        max-height: 60vw !important;  /* keeps 1.62:1 ratio on tablet */
        object-fit: cover !important;
    }

    .popup-action-buttons {
        padding: 10px 14px !important;
        gap: 8px !important;
    }

    .popup-action-buttons .btn {
        font-size: 0.72rem !important;
        padding: 10px 12px !important;
        letter-spacing: 1px !important;
        max-width: none !important;
    }

    .metrics-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .metric-box:nth-child(2) {
        border-right: none;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-images {
        height: 380px;
    }

    .floorplan-card {
        grid-template-columns: 1fr;
    }

    .floorplan-preview {
        margin-top: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-grid {
        grid-template-columns: 1fr;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modal-wrapper {
        width: 95%;
    }

    .modal-box {
        padding: 25px 20px;
    }

    .modal-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .metrics-container {
        grid-template-columns: 1fr;
    }

    .metric-box {
        border-right: none;
        border-bottom: 1px solid rgba(197, 168, 128, 0.15);
        padding-bottom: 15px;
    }

    .metric-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-direction: column;
        align-items: stretch;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   HERO BANNER REFERENCE MATCH — Exact Eldeco 7 Peaks Residences Layout
   ========================================================================== */

/* ---- HEADER: Transparent with two dual CTA buttons ---- */
.header {
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15) !important;
}

/* Logo box — white card with border exactly like 7 Peaks */
.logo-box {
    background-color: #ffffff;
    border: 1.5px solid rgba(197, 168, 128, 0.35);
    border-radius: 6px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.logo-box .logo-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: 3px;
}

.logo-box .logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1px;
}

.logo-box .logo-loc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.48rem;
    font-weight: 600;
    color: var(--text-dark-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Scrolled header: nav links go dark */
.header.scrolled .nav-link {
    color: var(--text-dark-secondary);
}

.header.scrolled .nav-link:hover {
    color: var(--color-gold);
}

/* Default transparent header: nav links go white */
.header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
    color: #ffffff;
}

/* Header CTA Buttons */
.hdr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Call Now — solid dark navy */
.hdr-btn-call {
    background-color: var(--color-green);
    color: #ffffff;
    border: 2px solid var(--color-green);
}

.hdr-btn-call:hover {
    background-color: var(--color-green-hover);
    border-color: var(--color-green-hover);
    transform: translateY(-1px);
}

/* Book Site Visit — ghost white outlined */
.hdr-btn-ghost {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hdr-btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

.header.scrolled .hdr-btn-ghost {
    color: var(--color-green);
    border-color: var(--color-green);
}

.header.scrolled .hdr-btn-ghost:hover {
    background-color: var(--color-green);
    color: #ffffff;
}

/* ---- HERO SECTION: Full-screen with overlay ---- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background slides — no gradient baked in, overlay is separate */
.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

/* Dark overlay — controls depth like reference image (moody dusk sky) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(10, 14, 28, 0.72) 0%,
            rgba(10, 14, 28, 0.55) 55%,
            rgba(10, 14, 28, 0.25) 100%);
    z-index: 3;
}

/* Content wrapper sits above overlay */
.hero-content-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 40px 70px;
}

/* Two-column grid — left bigger, right card */
.hero-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* ---- LEFT SIDE ---- */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    position: relative;
    z-index: 6;
}

/* Glassmorphic location pill — FIXED visibility */
.hero-loc-pill {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 50px;
    /* margin-bottom: 24px; */
    width: fit-content;
    max-width: 100%;
    position: relative;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* MASSIVE bold heading exactly like reference */
.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 1px;
    letter-spacing: -0.5px;
}

/* Gold subtitle tagline */
.hero-tagline-txt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(197, 168, 128, 0.95);
    line-height: 1.65;
    margin-bottom: 10px;
    max-width: 540px;
}

/* Price on Request + Possession row */
.hero-price-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 6px;
}

.hero-price-btn {
    display: inline-block;
    background-color: var(--color-green);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-price-btn:hover {
    background-color: var(--color-green-hover);
    transform: translateY(-2px);
}

/* Possession card — bordered gray card like reference */
.hero-poss-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(6px);
}

.poss-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.poss-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

/* Three icon stat cards row */
.hero-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 14px 20px;
    backdrop-filter: blur(6px);
    flex: 1;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.stat-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    opacity: 0.9;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.stat-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Bottom dual CTA buttons */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-dark {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-green);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-dark:hover {
    background-color: var(--color-green-hover);
    transform: translateY(-2px);
}

.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 13px 26px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ---- RIGHT SIDE: White Glassmorphic Enquiry Card ---- */
.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-enquiry-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 30px 24px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.enquiry-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a202c;
    text-align: center;
    margin-bottom: 22px;
    letter-spacing: 0;
}

/* Form layout */
.enquiry-card-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Each input field row with leading icon */
.ecard-field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 11px 14px;
    transition: border-color 0.3s ease;
}

.ecard-field:focus-within {
    border-color: var(--color-green);
    background: #fff;
}

.ecard-field-ta {
    align-items: flex-start;
}

.ecard-icon {
    color: #9aa0b0;
    flex-shrink: 0;
}

.ecard-field input,
.ecard-field textarea {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: #1a202c;
    outline: none;
    resize: none;
}

.ecard-field input::placeholder,
.ecard-field textarea::placeholder {
    color: #9aa0b0;
    font-weight: 400;
}

/* Submit button — dark navy full-width rounded */
.btn-submit-card {
    width: 100%;
    padding: 14px 0;
    background-color: var(--color-green);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.btn-submit-card:hover {
    background-color: var(--color-green-hover);
    transform: translateY(-1px);
}

.btn-submit-card.loading span:first-child {
    opacity: 0;
}

/* Privacy note */
.enquiry-privacy {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 12px;
}

/* Slide indicator dots */
.hero-slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 6;
}

.hdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hdot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* ---- RESPONSIVE: Hero ---- */
@media (max-width: 1024px) {
    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content-wrap {
        padding: 100px 30px 60px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero-enquiry-card {
        max-width: 100%;
    }

    .hero-stats-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.4rem;
    }

    .hero-stats-row {
        gap: 10px;
    }

    .hero-stat-card {
        padding: 10px 14px;
    }

    .stat-val {
        font-size: 0.9rem;
    }

    .hero-price-row {
        flex-wrap: wrap;
    }

    .hero-cta-row {
        flex-wrap: wrap;
    }

    .hero-content-wrap {
        padding: 90px 20px 50px;
    }

    .hdr-btn {
        padding: 8px 14px;
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-stats-row {
        flex-direction: column;
    }

    .hero-stat-card {
        flex: unset;
        width: 100%;
    }
}

/* ==========================================================================
   REAL LOGO IMAGE — Header & Footer
   ========================================================================== */

/* Header logo image wrapper — white card so logo reads over dark hero */
.logo-img-box {
    border-radius: 8px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.logo-img-box:hover,
a:hover .logo-img-box {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

/* The actual image — constrained height, auto width */
.logo-img {
    height: 68px;
    width: auto;
    max-width: 170px;
    display: block;
    object-fit: contain;
}

/* Footer logo link — no underline */
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
}

/* Footer logo image — slightly larger, white background pill */
.footer-logo-img {
    height: 68px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
   
}

/* ==========================================================================
   OVERVIEW SECTION — Dark Forest Green Split Layout (Eldeco Reference)
   ========================================================================== */

.overview-section {
    background-color: #0d1a0d;
    background-image:
        linear-gradient(rgba(10, 22, 10, 0.78) 0%,
            rgba(10, 22, 10, 0.72) 50%,
            rgba(10, 22, 10, 0.82) 100%),
        url('assets/leaves-bg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    padding: 90px 0 !important;
}

.overview-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.overview-inner {
    position: relative;
    z-index: 2;
}

/* Two-column split */
.overview-split-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* LEFT image card */
.overview-img-col {
    display: flex;
    justify-content: center;
}

.ov-img-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.06);
}

.ov-main-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.ov-img-card:hover .ov-main-img {
    transform: scale(1.04);
}

.ov-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.88) 100%);
    padding: 28px 20px 20px;
}

.ov-project-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ov-badge-icon {
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
}

.ov-badge-text {
    display: flex;
    flex-direction: column;
}

.ov-badge-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.2;
}

.ov-badge-loc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 1.5px;
}

.ov-badge-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-top: 2px;
}

/* RIGHT content */
.overview-content-col {
    display: flex;
    flex-direction: column;
}

.ov-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ov-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #c5a880;
    margin-bottom: 16px;
}

.ov-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 14px;
}



.ov-btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ov-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ov-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.ov-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO LOCATION PILL — Responsive fixes for all devices
   ========================================================================== */

/* Tablet / mid-size — allow wrapping so pill doesn't overflow */
@media (max-width: 768px) {
    .hero-loc-pill {
        white-space: normal !important;
        font-size: 0.76rem !important;
        padding: 8px 16px !important;
        margin-bottom: 18px !important;
        max-width: 90vw !important;
    }
}

/* Small phones — even more compact */
@media (max-width: 420px) {
    .hero-loc-pill {
        font-size: 0.7rem !important;
        padding: 7px 13px !important;
        gap: 6px !important;
    }

    /* Shrink pin icon */
    .hero-loc-pill svg {
        width: 11px !important;
        height: 11px !important;
        flex-shrink: 0 !important;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS — Full Comprehensive Overhaul
   ========================================================================== */

/* ---- HAMBURGER BAR COLORS ---- */
.hamburger {
    display: none;
}

.hamburger .bar {
    background-color: #ffffff;
}

.header.scrolled .hamburger .bar {
    background-color: #1a202c;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex !important;
    }

    /* ---- MOBILE FULL-SCREEN SIDE MENU ---- */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 78% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background-color: #162816 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 85px 28px 40px !important;
        gap: 0 !important;
        z-index: 1100 !important;
        box-shadow: 6px 0 40px rgba(0, 0, 0, 0.5) !important;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        padding: 13px 0 !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        letter-spacing: 0.5px !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #c5a880 !important;
    }

    .nav-link::after {
        display: none !important;
    }

    /* Hide desktop header CTAs on mobile */
    .hdr-btn-call,
    .hdr-btn-ghost {
        display: none !important;
    }

    /* Hamburger → X animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* ---- OVERVIEW ---- */
    .overview-split-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .ov-img-card {
        max-width: 100% !important;
    }

    .ov-main-img {
        height: 280px !important;
    }

    .ov-heading {
        font-size: 1.7rem !important;
    }

    /* ---- HERO ---- */
    .hero-main-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .hero-content-wrap {
        padding: 90px 18px 45px !important;
    }

    .hero-heading {
        font-size: 2.2rem !important;
    }

    .hero-right {
        justify-content: stretch !important;
    }

    .hero-enquiry-card {
        max-width: 100% !important;
    }

    .hero-stats-row {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .hero-stat-card {
        flex: 1 1 calc(33% - 10px) !important;
        padding: 10px 12px !important;
    }

    .hero-price-row {
        flex-wrap: wrap !important;
    }

    /* ---- METRICS ---- */
    .metrics-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 18px !important;
    }

    .metric-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(197, 168, 128, 0.12) !important;
        padding-bottom: 14px !important;
    }

    /* ---- AMENITIES ---- */
    .amenities-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 18px !important;
    }

    /* ---- FLOOR PLANS ---- */
    .floorplan-card {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .tabs-header {
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    /* ---- GALLERY ---- */
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }

    .gallery-filters {
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    /* ---- LOCATION ---- */
    .location-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .luxury-map {
        height: 260px !important;
    }

    /* ---- ENQUIRY ---- */
    .enquiry-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .enquiry-form-wrapper {
        padding: 24px 18px !important;
    }

    /* ---- FOOTER ---- */
    .footer-main-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        padding-top: 45px !important;
        padding-bottom: 35px !important;
    }

    /* ---- MODAL ---- */
    .modal-wrapper {
        width: 96% !important;
    }

    .modal-box {
        padding: 22px 16px !important;
    }
}

@media (max-width: 560px) {
    .hero-heading {
        font-size: 1.85rem !important;
    }

    .hero-stat-card {
        flex: 1 1 calc(50% - 8px) !important;
    }

    .amenities-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-main-grid {
        grid-template-columns: 1fr !important;
    }

    .bottom-bar {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
    }

    .metrics-container {
        grid-template-columns: 1fr !important;
    }

    .ov-btn-row {
        flex-direction: column !important;
    }

    .ov-btn {
        justify-content: center !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   MOBILE BOTTOM FLOATING ACTION BAR (replaces corner bubbles on ≤768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* Convert vertical corner stack → full-width bottom bar */
    .floating-actions-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: unset !important;
        width: 100% !important;
        flex-direction: row !important;
        gap: 0 !important;
        z-index: 998 !important;
        border-top: 1.5px solid rgba(0, 0, 0, 0.15) !important;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18) !important;
        border-radius: 0 !important;
    }

    /* Each button = equal tab */
    .floating-btn {
        flex: 1 1 0 !important;
        height: 58px !important;
        width: auto !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        animation: none !important;
        flex-direction: column !important;
        gap: 4px !important;
        padding: 0 !important;
    }

    .btn-message {
        background-color: #c5a880 !important;
        border: none !important;
        border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
    }

    .btn-call {
        background-color: var(--color-green) !important;
        border: none !important;
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .btn-whatsapp {
        background-color: var(--color-green) !important;
        border: none !important;
    }

    /* Visible label under each icon */
    .floating-btn::after {
        content: attr(data-label);
        font-family: 'Montserrat', sans-serif;
        font-size: 0.55rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.8px !important;
        text-transform: uppercase !important;
        color: #ffffff !important;
        display: block !important;
        line-height: 1 !important;
    }

    /* Remove ripple rings — they break flat bar layout */
    .btn-whatsapp .ripple-ring {
        display: none !important;
    }

    /* Hide hover tooltips */
    .btn-tooltip {
        display: none !important;
    }

    /* Resize icons inside bar */
    .floating-btn svg {
        width: 22px !important;
        height: 22px !important;
    }

    /* Push page body up by bar height so footer isn't hidden */
    body {
        padding-bottom: 58px !important;
    }
}

/* Scoped Header styling for Thank You page (Ensure menu & text are always visible) */
.thanks-page .header {
    background-color: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.thanks-page .header .nav-link {
    color: var(--text-dark-secondary) !important;
}

.thanks-page .header .nav-link:hover,
.thanks-page .header .nav-link.active {
    color: var(--color-gold) !important;
}

.thanks-page .header .hdr-btn-ghost {
    color: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
}

.thanks-page .header .hdr-btn-ghost:hover {
    background-color: var(--color-gold) !important;
    color: #ffffff !important;
}

.thanks-page .header .hamburger .bar {
    background-color: var(--text-dark-primary) !important;
}

/* ==========================================================================
   17. THANK YOU PAGE STYLING
   ========================================================================== */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    background-color: var(--color-light-sec);
    text-align: center;
    position: relative;
}

.thankyou-card {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 
                0 20px 50px rgba(0, 0, 0, 0.08), 
                0 0 0 1px rgba(197, 168, 128, 0.15);
    border-top: 4px solid var(--color-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.thankyou-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(91, 168, 39, 0.1);
    color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.thankyou-card h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark-primary);
    margin: 0;
}

.thankyou-card p {
    font-size: 1rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
    margin: 0;
}

.thankyou-btn {
    margin-top: 10px;
}

@media (max-width: 600px) {
    .thankyou-card {
        padding: 40px 20px;
    }
    .thankyou-card h1 {
        font-size: 1.8rem;
    }
}