/* =========================================
   CSS Variables & Theme Setup
   Warm Modern Luxury: Ivory + Forest Green + Copper
========================================= */
:root {
    /* Brand Colors — Warm Modern Luxury */
    --copper: #B87333;
    --copper-light: #D4956B;
    --copper-dark: #8B5A2B;
    --copper-gradient: linear-gradient(135deg, #B87333 0%, #D4956B 50%, #C68B4E 100%);
    --copper-glow: 0 4px 20px rgba(184, 115, 51, 0.35);
    --forest: #1B4332;
    --forest-light: #2D6A4F;
    --forest-muted: #40916C;
    --ivory: #FFFDF7;
    --warm-gray: #F5F1EB;
    --warm-gray-dark: #E8E2D9;
    --charcoal: #1A1A2E;
    --charcoal-light: #2D2D44;

    /* Legacy aliases (for sections we don't rewrite fully) */
    --primary-blue: #2D6A4F;
    --primary-green: #40916C;
    --highlight-yellow: #D4956B;
    --logo-red: #B87333;
    --text-dark: #1C1917;
    --text-muted: #57534E;
    --text-light: #FFFDF7;
    --bg-dark: #1A1A2E;
    --bg-light: #FFFDF7;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Outfit', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.25rem;

    /* Layout */
    --header-height: 70px;
    --container-padding: 2rem;
    --max-width: 1200px;

    /* Spacing (4px base) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --border-radius: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
    --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.08);
    --shadow-lg: 0 8px 30px rgba(28, 25, 23, 0.1);
    --shadow-xl: 0 16px 50px rgba(28, 25, 23, 0.12);
    --shadow-copper: 0 4px 20px rgba(184, 115, 51, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(28, 25, 23, 0.04);

    /* Transitions */
    --transition: all 0.3s ease;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   Reset & Base Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--charcoal);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   Scroll Reveal Animation Classes
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-stagger.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   CTA Button System
========================================= */

/* Primary CTA — Copper Gradient */
.cta-primary {
    background: var(--copper-gradient);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-out);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-copper);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 115, 51, 0.45);
    filter: brightness(1.05);
}

.cta-primary:active {
    transform: scale(0.97);
    box-shadow: var(--shadow-sm);
}

/* Secondary CTA — Forest Green Outlined */
.cta-secondary {
    background: transparent;
    color: var(--forest);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-out);
    border: 2px solid var(--forest-light);
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
}

.cta-secondary:active {
    transform: scale(0.97);
}

/* CTA size variants */
.cta-lg {
    padding: 1.1rem 2.5rem;
    font-size: var(--text-lg);
}

/* =========================================
   Ken Burns Animation
========================================= */
@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* =========================================
   Count-up Animation Helper
========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp pulse animation */
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ripple effect for buttons */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Utilities */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block !important;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: flex !important;
    }

    .mobile-only {
        display: none !important;
    }

    .desktop-visible {
        display: block !important;
    }
}

/* =========================================
   Header & Navbar
========================================= */
.navbar {
    height: var(--header-height);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a287a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text p {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.5rem; /* Increased spacing to match typical desktop layouts */
}

.nav-links a {
    font-weight: 600; /* Improved typography hierarchy */
    font-size: 0.95rem;
    color: #374151; /* Slightly darker for better readability */
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--copper);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--copper-gradient);
    color: white;
    padding: 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-copper);
}

.phone-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(184, 115, 51, 0.35);
}

.hamburger-menu {
    background: transparent;
    padding: 0.2rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .phone-btn {
        padding: 0.5rem 1.25rem;
    }
}

/* =========================================
   Mobile Navigation Menu
========================================= */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1002;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1), visibility 0.4s;
    overflow-y: auto;
    visibility: hidden;
}

.mobile-nav-menu.active {
    right: 0;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #111827;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #f9fafb;
    transition: var(--transition);
}

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

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--copper);
    padding-left: 0.5rem;
}

.mobile-nav-footer {
    margin-top: auto;
    padding: 2rem 1.5rem;
    background: #f9fafb;
}

@media (max-width: 350px) {
    .logo-text h1 {
        font-size: 0.9rem;
    }
    .phone-btn {
        padding: 0.4rem;
    }
}

/* =========================================
   Hero Container Layout
========================================= */
.hero-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--header-height));
    background-color: var(--charcoal);
    position: relative;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        background-color: transparent;
    }
}

/* Left Column: Image */
.hero-image-section {
    width: 100%;
    height: 55vh; /* Larger image on mobile matching reference */
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26,26,46,0.9), rgba(26,26,46,0.3), transparent);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero-image-section {
        width: 60%;
        height: auto;
        min-height: calc(100vh - var(--header-height));
    }
    .hero-image-overlay {
        display: none;
    }
}

/* Right Column: Content */
.hero-content-section {
    width: 100%;
    background: var(--ivory);
    color: var(--text-dark);
    padding: 0.75rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    text-align: center;
    z-index: 10;
    margin-top: -1rem;
}

@media (min-width: 1024px) {
    .hero-content-section {
        width: 40%;
        background: #fdfdfd;
        padding: 3rem 4rem;
        text-align: left;
        justify-content: center;
        margin-top: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.04);
    }
}

