/* ============================================
   AVS Pre-Launch - Modern Real Estate Design
   Clean, Light, Professional
   ============================================ */

:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --primary-dark: #0B2618;
    --accent: #B8860B;
    --accent-light: #DAA520;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F5F3EF;
    --light-gray: #E8E6E1;
    --gray: #9CA3AF;
    --dark-gray: #4B5563;
    --text: #1F2937;
    --text-light: #6B7280;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.7; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.82rem;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { color: rgba(255,255,255,0.8); }
.top-bar-left a:hover { color: var(--accent-light); }
.top-bar-left i { color: var(--accent-light); margin-right: 4px; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
    color: rgba(255,255,255,0.6);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.top-bar-right a:hover { background: var(--accent); color: white; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-text { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--primary); line-height: 1; }
.logo-sub { font-size: 0.6rem; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; gap: 4px; }
.nav-link {
    color: var(--dark-gray);
    font-size: 0.88rem; font-weight: 500;
    padding: 8px 14px; border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(27,67,50,0.06); }
.nav-link.active { font-weight: 600; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border: none; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); color: white; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: var(--shadow-md); color: white; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline-light { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }
.btn-call { background: var(--primary); color: white; font-size: 0.85rem; padding: 10px 20px; }
.btn-call:hover { background: var(--primary-light); color: white; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background: var(--white); z-index: 9999; transition: right 0.3s; overflow-y: auto; box-shadow: var(--shadow-xl); }
.mobile-menu.active { right: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--light-gray); }
.mobile-close { background: none; border: none; font-size: 1.8rem; color: var(--text); cursor: pointer; }
.mobile-menu-links { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-link { color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 500; transition: all 0.2s; }
.mobile-link:hover { background: var(--cream); color: var(--primary); }
.mobile-call { margin-top: 16px; text-align: center; }
.mobile-cta { margin-top: 10px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; min-height: 90vh; display: flex; align-items: center;
    overflow: hidden; color: white;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,38,24,0.88) 0%, rgba(27,67,50,0.75) 40%, rgba(11,38,24,0.85) 100%);
}
.hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particle {
    position: absolute; bottom: -20px; border-radius: 50%;
    background: rgba(218,165,32,0.35);
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }

/* Entrance animations */
.anim-item {
    opacity: 0; transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease-out forwards;
}
.anim-item[data-delay="100"] { animation-delay: 0.1s; }
.anim-item[data-delay="200"] { animation-delay: 0.2s; }
.anim-item[data-delay="300"] { animation-delay: 0.3s; }
.anim-item[data-delay="400"] { animation-delay: 0.4s; }
.anim-item[data-delay="500"] { animation-delay: 0.5s; }
.anim-item[data-delay="600"] { animation-delay: 0.6s; }
.anim-item[data-delay="700"] { animation-delay: 0.7s; }
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
    font-size: 0.82rem; font-weight: 600; color: white; letter-spacing: 0.5px;
}
.badge-pulse { width: 8px; height: 8px; background: var(--accent-light); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(218,165,32,0.5); } 50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(218,165,32,0); } }

.hero-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15; margin-bottom: 20px; color: white; }
.hero-title-line { display: block; }
.hero-highlight {
    background: linear-gradient(90deg, var(--accent-light), #f0d78c, var(--accent-light));
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 600px; line-height: 1.8; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.hero-stat {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md); padding: 16px;
    display: flex; align-items: center; gap: 12px;
    transition: all 0.3s;
}
.hero-stat:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.hero-stat .stat-icon {
    width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 1.1rem; flex-shrink: 0;
}
.hero-stat .stat-value { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: white; display: block; }
.hero-stat .stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); display: block; }

