/* =====================================================
   AVS Pre-Launch — Main Stylesheet
   Modern, luxury real estate landing page
   ===================================================== */

/* ─── CSS Variables ────────────────────────────────── */
:root {
    --gold:          #C8A35F;
    --gold-light:    #E8CC8A;
    --gold-dark:     #A67C3A;
    --navy:          #0A1628;
    --navy-light:    #12213A;
    --navy-mid:      #1A2D4A;
    --dark-bg:       #0D1B2A;
    --dark-alt:      #0F1E33;
    --white:         #FFFFFF;
    --off-white:     #F8F9FA;
    --gray-100:      #F1F3F5;
    --gray-200:      #E9ECEF;
    --gray-400:      #CED4DA;
    --gray-600:      #6C757D;
    --gray-800:      #343A40;
    --text-light:    rgba(255,255,255,0.85);
    --text-muted:    rgba(255,255,255,0.55);
    --shadow-gold:   0 4px 30px rgba(200,163,95,0.25);
    --shadow-card:   0 8px 32px rgba(0,0,0,0.3);
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ─── Utility Classes ──────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.bg-dark-alt { background: var(--dark-alt); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--navy);
}
.btn-gold:hover::before { left: 100%; }

.btn-gold:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

.section-padding { padding: 100px 0; }

.section-badge {
    display: inline-block;
    background: rgba(200,163,95,0.15);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    border: 1px solid rgba(200,163,95,0.3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Navbar ───────────────────────────────────────── */
#mainNav {
    background: transparent;
    padding: 16px 0;
    transition: var(--transition);
    z-index: 1050;
}
#mainNav.scrolled {
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.brand-icon {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}
.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    margin-left: 8px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border: 1px solid rgba(200,163,95,0.5);
    padding: 8px 14px;
    margin-right: 4px;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(200,163,95,0.25);
}

@media (max-width: 991.98px) {
    .navbar .container {
        padding-right: 24px;
    }
}

/* ─── Hero Section ─────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/WhatsApp Image 2026-08-04 at 16.23.00 (1).jpeg') center/cover no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(10,22,40,0.6) 100%);
    z-index: 1;
}

.hero-container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: rgba(200,163,95,0.2);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(200,163,95,0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 550px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.highlight-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
}
.highlight-badge i { color: var(--gold); margin-right: 6px; }

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}
.hero-scroll-indicator a {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.7;
}
.hero-scroll-indicator a:hover { opacity: 1; }

/* ─── Hero Price Card ──────────────────────────────── */
.hero-price-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200,163,95,0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: fadeInRight 1s ease-out 0.5s both;
}
.price-card-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 24px;
    text-align: center;
}
.price-card-header h3 {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}
.price-tag {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}
.price-card-body { padding: 24px; }
.config-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.config-item:last-child { border-bottom: none; }
.config-type {
    font-weight: 600;
    color: var(--white);
    grid-column: 1;
}
.config-size {
    font-size: 0.85rem;
    color: var(--text-muted);
    grid-column: 1;
}
.config-eoi {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
}
.price-card-footer {
    padding: 0 24px 24px;
}

/* ─── About Section ────────────────────────────────── */
.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.about-stat {
    background: rgba(200,163,95,0.08);
    border: 1px solid rgba(200,163,95,0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.about-stat:hover {
    background: rgba(200,163,95,0.15);
    transform: translateY(-4px);
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-grid {
    position: relative;
}
.about-img-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.about-img-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    z-index: 2;
}
.about-img-overlay img {
    border: 4px solid var(--gold);
}

/* ─── Highlight Cards ──────────────────────────────── */
.highlight-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.highlight-card:hover {
    background: rgba(200,163,95,0.08);
    border-color: rgba(200,163,95,0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}
.highlight-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200,163,95,0.15), rgba(200,163,95,0.05));
    border: 1px solid rgba(200,163,95,0.3);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}
