/* VVIP Yamuna - The grace of thoughtfulness */

:root {
    --primary: #0a0f1a;
    --primary-soft: #141b2a;
    --accent: #b8860b;
    --accent-light: #c9a227;
    --accent-hover: #9a7310;
    --text: #0a0f1a;
    --text-muted: #4a5568;
    --bg: #fafbfc;
    --bg-soft: #f4f6f8;
    --border: #e4e8ec;
    --shadow-sm: 0 1px 3px rgba(10,15,26,0.04);
    --shadow-md: 0 4px 20px rgba(10,15,26,0.06);
    --shadow-lg: 0 12px 40px rgba(10,15,26,0.08);
    --shadow-xl: 0 20px 48px rgba(10,15,26,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --section-padding: 5rem;
    --transition: 0.25s ease;
}

* {
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 9999;
    transition: width 0.08s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress { display: none; }
}

::selection {
    background: rgba(184, 134, 11, 0.2);
    color: var(--text);
}

/* Animations */
.preload * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
}

/* Hero elements - GSAP animates on load */
.animate-on-scroll {
    opacity: 0;
}

/* Ensure section content is visible - GSAP immediateRender:false keeps content visible until animation */
.reveal-section,
.feature-item,
.features-strip-title,
.highlight-card,
.floor-plan-card,
.location-card,
.amenity-card,
.spec-card,
.payment-step,
.payment-cta-card,
.section-title,
.overview-image,
.overview-content {
    opacity: 1;
}

/* Hero ambient blobs - subtle, professional */
.hero-morph-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(80px);
    opacity: 0.08;
    animation: morphBlob 16s ease-in-out infinite;
    pointer-events: none;
}

.hero-morph-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-morph-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), var(--primary-soft));
    bottom: 20%;
    left: 5%;
    animation-delay: -4s;
    animation-duration: 15s;
}

.hero-morph-blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-soft), var(--accent-light));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
    animation-duration: 18s;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(-50%, -50%) scale(1); }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(-50%, -50%) scale(1.05); }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; transform: translate(-50%, -50%) scale(0.95); }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; transform: translate(-50%, -50%) scale(1.02); }
}

.hero-morph-blob-1,
.hero-morph-blob-2 {
    transform: none;
}

.hero-morph-blob-1 {
    animation-name: morphBlob1;
}

.hero-morph-blob-2 {
    animation-name: morphBlob2;
}

.hero-morph-blob-3 {
    animation-name: morphBlob3;
}

@keyframes morphBlob1 {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    33% { border-radius: 40% 60% 50% 50% / 30% 60% 40% 70%; }
    66% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
}

@keyframes morphBlob2 {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    33% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    66% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
}

@keyframes morphBlob3 {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(-50%, -50%) scale(1); }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(-50%, -50%) scale(1.05); }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; transform: translate(-50%, -50%) scale(0.95); }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; transform: translate(-50%, -50%) scale(1.02); }
}

/* Section titles - clean, professional */
.section-title {
    position: relative;
}

/* Cards - consistent, restrained hover */
.feature-item,
.highlight-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}


/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.05);
    color: #fff !important;
}

@media (max-width: 767px) {
    .float-whatsapp {
        bottom: calc(1rem + env(safe-area-inset-bottom));
        right: calc(1rem + env(safe-area-inset-right));
    }
}

/* Scroll waypoints */
.scroll-waypoints {
    position: fixed;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.scroll-waypoints .waypoint-dot {
    position: relative;
    z-index: 1;
}

.waypoint-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.3);
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
}

.waypoint-dot:hover {
    background: rgba(184, 134, 11, 0.6);
    transform: scale(1.3);
}

.waypoint-dot.active {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.25);
}

@media (max-width: 991px) {
    .scroll-waypoints {
        display: none;
    }
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, .overview-title, .section-title, .vvip-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
}

/* Navbar */
.navbar {
    padding: 1.125rem 0;
    padding-top: calc(1.125rem + env(safe-area-inset-top));
    background: transparent !important;
    transition: all var(--transition);
}

.navbar.navbar-scrolled {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.3125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff !important;
    text-decoration: none;
}

.navbar-brand .navbar-logo-img {
    height: 36px;
    width: auto;
}

.navbar-brand .navbar-brand-text {
    display: inline-block;
}

.navbar.navbar-scrolled .navbar-brand {
    color: var(--primary) !important;
}