.hero-cta { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-trust-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.trust-badge i { color: var(--accent-light); }

.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-indicator a { display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.5); font-size: 0.75rem; transition: color 0.3s; }
.hero-scroll-indicator a:hover { color: white; }
.hero-scroll-indicator i { animation: scrollBounce 2s ease-in-out infinite; font-size: 1.2rem; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============================================
   RIBBON
   ============================================ */
.ribbon-strip { background: var(--primary); padding: 14px 0; }
.ribbon-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.ribbon-item { display: flex; align-items: center; gap: 8px; color: white; font-size: 0.9rem; font-weight: 500; }
.ribbon-item i { color: var(--accent-light); }
.ribbon-item strong { color: var(--accent-light); }
.ribbon-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.25); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-badge {
    display: inline-block; background: rgba(27,67,50,0.08); color: var(--primary);
    padding: 6px 18px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text); margin-bottom: 12px; }
.text-gradient { color: var(--primary); }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-content .section-text { color: var(--text-light); font-size: 1rem; margin-bottom: 28px; line-height: 1.8; }
.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.about-stat { text-align: center; padding: 14px 8px; background: var(--cream); border-radius: var(--radius-md); }
.about-stat-num { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.about-stat-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.about-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); text-align: center; }
.about-card-icon { width: 72px; height: 72px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin: 0 auto 20px; }
.about-card-inner h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; }
.about-card-inner p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.about-card-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: left; }
.about-card-values span { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text); }
.about-card-values i { color: var(--primary); }

/* ============================================
   HIGHLIGHTS
   ============================================ */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.highlight-card {
    background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg);
    padding: 36px 28px; transition: all 0.25s; position: relative; overflow: hidden;
}
.highlight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.highlight-icon {
    width: 56px; height: 56px; background: var(--cream); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary);
    margin-bottom: 18px; transition: all 0.25s;
}
.highlight-card:hover .highlight-icon { background: var(--primary); color: white; }
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.highlight-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   CONFIGURATIONS
   ============================================ */
.config-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.config-card {
    background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg);
    padding: 28px 22px; position: relative; transition: all 0.25s; display: flex; flex-direction: column;
}
.config-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.config-card-featured { border-color: var(--accent); border-width: 2px; }
.config-badge {
    position: absolute; top: -1px; right: 16px;
    background: var(--primary); color: white;
    padding: 5px 14px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.config-badge-gold { background: var(--accent); }
.config-header { text-align: center; margin-bottom: 20px; padding-top: 8px; }
.config-icon { width: 50px; height: 50px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); margin: 0 auto 14px; }
.config-header h3 { font-size: 1.15rem; margin-bottom: 4px; }
.config-size { color: var(--text-light); font-size: 0.88rem; }
.config-price { text-align: center; padding: 16px; margin-bottom: 20px; background: var(--cream); border-radius: var(--radius-md); }
.config-price-label { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.config-price-value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.config-features { list-style: none; margin-bottom: 20px; flex: 1; }
.config-features li { padding: 7px 0; color: var(--text); font-size: 0.88rem; display: flex; align-items: center; gap: 10px; }
.config-features i { color: var(--primary); font-size: 0.8rem; }
.config-disclaimer { text-align: center; color: var(--text-light); font-size: 0.82rem; margin-top: 28px; font-style: italic; }

/* ============================================
   FLOOR PLANS
   ============================================ */
.floorplan-showcase { background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.floorplan-tabs { display: flex; background: var(--cream); overflow-x: auto; }
.floorplan-tab {
    flex: 1; min-width: 140px; padding: 14px 20px; background: none; border: none;
    color: var(--text-light); font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s; border-bottom: 3px solid transparent; white-space: nowrap;
}
.floorplan-tab:hover { color: var(--text); background: rgba(255,255,255,0.5); }
.floorplan-tab.active { color: var(--primary); border-bottom-color: var(--primary); background: var(--white); font-weight: 600; }
.floorplan-content { display: grid; grid-template-columns: 1.5fr 1fr; min-height: 400px; }
.floorplan-display { padding: 24px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--light-gray); background: var(--cream); }
.floorplan-image { max-width: 100%; max-height: 520px; object-fit: contain; border-radius: var(--radius-md); transition: opacity 0.3s; cursor: zoom-in; box-shadow: var(--shadow-md); }
.floorplan-image:hover { transform: scale(1.01); }
.floorplan-info { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.floorplan-info h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; }
.floorplan-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.spec-item { padding: 10px; background: var(--cream); border-radius: var(--radius-sm); }
.spec-label { display: block; font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.spec-value { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--text); }
.floorplan-note { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; font-style: italic; }

/* ============================================
   LOCATION
   ============================================ */
.location-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: start; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--light-gray); box-shadow: var(--shadow-sm); }
.map-container iframe { display: block; }
.location-highlight {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--cream); border-radius: var(--radius-md); padding: 22px; margin-bottom: 28px;
}
.location-highlight-icon { width: 48px; height: 48px; background: var(--primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; flex-shrink: 0; }
.location-highlight h3 { font-size: 1.05rem; margin-bottom: 4px; }
.location-highlight p { color: var(--text-light); font-size: 0.9rem; }
.location-nearby-title { font-size: 1.05rem; margin-bottom: 14px; }
.location-landmarks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.landmark-item { display: flex; gap: 14px; align-items: center; padding: 10px 14px; background: var(--cream); border-radius: var(--radius-sm); transition: all 0.2s; }
.landmark-item:hover { background: rgba(27,67,50,0.06); }
.landmark-item i { color: var(--primary); font-size: 1.1rem; width: 28px; text-align: center; flex-shrink: 0; }
.landmark-name { display: block; font-size: 0.9rem; color: var(--text); }
.landmark-dist { display: block; font-size: 0.78rem; color: var(--accent); font-weight: 600; }

/* ============================================
   AMENITIES
   ============================================ */
.amenities-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.amenity-item {
    text-align: center; padding: 28px 14px; background: var(--white);
    border: 1px solid var(--light-gray); border-radius: var(--radius-lg); transition: all 0.25s;
}
.amenity-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary); }
.amenity-icon {
    width: 52px; height: 52px; background: var(--cream); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary);
    margin: 0 auto 14px; transition: all 0.25s;
}
.amenity-item:hover .amenity-icon { background: var(--primary); color: white; }
.amenity-item span { font-size: 0.82rem; font-weight: 500; color: var(--text); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; transition: all 0.25s; border: 1px solid var(--light-gray); }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gallery-item-large { grid-column: span 2; }
.gallery-img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item-large .gallery-img { height: 300px; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }

/* ============================================
   BENEFITS + CTA
   ============================================ */
.benefits-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 52px; align-items: center; }
.benefits-list { display: flex; flex-direction: column; gap: 22px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-check { width: 36px; height: 36px; background: rgba(27,67,50,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); font-size: 1rem; }
.benefit-item h4 { font-size: 1rem; margin-bottom: 4px; }
.benefit-item p { color: var(--text-light); font-size: 0.88rem; }
.cta-card {
    background: var(--primary); border-radius: var(--radius-lg); padding: 44px 36px;
    text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-card::before {
    content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%); border-radius: 50%;
}
.cta-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; position: relative; }
.cta-card p { color: rgba(255,255,255,0.8); margin-bottom: 28px; position: relative; font-size: 0.95rem; }
.cta-card .btn-accent { position: relative; }
.cta-trust { display: flex; justify-content: center; gap: 20px; margin-top: 20px; position: relative; }
.cta-trust span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.cta-trust i { color: var(--accent-light); margin-right: 4px; }

/* ============================================
   FINAL CTA
   ============================================ */
.section-final-cta { background: var(--cream); padding: 70px 0; }
.final-cta-content { text-align: center; max-width: 660px; margin: 0 auto; }
.final-cta-content h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.final-cta-content p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 36px; }
.final-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer .logo-text { color: white; font-size: 1.5rem; }
.footer .logo-sub { color: var(--accent-light); }
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin: 14px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-title { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 18px; color: white; letter-spacing: 0.5px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: all 0.2s; }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact i { color: var(--accent-light); margin-top: 3px; width: 14px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-contact a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--accent-light); }

/* ============================================
   WHATSAPP + STICKY BAR
   ============================================ */
.whatsapp-float {
    position: fixed; bottom: 85px; right: 22px; width: 56px; height: 56px;
    background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: white; z-index: 999; box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: all 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--light-gray); padding: 10px 16px; z-index: 998; gap: 10px; justify-content: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.08); }