.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    transform: scale(1.1);
}
.highlight-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.highlight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ─── Amenity Cards ────────────────────────────────── */
.amenity-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.amenity-card:hover {
    background: rgba(200,163,95,0.1);
    border-color: rgba(200,163,95,0.3);
    transform: translateY(-6px);
}
.amenity-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200,163,95,0.2), rgba(200,163,95,0.05));
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--gold);
    transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
    background: var(--gold);
    color: var(--navy);
}
.amenity-card h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

/* ─── Pricing Cards ────────────────────────────────── */
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: rgba(200,163,95,0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}
.pricing-card.featured {
    border-color: var(--gold);
    background: rgba(200,163,95,0.08);
}
.pricing-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-type {
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}
.pricing-size {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}
.pricing-eoi {
    margin-bottom: 20px;
}
.eoi-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.eoi-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    flex-grow: 1;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-features li:last-child { border: none; }

/* ─── Benefits Section ─────────────────────────────── */
.benefits-list { margin-top: 32px; }
.benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.benefit-item:last-child { border: none; }
.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,163,95,0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
}
.benefit-item h5 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}
.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.benefits-cta-card {
    background: linear-gradient(135deg, rgba(200,163,95,0.1), rgba(200,163,95,0.03));
    border: 1px solid rgba(200,163,95,0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.benefits-cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.benefits-cta-card p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* ─── Location Section ─────────────────────────────── */
.location-map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(200,163,95,0.2);
}
.location-map-img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
}

/* Map Coming Soon Placeholder */
.location-map-placeholder {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.map-placeholder-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}
.map-pin-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(200,163,95,0.2), rgba(200,163,95,0.05));
    border: 1px solid rgba(200,163,95,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    animation: mapPinBounce 2s ease-in-out infinite;
}
.map-placeholder-inner h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 4px;
}
.map-placeholder-inner p {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.map-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0 auto;
    width: fit-content;
}
.map-address i { color: var(--gold); }
.map-placeholder-inner .btn {
    display: block;
    margin: 16px auto 0;
    width: fit-content;
}

/* Decorative grid lines */
.map-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.grid-line {
    position: absolute;
    background: rgba(200,163,95,0.06);
}
.grid-line.h1, .grid-line.h2, .grid-line.h3 {
    width: 100%;
    height: 1px;
}
.grid-line.v1, .grid-line.v2, .grid-line.v3 {
    width: 1px;
    height: 100%;
}
.grid-line.h1 { top: 25%; }
.grid-line.h2 { top: 50%; }
.grid-line.h3 { top: 75%; }
.grid-line.v1 { left: 25%; }
.grid-line.v2 { left: 50%; }
.grid-line.v3 { left: 75%; }

@keyframes mapPinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.location-connectivity { padding-left: 20px; }
.location-connectivity h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.connectivity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.connectivity-item:last-child { border: none; }
.connectivity-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,163,95,0.12);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
}
.connectivity-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
.connectivity-place {
    font-weight: 500;
    font-size: 0.95rem;
}
.connectivity-time {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(200,163,95,0.12);
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ─── Gallery ──────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--gold);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── CTA Banner ───────────────────────────────────── */
.cta-banner-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 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.05'%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");
}
.cta-banner-content {
    position: relative;
    z-index: 1;
}
.cta-banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 12px;
}
.cta-banner-subtitle {
    font-size: 1.15rem;
    color: rgba(10,22,40,0.8);
    font-weight: 500;
}