.navbar.navbar-scrolled .navbar-logo-img {
    filter: none;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.navbar .nav-link:hover {
    color: #fff !important;
}

.navbar.navbar-scrolled .nav-link {
    color: var(--text-muted) !important;
}

.navbar.navbar-scrolled .nav-link:hover {
    color: var(--primary) !important;
}

.btn-enquire {
    background: #fff;
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
    letter-spacing: 0.03em;
    transition: all var(--transition);
}

.navbar.navbar-scrolled .btn-enquire {
    background: var(--accent);
    color: #fff !important;
}

.btn-enquire:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.navbar.navbar-scrolled .btn-enquire:hover {
    background: var(--accent-hover);
}

.navbar-toggler {
    border: none;
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10,15,26,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero - Full Screen */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(80px + env(safe-area-inset-top, 0px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    background-color: var(--primary-soft);
    /* GSAP handles scale & parallax */
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,15,26,0.45) 0%, rgba(10,15,26,0.7) 50%, rgba(10,15,26,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 5rem;
}

.hero-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

/* Hero title curve swipe wrapper */
.hero-title-curve-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.hero-title-curve-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-soft);
    clip-path: ellipse(80% 120% at 0% 50%);
    transform-origin: left center;
    pointer-events: none;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.875rem, 8vw, 5.75rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 32px rgba(0,0,0,0.35), 0 4px 64px rgba(0,0,0,0.2);
}

.hero-title-curve-wrap .hero-title {
    position: relative;
    z-index: 1;
}

.hero-title-accent {
    display: block;
    width: 72px;
    height: 2px;
    background: var(--accent-light);
    margin: 1rem auto 0;
    opacity: 0.9;
    transform-origin: center;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero-bg-overlay {
        background: linear-gradient(to bottom, rgba(10,15,26,0.5) 0%, rgba(10,15,26,0.88) 100%);
    }
    .hero-content {
        padding: 3rem 0 4rem;
    }
    .hero-scroll {
        bottom: 1.5rem;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 10;
    color: rgba(255,255,255,0.75);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition);
}

.hero-scroll:hover {
    color: rgba(255,255,255,0.95);
}

.btn-hero-primary {
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    padding: 0.875rem 2.25rem;
    border-radius: var(--radius-sm);
    border: none;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.btn-hero-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    color: #fff !important;
}

.btn-hero-outline {
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    padding: 0.875rem 2.25rem;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    color: #fff !important;
    transform: translateY(-1px);
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line:first-child {
    margin-left: -0.05em;
    letter-spacing: 0.08em;
}

.hero-title-line:last-child {
    margin-left: 0.15em;
    letter-spacing: 0.15em;
    font-weight: 400;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-features li {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.95);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: #a8832b;
    font-size: 1.125rem;
    margin-right: 0.75rem;
}

.btn-call {
    background: #fff;
    color: var(--primary) !important;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    border: none;
}

.btn-call:hover {
    background: #f1f5f9;
    color: var(--primary) !important;
}

.btn-enquire-outline {
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-enquire-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff !important;
}

/* Hero Form */
.hero-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.form-card-header {
    background: var(--primary);
    color: #fff;
    padding: 1.5rem 2rem;
}

.form-card-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.form-card-header p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.form-card-body {
    padding: 2rem;
}

.hero-form-card .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.hero-form-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.15);
}

.hero-form-card .btn-primary {
    background: var(--accent);
    border: none;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: 8px;
}

.hero-form-card .btn-primary:hover {
    background: var(--accent-hover);
}

/* Curved dividers - curve swipe */
.curve-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.curve-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.curve-divider-1 svg {
    height: 60px;
}

.curve-divider-1 {
    margin-top: -1px;
    color: #fff;
}

.curve-divider-1 .curve-fill {
    transform-origin: center bottom;
    transform: scaleY(0);
}

/* Key Features Strip */
.features-strip {
    background: #fff;
    padding: 5rem 0;
    margin-top: -1px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--border);
}


.features-strip-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.features-strip-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0.75rem auto 0;
}

.features-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

/* Horizontal text marquee */
.horizontal-marquee {
    overflow: hidden;
    padding: 1.25rem 0;
    background: var(--primary);
    white-space: nowrap;
    user-select: none;
}

.horizontal-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.marquee-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.08em;
}

.marquee-dot {
    color: var(--accent);
    font-size: 0.5em;
    opacity: 0.8;
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    background: rgba(184, 134, 11, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-num {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.feature-item-icon-only .feature-icon {
    margin-bottom: 1rem;
}

.feature-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

@media (max-width: 991px) {
    .features-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-strip-title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .features-strip {
        padding: 3.5rem 0;
    }

    .features-strip-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-item {
        padding: 1.75rem 1.5rem;
    }

    .feature-item-icon-only .feature-icon {
        margin-bottom: 0.875rem;
    }
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text);
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 1rem auto 2.5rem;
}

.section-title.text-lg-start {
    text-align: left;
}

.section-title.text-lg-start::after {
    margin-left: 0;
    margin-right: auto;
}

/* Sections */
section {
    scroll-margin-top: 80px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
}

/* Overview */
#overview {
    padding: 6rem 0;
    background: var(--bg-soft);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

.overview-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-md);
}