.content-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .unified-form-area {
        order: 10;
        margin-top: 1rem; /* Spacing between carousel and form */
    }
}

.headline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    text-shadow: none;
    color: #1a202c;
}

.subheadline {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--copper);
    text-shadow: none;
}

.tags-text {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.rera-text {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: none;
        color: #1a202c;
    }

    .subheadline {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        color: var(--copper);
        text-shadow: none;
    }
    
    .tags-text, .rera-text {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* =========================================
   Features Carousel / List
========================================= */
.features-carousel {
    display: none;
    /* Hidden on mobile by default unless specified */
}

@media (min-width: 1024px) {
    .features-carousel {
        display: block !important;
        margin-bottom: 2rem;
    }

    .features-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .carousel-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .check-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
}

/* =========================================
   Forms & Inputs
========================================= */
.form-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.form-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
}

.form-subtext {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a0aec0;
    transition: var(--transition);
}

.step.active {
    color: #1a202c;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a5568;
}

.step.active .step-num {
    background: var(--copper);
    color: white;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.75rem;
}

/* Form Groups & Inputs */
.form-step-view {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step-view.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group {
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 0.95rem;
    color: #1a202c;
    font-family: inherit;
    transition: var(--transition);
}

input::placeholder {
    color: #94a3b8;
}

input:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
}

/* Buttons */
.btn-primary {
    background: var(--copper-gradient);
    color: white;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-out);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-copper);
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest-light);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
}

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

.w-100 {
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn-group button {
    flex: 1;
}

.verification-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* Success View */
#form-success {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

#form-success h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

#form-success p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}


/* =========================================
   Mobile Action Area
========================================= */
.mobile-action-area {
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
}

.brochure-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem;
    transition: var(--transition);
}

.brochure-link:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* =========================================
   Sticky Widgets
========================================= */
.sticky-edge-badge {
    position: fixed;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--forest);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
    z-index: 90;
    cursor: pointer;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: none;
}

.sticky-edge-badge:hover {
    right: -40px;
}

.whatsapp-floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 95;
}

.wa-tooltip {
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.wa-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    animation: waPulse 2s infinite;
}

.wa-icon:hover {
    transform: scale(1.1);
    animation: none;
}

@media (max-width: 1023px) {
    .whatsapp-floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .wa-icon {
        width: 50px;
        height: 50px;
    }
}


/* =========================================
   Modals
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
        align-items: center !Important;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    font-size: 1.5rem;
    color: #6b7280;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #111827;
}

.modal-header h4 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.modal-container input {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.modal-container input:focus {
    background: white;
}

/* =========================================
   New Lead Capture Form Updates
========================================= */
.phone-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: var(--transition);
}

.phone-group:focus-within {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
}

.phone-group input {
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 0.5rem;
}

.phone-group input:focus {
    box-shadow: none;
}

.country-code {
    padding-left: 1rem;
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-code .divider {
    color: #ccc;
}

.date-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.date-label {
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 0.3rem;
}

.date-input {
    width: 100%;
}

.btn-submit-details {
    background: var(--copper-gradient);
    color: white;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-out);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-copper);
    position: relative;
    overflow: hidden;
}

.btn-submit-details:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
}

.disclaimer-text {
    font-size: 0.7rem;
    color: #718096;
    text-align: center;
    margin-top: 0.75rem;
}

/* =========================================
   Trust Bar Section
========================================= */
.trust-bar-section {
    background: var(--warm-gray);
    border-bottom: 1px solid var(--warm-gray-dark);
}

.trust-bar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.trust-bar-container::-webkit-scrollbar {
    display: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.trust-item svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .trust-bar-container {
        gap: 3rem;
        padding: 1.25rem 2rem;
    }

    .trust-item span {
        font-size: 0.9rem;
    }
}

/* =========================================
   Location Highlights Section (Glassmorphism)
========================================= */
.location-highlights-section {
    position: relative;
    background: var(--charcoal);
    overflow: hidden;
}

.loc-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.loc-container {
    position: relative;
    z-index: 10;
    max-width: 1170px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
    .loc-container {
        padding: 2rem 1.5rem;
    }
}

.loc-header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    width: 100%;
}

.loc-glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .loc-glass-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.loc-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .loc-glass-card {
        padding: 1.25rem 1rem;
    }
}

.loc-glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.loc-glass-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.loc-glass-card:hover .loc-glass-icon {
    transform: scale(1.05);
}

/* Icon Colors matching the image exactly */
.bg-light-blue { background-color: #3b82f6; }
.bg-emerald-500 { background-color: #10b981; }
.bg-amber-500 { background-color: #f59e0b; }

.loc-glass-info {
    flex: 1;
    min-width: 0;
}

.loc-glass-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 0.1rem 0;
}

.loc-glass-value {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .loc-glass-title {
        font-size: 0.7rem;
    }
    .loc-glass-value {
        font-size: 1.4rem;
    }
}

.loc-footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 400;
}

@media (min-width: 768px) {
    .loc-footer-text {
        font-size: 0.8rem;
    }
}

/* =========================================
   Location Article Section
========================================= */
.location-article-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.loc-article-container {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
}

.loc-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .loc-article-title {
        font-size: 2rem;
    }
}