/* ─── Footer ───────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.85rem;
}
.footer-form .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: none;
}
.footer-form .form-control::placeholder { color: var(--text-muted); }

.footer-divider {
    border-color: rgba(255,255,255,0.08);
}

/* ─── Lead Modal ───────────────────────────────────── */
.lead-modal-content {
    background: var(--navy-light);
    border: 1px solid rgba(200,163,95,0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.lead-modal-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 20px 24px;
    border: none;
}
.lead-modal-header .modal-title {
    color: var(--navy);
    font-weight: 700;
}
.lead-modal-header .btn-close { filter: invert(1); }
.lead-modal-body { padding: 28px 24px; }
.lead-modal-body .form-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-light);
}
.lead-modal-body .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}
.lead-modal-body .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(200,163,95,0.15);
}
.lead-modal-body .form-control::placeholder { color: rgba(255,255,255,0.35); }
.lead-modal-body .input-group-text {
    background: rgba(200,163,95,0.12);
    border: 1px solid rgba(200,163,95,0.2);
    color: var(--gold);
}
.lead-modal-body .invalid-feedback { font-size: 0.8rem; }
.lead-modal-body .is-invalid { border-color: #dc3545 !important; }

/* ─── WhatsApp Float ───────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ─── Sticky Side CTA ──────────────────────────────── */
.sticky-side-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
}
.sticky-side-cta .btn {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 20px 14px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ─── Mobile CTA Bar ───────────────────────────────── */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1045;
    display: flex;
    background: var(--navy);
    border-top: 1px solid rgba(200,163,95,0.3);
    padding: 0;
}
.mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-weight: 600;
    font-size: 0.9rem;
}
.mobile-cta-bar a i {
    font-size: 1.1rem;
}
.cta-call {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy) !important;
}
.cta-enquire {
    background: var(--navy-light);
    color: var(--gold) !important;
    border-left: 1px solid rgba(200,163,95,0.2);
}

/* ─── Form Validation States ───────────────────────── */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #198754;
    background-image: none;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

/* ─── Animations ───────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes pulse {
    0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%  { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ═══════════════════════════════════════════════════════
   HERO V2 — MODERN ELEGANT DESIGN (overrides old hero)
   ═══════════════════════════════════════════════════════ */

.hero-section-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-v2-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.7) 40%, rgba(10,22,40,0.4) 70%, rgba(10,22,40,0.65) 100%);
    z-index: 1;
}
.hero-v2-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}
.p1 { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.p2 { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 9s; width: 3px; height: 3px; }
.p3 { left: 40%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.p4 { left: 55%; top: 70%; animation-delay: 0.5s; animation-duration: 8s; width: 5px; height: 5px; }
.p5 { left: 70%; top: 25%; animation-delay: 3s; animation-duration: 10s; }
.p6 { left: 85%; top: 55%; animation-delay: 1.5s; animation-duration: 7s; width: 3px; height: 3px; }
.p7 { left: 15%; top: 80%; animation-delay: 2.5s; animation-duration: 9s; }
.p8 { left: 60%; top: 15%; animation-delay: 4s; animation-duration: 11s; width: 2px; height: 2px; }

.hero-v2-container { position: relative; z-index: 3; }

.hero-v2-content { padding-top: 100px; }

.hero-v2-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,163,95,0.1);
    border: 1px solid rgba(200,163,95,0.25);
    backdrop-filter: blur(12px);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 10px 24px;
    border-radius: 60px;
    margin-bottom: 32px;
    text-transform: uppercase;
}
.ribbon-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-v2-title { margin-bottom: 24px; }
.title-line {
    display: block;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
}
.title-accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    letter-spacing: -2px;
}

.hero-v2-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-v2-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 60px;
    transition: var(--transition);
}
.pill:hover {
    background: rgba(200,163,95,0.15);
    border-color: rgba(200,163,95,0.3);
    color: var(--gold);
}
.pill i { color: var(--gold); font-size: 0.85rem; }
.pill-accent {
    background: linear-gradient(135deg, rgba(200,163,95,0.2), rgba(200,163,95,0.08));
    border-color: rgba(200,163,95,0.35);
    color: var(--gold);
    font-weight: 700;
}

.hero-v2-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200,163,95,0.35);
    color: var(--navy);
}
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    background: rgba(10,22,40,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.btn-hero-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.btn-hero-label { font-size: 1rem; font-weight: 700; line-height: 1.2; }
.btn-hero-sub { font-size: 0.72rem; font-weight: 400; opacity: 0.7; line-height: 1.2; }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    font-size: 0.95rem;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(200,163,95,0.4);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-v2-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: 0.9rem; }
.trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
}