.overview-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: var(--radius-sm);
    z-index: 0;
}

.overview-image img,
.overview-image-overlay,
.overview-badge {
    position: relative;
    z-index: 1;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.overview-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.6) 0%, transparent 50%);
}

.overview-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.overview-content {
    padding: 0 1rem;
}

.overview-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.overview-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.overview-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 1rem;
}

.overview-lead {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overview-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.overview-points {
    margin: 1.5rem 0;
}

.overview-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.overview-point:last-child {
    border-bottom: none;
}

.overview-point-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-point-icon i {
    font-size: 1.125rem;
    color: var(--accent);
}

.overview-point span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.btn-overview {
    display: inline-block;
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    transition: all var(--transition);
}

.btn-overview:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    color: #fff !important;
}

/* Floor Plans */
#floor-plans {
    padding: 5rem 0;
    background: var(--bg-soft);
}

.floor-plan-stack {
    perspective: 1200px;
    position: relative;
}

.floor-plan-stack-item {
    position: relative;
    z-index: 1;
}

.floor-plan-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.floor-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.2);
}

.floor-plan-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.floor-plan-content {
    padding: 1.5rem;
}

.floor-plan-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.floor-plan-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Location */
#location {
    padding: 5rem 0;
    background: var(--bg);
}

.location-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.location-card:hover {
    border-color: rgba(184, 134, 11, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.location-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    background: rgba(184, 134, 11, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.location-card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.location-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Payment Plan */
#payment-plan {
    padding: 5rem 0;
    background: var(--bg-soft);
}

.payment-plan-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.payment-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-step {
    flex: 1;
    min-width: 120px;
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.payment-step:hover {
    border-color: rgba(184, 134, 11, 0.2);
    box-shadow: var(--shadow-md);
}

.payment-step-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.payment-step-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.payment-cta-card {
    background: var(--primary);
    color: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.payment-cta-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-cta-card p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.payment-cta-card .btn-primary {
    background: var(--accent);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all var(--transition);
}

.payment-cta-card .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Highlights */
#highlights {
    background: var(--bg);
    padding: 5rem 0;
}

.highlight-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.2);
}

.highlight-card .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(184, 134, 11, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.highlight-card .icon-wrap i {
    font-size: 1.5rem;
    color: var(--accent);
}

.highlight-card h6 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
}

.highlight-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Specifications */
#specifications {
    padding: 5rem 0;
    background: var(--bg-soft);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.spec-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.2);
}

.spec-card h6 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.spec-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Amenities */
#amenities {
    padding: 5rem 0;
    background: var(--bg);
}

.amenities-vvip {
    max-width: 1000px;
    margin: 0 auto;
}

.amenity-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, 0.2);
}

.amenity-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(184, 134, 11, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.amenity-card-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.amenity-card h6 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.amenity-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.amenities-grid {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.amenity-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    transition: background 0.2s;
}

.amenity-item:hover {
    background: rgba(184, 134, 11, 0.05);
}

.amenity-item .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.amenity-item .icon-wrap i {
    font-size: 1.5rem;
    color: var(--accent);
}

.amenity-item p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
}

/* Contact */
#contact {
    background: var(--bg-soft);
    padding: 5rem 0;
}

#contact h2 {
    font-size: 1.75rem;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.contact-info-item:hover .contact-icon {
    background: rgba(184, 134, 11, 0.2);
}

.contact-icon i {
    font-size: 1.25rem;
}

.contact-info-item h6 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item p {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--accent-light);
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-form-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.contact-form-card .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.15);
}

.btn-contact-submit {
    background: var(--accent) !important;
    border: none !important;
    transition: all var(--transition);
    color: #fff !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
}

.btn-contact-submit:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
    color: #fff !important;
}

/* VVIP Group Section */
#vvip-group {
    padding: 0;
}

.vvip-group-bg {
    background: var(--primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.vvip-group-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.02'%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");
    opacity: 0.5;
}

.vvip-group-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vvip-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-light);
    display: block;
    margin-bottom: 1rem;
}

.vvip-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.vvip-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.vvip-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    margin-bottom: 2rem;
}

.vvip-stat {
    text-align: center;
}

.vvip-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 0.25rem;
}

.vvip-stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