.sticky-btn { flex: 1; padding: 12px; border: none; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; }
.sticky-call { background: #25D366; color: white; }
.sticky-enquire { background: var(--primary); color: white; }

/* ============================================
   MODAL / POPUP
   ============================================ */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s; padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
    background: var(--white); border-radius: var(--radius-lg); max-width: 520px; width: 100%;
    transform: scale(0.95) translateY(10px); transition: transform 0.3s; box-shadow: var(--shadow-xl);
}
.modal-overlay.active .modal-container { transform: scale(1) translateY(0); }
.modal-close {
    position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
    background: var(--cream); border: none; border-radius: 50%; color: var(--text);
    font-size: 1.3rem; cursor: pointer; z-index: 1; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--primary); color: white; }
.modal-body { }
.modal-form-wrap { padding: 36px; }
.modal-form-header { text-align: center; margin-bottom: 8px; }
.modal-title { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 6px; line-height: 1.3; color: var(--text); }
.modal-subtitle { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }

/* Form */
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input-icon { position: relative; display: flex; align-items: stretch; }
.input-icon i { position: absolute; left: 12px; top: 14px; color: var(--gray); font-size: 0.85rem; z-index: 1; pointer-events: none; }
.input-icon input, .input-icon select {
    width: 100%; height: 44px; padding: 0 12px 0 38px; background: var(--cream);
    border: 1px solid var(--light-gray); border-radius: var(--radius-sm);
    color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
    transition: all 0.2s; outline: none; box-sizing: border-box;
}
.input-icon textarea {
    width: 100%; min-height: 80px; padding: 14px 12px 12px 38px; background: var(--cream);
    border: 1px solid var(--light-gray); border-radius: var(--radius-sm);
    color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
    transition: all 0.2s; outline: none; box-sizing: border-box; resize: vertical;
}
.input-icon select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.input-icon input:focus, .input-icon select:focus, .input-icon textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,67,50,0.1); }
.input-icon input::placeholder, .input-icon textarea::placeholder { color: var(--gray); }
.form-error { display: block; color: #dc2626; font-size: 0.78rem; margin-top: 3px; min-height: 16px; }
.btn-submit { margin-top: 6px; font-size: 0.95rem; }
.form-disclaimer { text-align: center; color: var(--text-light); font-size: 0.75rem; margin-top: 14px; }
.form-disclaimer i { color: var(--primary); margin-right: 4px; }
.modal-success { max-width: 460px; }
.modal-success .modal-body { }
.success-content { padding: 44px 36px; text-align: center; }
.success-icon { font-size: 3.5rem; color: #16a34a; margin-bottom: 20px; }
.success-content h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 14px; }
.success-content p { color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .config-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .nav-actions .btn-nav-cta { display: none; }
    .hamburger { display: flex; }
    .sticky-mobile-bar { display: flex; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero { min-height: auto; padding: 80px 0 50px; }
    .hero-title { font-size: 1.9rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-stat { padding: 12px; }
    .stat-value { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .about-grid, .location-grid, .benefits-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
    .config-grid { grid-template-columns: 1fr; }
    .floorplan-content { grid-template-columns: 1fr; }
    .floorplan-display { border-right: none; border-bottom: 1px solid var(--light-gray); min-height: 280px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item-large { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .modal-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .ribbon-inner { flex-direction: column; gap: 8px; }
    .ribbon-divider { display: none; }
}
@media (max-width: 480px) {
    .section { padding: 50px 0; }
    .btn-lg { padding: 14px 28px; font-size: 0.9rem; }
    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item-large { grid-column: span 1; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s; padding: 20px; cursor: pointer;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; color: white; font-size: 1.6rem;
    cursor: pointer; z-index: 1; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-img {
    max-width: 90vw; max-height: 90vh; object-fit: contain;
    border-radius: var(--radius-md); box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transform: scale(0.9); transition: transform 0.35s ease-out; cursor: default;
}
.lightbox-overlay.active .lightbox-img { transform: scale(1); }
.lightbox-caption {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 10px 24px; border-radius: 50px; color: white; font-size: 0.88rem; font-weight: 500;
    white-space: nowrap;
}