/* ─── Glass Price Card V2 ──────────────────────────── */
.hero-v2-card {
    position: relative;
    margin-top: 100px;
}
.card-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold-dark));
    border-radius: 20px;
    opacity: 0.4;
    filter: blur(1px);
    z-index: 0;
}
.hero-v2-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(18,33,58,0.85);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(200,163,95,0.2);
    border-radius: 20px;
    overflow: hidden;
}
.card-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(200,163,95,0.15), rgba(200,163,95,0.05));
    border-bottom: 1px solid rgba(200,163,95,0.15);
}
.card-top-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}
.top-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
.card-top-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}
.card-top-price small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
    font-family: 'Inter', sans-serif;
}

.card-configs { padding: 8px 24px; }
.config-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.config-row:last-child { border: none; }
.config-row-featured {
    background: rgba(200,163,95,0.06);
    margin: 0 -24px;
    padding: 14px 24px;
    border-radius: 8px;
}
.config-info { display: flex; flex-direction: column; }
.config-type {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}
.config-size {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.config-eoi {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
}

.card-cta { padding: 20px 24px 24px; }
.card-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}
.card-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,163,95,0.35);
    color: var(--navy);
}
.card-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ─── Scroll Indicator V2 ──────────────────────────── */
.hero-v2-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.hero-v2-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── Reveal Animations ────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    animation: revealRight 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

/* ─── Hero V2 Keyframes ────────────────────────────── */
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}
@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    10%  { opacity: 0.6; transform: scale(1); }
    90%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-120px) scale(0); }
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1; transform: scaleY(1.2); }
}
@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes revealRight {
    to { opacity: 1; transform: translateX(0); }
}

/* ─── Hero V2 Responsive ───────────────────────────── */
@media (max-width: 991.98px) {
    .hero-v2-content { padding-top: 120px; padding-bottom: 80px; }
    .hero-v2-card { margin-top: 40px; }
    .hero-v2-trust { gap: 12px; }
    .section-padding { padding: 60px 0; }
    .about-img-overlay { display: none; }
    .sticky-side-cta { display: none !important; }
}

@media (max-width: 767.98px) {
    .hero-v2-pills { gap: 6px; }
    .pill { font-size: 0.7rem; padding: 6px 12px; }
    .hero-v2-cta { flex-direction: column; gap: 12px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .hero-v2-trust { gap: 10px; }
    .trust-divider { display: none; }
    .section-title { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .pricing-card { padding: 24px 16px; }
    .benefits-cta-card { padding: 28px 20px; }
    .benefits-cta-card .btn { width: 100%; }
    .location-connectivity { padding-left: 0; margin-top: 24px; }
    body { padding-bottom: 56px; }
    /* Fix icons on mobile */
    .highlight-badge i, .pill i, .trust-item i { font-size: 0.9rem; }
    .btn-hero-primary i, .btn-hero-secondary i { font-size: 1rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 70px; right: 16px; }
    .amenity-icon { width: 48px; height: 48px; font-size: 1.1rem; }
    .highlight-icon { width: 60px; height: 60px; font-size: 1.3rem; }
    .connectivity-icon { width: 36px; height: 36px; font-size: 0.9rem; min-width: 36px; }
    .benefit-icon { width: 40px; height: 40px; min-width: 40px; font-size: 0.9rem; }
    .footer-social a { width: 34px; height: 34px; font-size: 0.85rem; }
}

@media (max-width: 575.98px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .mobile-cta-bar a { font-size: 0.8rem; padding: 12px 8px; gap: 6px; }
    .mobile-cta-bar a i { font-size: 1rem; }
    .hero-v2-ribbon { font-size: 0.6rem; padding: 8px 16px; letter-spacing: 2px; }
    .hero-v2-scroll { display: none; }
    .navbar-brand .brand-icon { font-size: 1.1rem; padding: 3px 10px; }
    .navbar-brand .brand-text { font-size: 0.9rem; }
    .navbar .container { padding-left: 20px; padding-right: 20px; }
}