.vvip-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.btn-vvip-cta {
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    transition: all var(--transition);
}

.btn-vvip-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    color: #fff !important;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary) 0%, #060a12 100%);
    color: #fff;
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.footer-logo .footer-logo-img {
    height: 42px;
    width: auto;
}

.footer-logo .footer-logo-text {
    display: inline-block;
}

.footer-logo::after {
    content: '';
    flex-basis: 100%;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-top: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.footer-address-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}

.footer-heading {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light) !important;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: color var(--transition);
}

.footer-contact a i {
    font-size: 1rem;
    color: var(--accent);
    opacity: 0.9;
}

.footer-contact a:hover {
    color: #fff !important;
}

.footer-contact a:hover i {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-rera p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.footer-rera a {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-rera a:hover {
    color: rgba(255,255,255,0.95) !important;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-light) !important;
}

.footer-legal-sep {
    color: rgba(255,255,255,0.25);
    font-weight: 300;
}

/* Enquiry Popup Modal */
.modal-enquiry {
    max-width: 440px;
}

.modal-enquiry .modal-content {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.modal-enquiry-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: #fff;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.modal-enquiry-header-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.modal-enquiry-header-content i {
    font-size: 2rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.modal-enquiry-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.modal-enquiry-header p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.modal-enquiry .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-enquiry .btn-close-white:hover {
    opacity: 1;
}

.modal-enquiry-body {
    padding: 2rem 1.75rem;
}

.modal-enquiry-body .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.modal-enquiry-body .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.15);
}