.loc-article-content {
    max-width: 56rem;
    margin: 0 auto;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.loc-article-content p {
    margin-bottom: 1rem;
}

.loc-article-content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .loc-article-content {
        font-size: 1rem;
        text-align: center;
    }
}

/* =========================================
   Villa Variants Section
========================================= */
.villa-variants-section {
    padding: 5rem 1.5rem;
    background-color: white;
    text-align: center;
}

.variants-header {
    max-width: 1100px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.light-blue-pill {
    background: #eef2ff;
    color: #0f62fe;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.variants-title-main {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.variants-title-sub {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.highlight-blue {
    color: #1a56db; /* Matches the vibrant blue in the image */
}

.variants-subtext {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .variants-title-main {
        font-size: 3.5rem;
    }
    .variants-title-sub {
        font-size: 1.5rem;
    }
    .variants-subtext {
        font-size: 1.15rem;
    }
}

.variants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .variants-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.variant-card {
    border-radius: 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
}

.card-yellow {
    background: linear-gradient(to bottom, #fffbeb, rgba(255, 247, 237, 0.5), rgba(254, 243, 199, 0.3));
}

.card-pink {
    background: linear-gradient(to bottom, #fff1f2, rgba(253, 242, 248, 0.5), rgba(255, 228, 230, 0.3));
}

.card-blue {
    background: linear-gradient(to bottom, #eef2ff, rgba(219, 234, 254, 0.5), rgba(224, 231, 255, 0.5));
}

.card-green {
    background: linear-gradient(to bottom, #ecfdf5, rgba(209, 250, 229, 0.5), rgba(209, 250, 229, 0.3));
}

.variant-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-yellow:hover {
    border-color: #fbbf24;
}

.card-pink:hover {
    border-color: #fb7185;
}

.card-blue:hover {
    border-color: #818cf8;
}

.card-green:hover {
    border-color: #34d399;
}

.variant-img-container {
    padding: 2.5rem 0 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.variant-img-bg {
    background-color: white;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-radius: 4px;
    transition: all 0.5s;
}

.variant-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    transition: all 0.5s;
}

.variant-card:hover .variant-img-bg {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0,0,0,0.08);
}

.variant-name {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.variant-card:hover .variant-name {
    transform: scale(1.02);
}

.card-yellow .variant-name {
    color: #92400e;
}

.card-pink .variant-name {
    color: #9f1239;
}

.card-blue .variant-name {
    color: #4338ca;
}

.card-green .variant-name {
    color: #047857;
}

.facing-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-bottom: 1.5rem;
}

.pill-outline {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.card-yellow .pill-outline {
    border: 1px solid #fcd34d;
}

.card-pink .pill-outline {
    border: 1px solid #fda4af;
}

.card-blue .pill-outline {
    border: 1px solid #a5b4fc;
}

.card-green .pill-outline {
    border: 1px solid #6ee7b7;
}

.variant-metrics {
    width: 100%;
    padding: 1.5rem 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    text-align: center;
    margin-top: auto;
}

.metric-row {
    margin-bottom: 1.25rem;
}

.metric-row:last-child {
    margin-bottom: 0;
}

.metric-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.metric-val {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
    display: block;
}

.metric-val-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.metric-val-large .pre-text {
    color: #6b7280;
    font-size: 0.95rem;
}

.metric-val-large strong {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.metric-val-large small {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* =========================================
   Special Offer Banner
========================================= */
.special-offer-section {
    padding: 0 1.5rem 4rem;
    background-color: white;
    display: flex;
    justify-content: center;
}

.promo-banner {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.red-pill {
    background: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, 0.2);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.promo-headline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}

.promo-subtext {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .promo-headline {
        font-size: 2.2rem;
    }
}

.btn-dark-cta {
    background: var(--copper-gradient);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-copper);
    position: relative;
    overflow: hidden;
}

.btn-dark-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
}

/* =========================================
   Amenities Intro Section
========================================= */
.amenities-intro-section {
    padding: 4rem 1.5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.amenities-headline-main {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.amenities-headline-sub {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
}

.amenity-accent {
    font-size: 1.1rem;
    font-weight: 400;
}

.amenities-subtext {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .amenities-headline-main {
        font-size: 3.5rem;
    }
    .amenities-headline-sub {
        font-size: 1.75rem;
    }
    .amenity-accent {
        font-size: 1.4rem;
    }
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 2.5rem auto 3.5rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.amenity-card {
    background: white;
    border-radius: 0.875rem;
    padding: 1.75rem 1.5rem 1.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    text-align: left;
    border: 1px solid #e5e7eb;
    border-left: 4px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    z-index: 1;
}

.amenity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}



.amenity-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.125rem;
    flex-shrink: 0;
    transition: all 0.5s ease;
}



.amenity-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    transition: color 0.5s ease;
}

@media (min-width: 768px) {
    .amenity-title {
        font-size: 1.25rem;
    }
}



.amenity-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    transition: color 0.5s ease;
}

@media (min-width: 768px) {
    .amenity-desc {
        font-size: 0.9375rem;
    }
}



/* Hide the circle-deco — not needed in the new design */
.circle-deco {
    display: none;
}

/* ── Card Theme: Orange ── */
.amenity-orange {
    border-left-color: #f59e0b;
    background: linear-gradient(100deg, #fffbeb 0%, white 40%);
}
.amenity-orange::before {
    background: linear-gradient(to bottom right, #f59e0b, #ea580c);
}
.amenity-orange .amenity-icon {
    background: #f59e0b;
}

/* ── Card Theme: Green ── */
.amenity-green {
    border-left-color: #10b981;
    background: linear-gradient(100deg, #ecfdf5 0%, white 40%);
}
.amenity-green::before {
    background: linear-gradient(to bottom right, #10b981, #059669);
}
.amenity-green .amenity-icon {
    background: #10b981;
}

/* ── Card Theme: Blue ── */
.amenity-blue {
    border-left-color: #3b82f6;
    background: linear-gradient(100deg, #eff6ff 0%, white 40%);
}
.amenity-blue::before {
    background: linear-gradient(to bottom right, #3b82f6, #2563eb);
}
.amenity-blue .amenity-icon {
    background: #3b82f6;
}

/* ── Card Theme: Gray ── */
.amenity-gray {
    border-left-color: #6b7280;
    background: linear-gradient(100deg, #f3f4f6 0%, white 40%);
}
.amenity-gray::before {
    background: linear-gradient(to bottom right, #6b7280, #4b5563);
}
.amenity-gray .amenity-icon {
    background: #6b7280;
}

/* ── Card Theme: Emerald ── */
.amenity-emerald {
    border-left-color: #059669;
    background: linear-gradient(100deg, #ecfdf5 0%, white 40%);
}
.amenity-emerald::before {
    background: linear-gradient(to bottom right, #059669, #047857);
}
.amenity-emerald .amenity-icon {
    background: #059669;
}

/* ── Card Theme: Teal ── */
.amenity-teal {
    border-left-color: #14b8a6;
    background: linear-gradient(100deg, #f0fdfa 0%, white 40%);
}
.amenity-teal::before {
    background: linear-gradient(to bottom right, #14b8a6, #0f766e);
}
.amenity-teal .amenity-icon {
    background: #14b8a6;
}

/* Final Conversion Block */
.final-conversion-block {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.final-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .final-metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.final-metrics-grid .metric-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-metrics-grid .metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.metric-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.metric-label {
    font-size: 0.95rem;
    color: #4b5563;
    text-align: center;
}

.btn-primary-large {
    background: var(--copper-gradient);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-copper);
    position: relative;
    overflow: hidden;
}

.btn-primary-large:hover {
    filter: brightness(1.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 115, 51, 0.45);
}

/* =========================================
   Key Highlights Section
========================================= */
.key-highlights-section {
    padding: 5rem 1.5rem;
    background-color: #fafafa;
    text-align: center;
}

.kh-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.kh-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.kh-highlight-blue {
    background: linear-gradient(to right, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .kh-title {
        font-size: 2.8rem;
    }
}

.kh-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .kh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .kh-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.kh-card {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.kh-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}
.kh-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.kh-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

/* Colors based on reference */
.kh-green { background-color: #f0fdf4; }
.kh-green .kh-icon { background-color: #10b981; }

.kh-yellow { background-color: #fefce8; }
.kh-yellow .kh-icon { background-color: #fbbf24; }

.kh-cyan { background-color: #ecfeff; }
.kh-cyan .kh-icon { background-color: #0ea5e9; }

.kh-emerald { background-color: #f0fdf4; }
.kh-emerald .kh-icon { background-color: #22c55e; }

.kh-rose { background-color: #fff1f2; }
.kh-rose .kh-icon { background-color: #fb7185; }

.kh-orange { background-color: #fff7ed; }
.kh-orange .kh-icon { background-color: #f97316; }

.kh-gray { background-color: #f8fafc; }
.kh-gray .kh-icon { background-color: #64748b; }

.kh-amber { background-color: #fefce8; }
.kh-amber .kh-icon { background-color: #eab308; }

.kh-blue { background-color: #eff6ff; }
.kh-blue .kh-icon { background-color: #3b82f6; }

/* =========================================
   Master Plan Section
========================================= */
.master-plan-section {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light);
    text-align: center;
}

.master-plan-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.master-plan-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.master-plan-subtext {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .master-plan-title {
        font-size: 2.8rem;
    }
}

.master-plan-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: #f3f4f6;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.master-plan-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    mix-blend-mode: multiply;
    /* Helps the white background of the image blend into the gray container */
}

.mp-badges-wrapper {
    position: absolute;
    top: 3rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.mp-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    pointer-events: auto;
}

.mp-badge-left {
    background-color: #1d4ed8;
    color: white;
}

.mp-badge-right {
    background-color: white;
    color: #1d4ed8;
}

.mp-badge-right:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mp-badges-wrapper {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .mp-badge {
        justify-content: center;
        width: 100%;
    }

    .master-plan-container {
        padding: 1.5rem 1rem 1rem;
    }
}

.mp-metrics-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mp-metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .mp-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mp-metrics-grid .metric-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mp-metrics-grid .metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.mp-icon {
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mp-metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.mp-metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4b5563;
}

.mp-metrics-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mp-metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .mp-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mp-metrics-grid .metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
}

.mp-icon {
    background: #f8fafc;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mp-metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.mp-metric-label {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 500;
}

/* =========================================
   Floor Plans Interactive Section
========================================= */
.floor-plans-interactive-section {
    padding: 5rem 1.5rem;
    background: white;
    text-align: center;
    color: #111827;
    /* Default theme color */
    --active-theme-color: #ea580c;
    --active-theme-bg: #ffedd5;
}

.floor-plans-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.fp-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.fp-subtext {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .fp-title {
        font-size: 2.8rem;
    }
}

.fp-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .fp-layout-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Sidebar Navigation */
.fp-sidebar {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.fp-sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.fp-sidebar-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #3b82f6;
    margin-right: 10px;
}

.fp-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.fp-tab:last-child {
    margin-bottom: 0;
}

.fp-tab:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.fp-tab-name {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111827;
}

.fp-tab-metrics,
.fp-tab-facing {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.fp-tab-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: #f3f4f6;
    color: #4b5563;
}

/* Tab Active States using CSS Variable */
.fp-tab.active {
    background: var(--active-theme-color);
    border-color: var(--active-theme-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.fp-tab.active .fp-tab-name,
.fp-tab.active .fp-tab-metrics,
.fp-tab.active .fp-tab-facing {
    color: white;
}

.fp-tab.active .fp-tab-number {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Inactive Tab Specific Themes (for number circle) */
.fp-tab[data-variant="symphony"]:not(.active) .fp-tab-name {
    color: #ea580c;
}

.fp-tab[data-variant="symphony"]:not(.active) .fp-tab-number {
    background: #ffedd5;
    color: #ea580c;
}

.fp-tab[data-variant="melody"]:not(.active) .fp-tab-name {
    color: #be185d;
}

.fp-tab[data-variant="melody"]:not(.active) .fp-tab-number {
    background: #fce7f3;
    color: #be185d;
}

.fp-tab[data-variant="harmony"]:not(.active) .fp-tab-name {
    color: #9333ea;
}

.fp-tab[data-variant="harmony"]:not(.active) .fp-tab-number {
    background: #f3e8ff;
    color: #9333ea;
}

.fp-tab[data-variant="rhapsody"]:not(.active) .fp-tab-name {
    color: #047857;
}

.fp-tab[data-variant="rhapsody"]:not(.active) .fp-tab-number {
    background: #d1fae5;
    color: #047857;
}

/* Right Content Area */
.fp-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fp-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.fp-display-title {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--active-theme-color);
    margin-bottom: 0.5rem;
}

.fp-display-metrics {
    font-size: 1rem;
    color: #4b5563;
}

.fp-view-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fp-view-full-btn:hover {
    background: #dbeafe;
}

/* Image Container & Carousel */
.fp-image-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.fp-carousel-wrapper {
    position: relative;
    overflow: hidden; /* Prevent horizontal page overflow */
    width: 100%;
}

.fp-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: center;
}

.fp-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.fp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #2563eb;
    transition: all 0.3s ease;
}

.fp-arrow:hover {
    background: #2563eb;
    color: white;
}

.fp-prev {
    left: 1rem;
}

.fp-next {
    right: 1rem;
}

.fp-display-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    mix-blend-mode: multiply;
}

/* Image Loading State */
.image-loading .fp-display-img {
    opacity: 0.3;
}

.image-loading::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--active-theme-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.fp-image-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--active-theme-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fp-zoom-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #2563eb;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    z-index: 10;
    transition: var(--transition);
}

.fp-zoom-badge:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sticky Bottom Strip */
.fp-bottom-strip-wrapper {
    position: sticky;
    bottom: 2rem;
    z-index: 20;
    margin-top: -1rem;
}

.fp-bottom-strip {
    background: var(--active-theme-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fp-strip-box {
    display: flex;
    flex-direction: column;
}

.fp-strip-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.fp-strip-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--active-theme-color);
}

.text-right {
    text-align: right;
}

/* Mobile Media Queries */
@media (max-width: 768px) {
    .fp-content-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .fp-view-full-btn {
        font-size: 0;
        padding: 0.5rem 1rem;
        border-radius: 8px;
    }
    .fp-view-full-btn svg {
        margin-right: 0.25rem;
    }
    .fp-view-full-btn::after {
        content: "Zoom";
        font-size: 0.85rem;
    }

    .fp-display-title {
        font-size: 1.5rem; /* smaller on mobile */
    }
    
    .fp-display-metrics {
        font-size: 0.85rem;
    }

    .fp-image-container {
        padding: 0.5rem;
    }

    .fp-arrow {
        display: none !important; /* Hide left/right symbols */
    }

    .fp-bottom-strip-wrapper {
        background: #fdf8eb; /* pale yellow background */
        padding: 1.25rem 1rem;
        border-radius: 12px;
        margin-top: 1rem;
    }

    .fp-bottom-strip {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        background: transparent;
        padding: 0;
        border: none;
    }
    
    .fp-strip-label {
        display: none !important;
    }
    
    #fp-strip-sba::after {
        content: " SBA";
    }
    #fp-strip-plot::after {
        content: " Plot";
    }

    .fp-strip-val {
        font-size: 0.95rem;
        color: var(--active-theme-color);
        font-weight: 700;
    }

    /* Convert Sidebar to Horizontal Tabs on Mobile */
    .fp-sidebar {
        flex: none;
        width: 100%;
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 1rem 0;
        position: relative;
        top: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .fp-sidebar::-webkit-scrollbar {
        display: none;
    }

    .fp-sidebar-title {
        display: none;
    }

    .fp-tab {
        flex: 0 0 auto;
        scroll-snap-align: center;
        margin-bottom: 0;
        padding: 0.5rem 1.25rem;
        border-radius: 999px;
        background: #f3f4f6;
        border: none;
        width: auto;
    }
    
    .fp-tab.active {
        background: var(--active-theme-color, #ea580c);
        color: white;
    }
    
    /* Force inactive tabs to be slate gray, overriding desktop specific colors */
    .fp-tab:not(.active) .fp-tab-name {
        color: #334155 !important;
    }
    
    .fp-tab-metrics, .fp-tab-facing, .fp-tab-number {
        display: none !important;
    }
    
    .fp-tab-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: inherit !important; 
    }
}

/* =========================================
   Villa Elevations Section
========================================= */
.villa-elevations-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
    text-align: center;
}

.elevations-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.elevations-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.elevations-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #cbd5e1;
    /* Gray placeholder background like reference */
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.elevation-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elevation-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Top Strip Overlay */
.elevations-top-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: rgba(37, 99, 235, 0.85);
    /* #2563eb */
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    color: white;
}

.elevations-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.elevations-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.elevations-title-box {
    text-align: left;
}

.elevations-title-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.elevations-title-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.elevations-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Nav Arrows */
.elevation-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.elevation-arrow:hover {
    background: #1d4ed8;
}

.elevation-prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.elevation-next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

/* Zoom Badge */
.elevations-zoom-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.elevation-zoom-btn {
    background: white;
    color: #1e293b;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.elevation-zoom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Bottom Controls */
.elevations-controls {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.elevation-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.elevation-pill {
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.elevation-pill:hover:not(.active) {
    background: #e2e8f0;
}

.elevation-pill.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.elevation-desc {
    max-width: 600px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .elevations-carousel {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .elevations-top-strip {
        position: relative;
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        background: #2563eb;
    }

    .elevations-title-group {
        width: 100%;
        gap: 0.75rem;
    }

    .elevations-title-box h3 {
        font-size: 1.1rem;
    }

    .elevations-title-box p {
        font-size: 0.75rem;
    }

    .elevations-counter {
        display: none !important;
    }

    .elevation-img-container {
        height: auto;
    }

    .elevation-arrow {
        top: calc(50% + 25px);
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
    }

    .elevation-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.5rem;
        border-radius: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .elevation-pills::-webkit-scrollbar {
        display: none;
    }

    .elevation-pill {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
    }
    
    .elevations-zoom-wrapper {
        display: none !important;
    }
}

/* Copper CTA Button (was Yellow) */
.btn-yellow-cta {
    background: var(--copper-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-copper);
    transition: all 0.3s var(--ease-out);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-yellow-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 115, 51, 0.45);
}

/* =========================================
   Location Map Section
========================================= */
.location-map-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-subtitle {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 500;
    margin-bottom: 2rem;
}

.map-divider {
    width: 100%;
    max-width: 1000px;
    border: none;
    border-top: 1px solid #9ca3af;
    margin-bottom: 3rem;
}

.map-image-container {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 3rem;
}

.map-img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-book-visit {
    background: var(--copper-gradient);
    color: white;
    padding: 1.2rem 4rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-copper);
    transition: all 0.3s var(--ease-out);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.btn-book-visit:hover {
    filter: brightness(1.08);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 115, 51, 0.4);
}

.interactive-map-container {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

.interactive-map-container iframe {
    display: block;
    pointer-events: none;
    /* Allows clicks to pass through to the absolute overlay link */
}

/* =========================================
   Important Landmarks Section
========================================= */
.landmarks-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.landmarks-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blue-pill-light {
    background-color: #eff6ff;
    color: #2563eb;
    border: none;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
}

.landmarks-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.landmarks-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 500;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .landmarks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .landmarks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.landmark-card {
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.bg-light-blue {
    background-color: #f0f6ff;
}

.bg-light-purple {
    background-color: #f3f4ff;
}

.bg-light-red {
    background-color: #fff1f2;
}

.bg-light-yellow {
    background-color: #fffbeb;
}

.bg-light-pink {
    background-color: #fdf2f8;
}

.bg-light-teal {
    background-color: #f0fdfa;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-blue {
    background-color: #2563eb;
}

.icon-purple {
    background-color: #8b5cf6;
}

.icon-red {
    background-color: #f43f5e;
}

.icon-yellow {
    background-color: #f59e0b;
}

.icon-pink {
    background-color: #ec4899;
}

.icon-teal {
    background-color: #14b8a6;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.landmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landmark-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
}

.lm-time {
    color: #2563eb;
    font-weight: 700;
    font-size: 0.9rem;
}

/* =========================================
   Construction Progress Section
========================================= */
.construction-section {
    padding: 5rem 0 2rem;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.construction-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.construction-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.construction-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.green-pill {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.green-pill .dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.construction-carousel-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.const-carousel-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    user-select: none;
    touch-action: pan-y; /* allow vertical scroll, handle horizontal in JS */
}

.const-carousel-track.dragging {
    transition: none !important;
    cursor: grabbing;
}

.const-slide {
    flex: 0 0 65%;
    /* 65% width so adjacent slides peek in */
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    opacity: 0.5;
    transform: scale(0.92);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.const-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.const-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    pointer-events: none; /* prevent native image drag */
}

.update-pill {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #ea580c;
    /* Orange */
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.const-slide.active .update-pill {
    opacity: 1;
}

.const-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    color: #111;
    transition: all 0.2s;
}

.const-arrow:hover {
    background: #f3f4f6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.const-prev {
    left: 2rem;
}

.const-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .const-slide {
        flex: 0 0 85%;
    }

    .const-slide img {
        height: 300px;
    }

    .const-prev {
        left: 0.5rem;
    }

    .const-next {
        right: 0.5rem;
    }

    .construction-title {
        font-size: 1.8rem;
    }
}

.const-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.const-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.const-dot.active {
    background: #2563eb;
    width: 25px;
    border-radius: 10px;
}

/* =========================================
   Amenities Section
========================================= */
.amenities-section {
    padding: 5rem 1.5rem;
    background-color: #fcfcfc;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.amenities-header {
    margin-bottom: 3.5rem;
}

.amenities-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.amenities-subtitle {
    font-size: 1.15rem;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.premium-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 cols */
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .premium-amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .premium-amenities-grid {
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 cols */
        gap: 1.5rem;
    }
}

.premium-amenity-card {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #e5e7eb;
}

.premium-amenity-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.premium-amenity-icon svg {
    width: 48px;
    height: 48px;
    /* keeping the original colorful strokes of the icons */
}

.premium-amenity-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* =========================================
   FAQs Section
========================================= */
.faqs-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.faqs-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faqs-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.faqs-subtitle {
    font-size: 1.15rem;
    color: #374151;
    font-weight: 500;
}

.faq-item {
    border-bottom: 1px solid #6b7280;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    font-weight: 300;
    font-size: 1.5rem;
    color: #374151;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 0 1.5rem 35px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question {
    color: #2563eb;
}

.faq-item.active .faq-icon {
    color: #2563eb;
}

/* =========================================
   Final CTA Section
========================================= */
.final-cta-section {
    background-color: #0b1120;
    padding: 5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.cta-container {
    background-color: #111827;
    border-radius: 16px;
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-left {
    padding: 3.5rem 2rem;
}

.cta-right {
    padding: 3.5rem 2rem;
    background-color: #111827;
}

@media (min-width: 992px) {
    .cta-left {
        padding: 3.5rem 3rem;
    }

    .cta-right {
        padding: 3.5rem 3rem;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.cta-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.cta-checklist li {
    color: #f3f4f6;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cta-checklist li svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.cta-form-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-form-subtitle {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-form .input-group input {
    background-color: #ffffff;
    border: none;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 1rem;
    color: #111827;
    width: 100%;
}

.cta-form .phone-input {
    display: flex;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.cta-form .phone-input .country-code {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 14px 16px;
    font-weight: 500;
    border-right: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.cta-form .phone-input input {
    border-radius: 0;
}

.cta-disclaimer {
    color: #6b7280;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* =========================================
   Footer Section
========================================= */
.site-footer {
    background-color: #0b1120;
    color: #e5e7eb;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 5rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
        gap: 3rem;
        padding: 5rem 3rem;
    }
}

/* Light logo variation */
.logo-light {
    margin-bottom: 1.2rem;
    margin-left: -8px;
    /* Slight optical alignment */
}

.logo-light .logo-icon {
    width: 32px;
    height: 32px;
}

.logo-light .logo-text h1 {
    color: #ffffff;
    font-size: 1.5rem;
}

.logo-light .logo-text p {
    color: #ffffff;
    font-size: 0.7rem;
}

.footer-desc {
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-pills {
    display: flex;
    gap: 8px;
}

.footer-pill {
    background-color: #111827;
    border: 1px solid #374151;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-links a span {
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: rgba(37, 99, 235, 0.15);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.contact-text strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.legal-card {
    background-color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.legal-card.mt-2 {
    margin-top: 1rem;
}

.legal-icon {
    flex-shrink: 0;
    margin-top: 0px;
}

.legal-icon svg {
    width: 20px;
    height: 20px;
}

.legal-text {
    display: flex;
    flex-direction: column;
}

.legal-text strong {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.legal-text p {
    color: #9ca3af;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

.footer-bottom {
    background-color: #000000;
    padding: 1.2rem 1.5rem;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #fff;
    /* Sky blue matching screenshot */
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    color: #9ca3af;
    font-size: 0.8rem;
}

.footer-bottom-links a {
    color: #7dd3fc;
    /* Sky blue */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1rem;
    }
}/* =========================================
   About Section
========================================= */
.about-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-subtitle {
    color: #4b5563;
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.about-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge svg {
    width: 18px;
    height: 18px;
}

.badge-green {
    background-color: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.badge-blue {
    background-color: #dbeafe;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.about-content {
    text-align: left;
    color: #1f2937;
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    width: 100%;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-number {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.rera-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 600px;
}

.rera-icon {
    background-color: #2563eb;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rera-icon svg {
    width: 18px;
    height: 18px;
}

.rera-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rera-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.rera-number {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.talk-expert-btn {
    font-size: 1.2rem;
    padding: 1rem 4rem;
    border-radius: 8px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
    }
    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-box {
        width: 100%;
        min-width: 0;
        padding: 1rem; /* Slightly smaller padding for mobile to fit nicely */
    }
    .stat-number {
        font-size: 2rem; /* Reduced from 2.5rem for mobile */
    }
    .stat-label {
        font-size: 0.75rem; /* Reduced from 0.85rem */
    }
    .rera-box {
        flex-direction: row;
        align-items: center;
        padding: 0.75rem; /* even less padding for small screens */
    }
    .rera-box > div {
        min-width: 0; /* allows text container to shrink */
    }
    .rera-number {
        font-size: clamp(0.65rem, 3.5vw, 0.9rem); /* slightly smaller to fit */
        word-break: break-all; /* prevent long string overflow */
    }

    /* Key Highlights Grid for Mobile */
    .kh-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .kh-card {
        padding: 1rem;
        min-width: 0;
    }
    .kh-card-title {
        font-size: 0.85rem;
    }
    .kh-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin-bottom: 0.5rem;
    }

    /* Master Plan Metrics Grid for Mobile */
    .mp-metrics-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .mp-metrics-grid .metric-card {
        padding: 1rem;
        min-width: 0;
    }
    .mp-metric-number {
        font-size: 2rem;
    }
    .mp-metric-label {
        font-size: 0.75rem;
    }
    .mp-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0.5rem;
    }
}
/* =========================================
   Location & School Updates
========================================= */
.loc-article-title-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.loc-stats-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.loc-stat-box {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    flex: 1;
}

.loc-stat-time {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.loc-stat-desc {
    color: #6b7280;
    font-size: 0.95rem;
}

.shriram-school-section {
    background-color: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid #f3f4f6;
    width: 100%;
}

.loc-school-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.loc-school-address {
    color: #111827;
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
}

.loc-school-features {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.loc-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    text-align: center;
}

.loc-feature-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.loc-feature-item p {
    color: #111827;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .loc-article-title-new {
        font-size: 1.8rem;
    }
    .loc-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .loc-stat-box {
        width: 100%;
        max-width: none;
        padding: 1.25rem 0.5rem;
    }
    .loc-stat-time {
        font-size: 1.25rem;
    }
    .loc-stat-desc {
        font-size: 0.8rem;
    }
    .loc-school-features {
        flex-direction: column;
        align-items: center;
    }
}
/* =========================================
   Hero Slider
========================================= */
.hero-slider {
    display: flex;
    width: 300%; /* 3 images (2 + 1 clone) */
    height: 100%;
    animation: heroScroll 10s infinite linear;
}

@keyframes heroScroll {
    0%, 35% { transform: translateX(0); }
    45%, 90% { transform: translateX(-33.333%); }
    100% { transform: translateX(-66.666%); }
}

.hero-slide-img {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .location-highlights-section,
    .about-section,
    .villa-variants-section,
    .special-offer-section,
    .amenities-intro-section,
    .key-highlights-section,
    .master-plan-section,
    .floor-plans-interactive-section,
    .villa-elevations-section,
    .location-article-section,
    .shriram-school-section,
    .location-map-section,
    .landmarks-section,
    .construction-section,
    .amenities-section,
    .faqs-section,
    .final-cta-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

body {
    padding-top: var(--header-height);
    transition: padding-bottom 0.3s ease-in-out;
}

.bottom-sticky-bar {
    display: none;
}


@media (max-width: 768px) {

    #site-visit-modal {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
    }

    #site-visit-modal .modal-container {
        width: 100% !important;
        max-width: 420px !important;
        max-height: 90vh !important;
        margin: 0 auto !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Space for the bottom sticky CTA */
    }
    body.hide-bottom-cta {
        padding-bottom: 0;
    }

    .bottom-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 253, 247, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 0.75rem 1rem;
        z-index: 9999;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        transform: translateY(0);
        transition: transform 0.3s ease-in-out;
        border-top: 1px solid rgba(184, 115, 51, 0.15);
    }

    body.hide-bottom-cta .bottom-sticky-bar {
        transform: translateY(100%);
    }

    /* Ensure WhatsApp button doesn't overlap with the bottom bar */
    .whatsapp-floating-cta {
        bottom: calc(70px + 1.5rem) !important;
        transition: bottom 0.3s ease-in-out;
    }

    body.hide-bottom-cta .whatsapp-floating-cta {
        bottom: 2rem !important;
    }
}


/* Fix Whitefield Metro icon visibility */
.loc-glass-card .bg-light-blue {
    color: #3b82f6 !important;
}