.btn-enquiry-submit {
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-enquiry-submit:hover {
    background: var(--accent-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Alert */
.alert-success {
    background: #dcfce7;
    color: #166534;
    border: none;
}

/* Legal pages */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.legal-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2rem;
}

.legal-content p, .legal-content li {
    color: var(--text-muted);
    line-height: 1.75;
}

/* Utilities */
.text-primary {
    color: var(--accent) !important;
}

.btn-primary {
    background: var(--accent) !important;
    border: none !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

/* ========== Mobile Responsive ========== */
@media (max-width: 991px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        max-width: 100%;
    }

    section {
        scroll-margin-top: 70px;
    }

    /* Hero */
    .hero-section {
        padding-top: calc(70px + env(safe-area-inset-top));
        min-height: min(100vh, 100dvh);
        padding-bottom: 2.5rem;
    }

    .hero-content {
        padding: 2.5rem 0 3rem;
    }

    .hero-inner {
        text-align: center;
    }

    .hero-label {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-title-accent {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tagline {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }

    .hero-desc {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .hero-scroll {
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }

    /* Overview */
    .overview-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .overview-image {
        aspect-ratio: 4/3;
        order: 1;
    }

    .overview-content {
        padding: 0;
        order: 2;
        text-align: center;
    }

    .overview-content .btn-overview {
        margin: 0 auto;
    }

    .overview-title {
        font-size: 1.5rem;
    }

    .overview-points {
        text-align: left;
    }

    /* Section headings */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        margin-bottom: 2rem;
    }

    /* Floor Plans */
    #floor-plans,
    #location,
    #payment-plan,
    #highlights,
    #amenities,
    #overview,
    #contact,
    #specifications,
    #vvip-group {
        padding: 3rem 0;
    }

    .floor-plan-content h5 {
        font-size: 0.9375rem;
    }

    .floor-plan-stack .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Payment Plan */
    .payment-plan-wrapper .row {
        flex-direction: column;
        gap: 2rem !important;
    }

    .payment-plan-wrapper .col-lg-6 {
        max-width: 100%;
    }

    .payment-plan-wrapper .section-title.text-lg-start,
    .payment-plan-wrapper .text-muted {
        text-align: center;
    }

    .payment-plan-wrapper .section-title.text-lg-start::after {
        margin-left: auto;
        margin-right: auto;
    }

    .payment-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .payment-steps .payment-step {
        min-width: calc(50% - 0.375rem);
        flex: 1 1 calc(50% - 0.375rem);
        max-width: 200px;
        padding: 1rem;
        margin: 0 auto;
    }

    .payment-cta-card {
        text-align: center;
    }

    .payment-cta-card .btn {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Amenities */
    .amenities-vvip .row {
        margin: 0 -0.5rem;
    }

    .amenities-vvip .col-md-6,
    .amenities-vvip .col-lg-4 {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .amenity-card {
        padding: 1.5rem;
    }

    /* Specs */
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .spec-card {
        padding: 1.5rem;
    }

    /* Contact */
    .contact-wrapper .row {
        flex-direction: column;
        gap: 2rem !important;
    }

    .contact-info-card {
        padding: 1.5rem;
        order: 1;
    }

    .contact-form-card {
        padding: 1.5rem;
        order: 2;
    }

    .contact-info-item {
        padding: 1rem 0;
    }

    .contact-form-card .form-control {
        min-height: 48px;
    }

    .btn-contact-submit {
        width: 100%;
        min-height: 48px;
    }

    /* VVIP Group */
    .vvip-group-bg {
        padding: 4rem 0;
    }

    .vvip-stats {
        gap: 1.5rem 2rem;
    }

    .vvip-stat-num {
        font-size: 2rem;
    }

    .vvip-desc {
        font-size: 0.9375rem;
    }

    /* Footer */
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
        margin: 0 auto;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-contact a {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Horizontal marquee */
    .horizontal-marquee {
        padding: 1rem 0;
    }

    .horizontal-marquee-track {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .marquee-text {
        font-size: 1.125rem;
    }

    /* Curve divider */
    .curve-divider-1 svg {
        height: 40px;
    }

    /* Highlights & Location - ensure single column on mobile */
    .row.g-4 > [class*="col-"] {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Navbar */
    .navbar {
        padding: 0.625rem 0;
        padding-top: calc(0.625rem + env(safe-area-inset-top));
    }

    .navbar-brand {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .navbar-brand .navbar-logo-img {
        height: 30px;
    }

    .navbar-collapse {
        background: #fff;
        margin: 0.75rem -1rem -0.75rem;
        padding: 1rem 1.25rem;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        max-height: 70vh;
        overflow-y: auto;
    }

    .navbar-collapse .nav-link {
        color: var(--text) !important;
        padding: 0.75rem 0 !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 0.9375rem;
    }

    .navbar-collapse .btn-enquire {
        background: var(--accent);
        color: #fff !important;
        margin-top: 0.5rem;
        width: 100%;
        min-height: 44px;
        text-align: center;
        justify-content: center;
        border-radius: var(--radius-sm);
    }

    /* Hero */
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .hero-desc {
        font-size: 0.875rem;
    }

    /* Features strip */
    .features-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-item {
        padding: 1.25rem 1rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .feature-label {
        font-size: 0.8125rem;
    }

    /* Overview */
    .overview-title {
        font-size: 1.35rem;
    }

    .overview-point {
        padding: 0.625rem 0;
        gap: 0.75rem;
    }

    .overview-point-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .overview-point-icon i {
        font-size: 1rem;
    }

    /* Payment steps - stack on narrow screens */
    .payment-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-steps .payment-step {
        min-width: 100%;
        max-width: none;
    }

    /* Highlights & cards */
    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-card h6 {
        font-size: 0.9375rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .location-card h6 {
        font-size: 0.9375rem;
    }

    /* Floor plans */
    .floor-plan-card {
        margin-bottom: 1rem;
    }

    /* Modal */
    .modal-enquiry {
        max-width: calc(100vw - 2rem);
        margin: 1rem;
    }

    .modal-enquiry-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .modal-enquiry-header-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-enquiry-body {
        padding: 1.25rem;
    }

    .modal-enquiry-body .form-control {
        min-height: 48px;
    }

    .btn-enquiry-submit {
        min-height: 48px;
        width: 100%;
    }

    /* Footer */
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-logo .footer-logo-img {
        height: 36px;
    }

    .footer-rera p {
        font-size: 0.6875rem;
        line-height: 1.5;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Hero */
    .hero-section {
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 2rem 0 2.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-cta .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* Section spacing */
    #floor-plans,
    #location,
    #payment-plan,
    #highlights,
    #amenities,
    #overview,
    #contact,
    #specifications,
    #vvip-group {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.375rem;
    }

    /* Features - single column on very small */
    .features-strip-inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-item {
        padding: 1rem;
    }

    /* Overview */
    .overview-image {
        aspect-ratio: 4/3;
    }

    .overview-badge {
        bottom: 1rem;
        left: 1rem;
        font-size: 0.625rem;
        padding: 0.4rem 0.75rem;
    }

    /* Payment */
    .payment-cta-card {
        padding: 1.5rem;
    }

    /* VVIP */
    .vvip-group-bg {
        padding: 3rem 0;
    }

    .vvip-stats {
        gap: 1.25rem;
    }

    .vvip-stat-num {
        font-size: 1.75rem;
    }

    .vvip-desc {
        font-size: 0.875rem;
    }

    /* Float WhatsApp - avoid overlap */
    .float-whatsapp {
        bottom: calc(1rem + env(safe-area-inset-bottom));
        right: calc(1rem + env(safe-area-inset-right));
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}
