
:root {
  --purple: #2E0F4F;
  --purple-lt: #4A1D73;
  --purple-dk: #1C0830;
  --gold: #CDA34F;
  --gold-lt: #E0BC6B;
  --gold-pale: #F6EFE3;
  --blue: #1A3C6E;
  --blue-lt: #2855A0;
  --brown: #8B5A2B;
  --cream: #F8F5F0;
  --white: #ffffff;
  --ink: #111111;
  --muted: #666666;
  --border: #e6e0d6;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(205,163,79,0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; line-height: 1.6; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: inline-block; margin-bottom: 12px; }
.gold-line { display: block; width: 48px; height: 3px; background: var(--gold); margin: 20px 0; }

/* ── NAV ── */
#topbar { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); padding: 8px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 9999; transition: all 0.3s; }
#topbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
/* LOGO SIZE INCREASED FOR DESKTOP */
.logo-wrap img { height: 100px; width: auto; object-fit: contain; transition: height 0.3s; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: var(--blue); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--brown); }
.topbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── BUTTONS & ANIMATION ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s; border-radius: 2px; }
.btn i { font-size: 14px; }

/* BLUE & BROWN GRADIENT BUTTON */
@keyframes breathingGradient {
  0% { background-position: 0% 50%; box-shadow: 0 4px 15px rgba(26,60,110,0.2); }
  50% { background-position: 100% 50%; box-shadow: 0 4px 20px rgba(139,90,43,0.4); }
  100% { background-position: 0% 50%; box-shadow: 0 4px 15px rgba(26,60,110,0.2); }
}
.btn-gradient {
  background: linear-gradient(270deg, var(--blue), var(--brown), var(--blue));
  background-size: 200% 200%;
  color: var(--white);
  animation: breathingGradient 4s ease infinite;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn-outline:hover { border-color: var(--brown); color: var(--brown); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--purple-dk); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE NAV ── */
/* Z-INDEX INCREASED TO 10000 TO FIX TOGGLE CLOSE ISSUE */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--purple-dk); z-index: 10000; flex-direction: column; align-items: left; justify-content: center; gap: 28px; padding-left: 10px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; text-decoration: none; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; font-size: 28px; color: var(--white); cursor: pointer; background: none; border: none; line-height: 1; padding: 4px 8px; z-index: 10001; }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 8px; width: 80%; }
.mobile-nav-cta a, .mobile-nav-cta button { width: 100%; justify-content: center; font-size: 14px; padding: 14px 20px; }

/* ══════════════════════════════════════
   POPUP MODAL
══════════════════════════════════════ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,4,24,0.88);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
  animation: overlayFade 0.25s ease;
}
.popup-overlay.active { display: flex; }
@keyframes overlayFade { from { opacity: 0; } to { opacity: 1; } }

.popup-card {
  background: var(--purple-dk);
  border: 1px solid var(--glass-border);
  width: 100%;
  max-width: 520px;
  position: relative;
  animation: popupSlide 0.35s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
@keyframes popupSlide { from { opacity: 0; transform: translateY(30px) scale(0.96); } to { opacity: 1; transform: none; } }

.popup-top-bar { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold)); }

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
  line-height: 1;
}
.popup-close:hover { background: rgba(205,163,79,0.2); color: var(--gold); border-color: var(--gold); }

.popup-body { padding: 32px 32px 28px; }

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(205,163,79,0.12);
  border: 1px solid rgba(205,163,79,0.3);
  padding: 5px 12px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.popup-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 6px; }
.popup-body .popup-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px; line-height: 1.5; }

.popup-perks { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.popup-perk { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.6); }
.popup-perk i { font-size: 14px; color: var(--gold); }

.popup-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.popup-field input, .popup-field select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(205,163,79,0.18);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.popup-field input::placeholder { color: rgba(255,255,255,0.3); }
.popup-field input:focus, .popup-field select:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.popup-field select option { background: var(--purple-dk); color: var(--white); }

.popup-submit {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.25s;
}
.popup-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.popup-fine { font-size: 10px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(28,8,48,0.96) 0%, rgba(26,60,110,0.82) 60%, rgba(46,15,79,0.94) 100%),
    url('https://ekanasportzcity.in/assets/images/1.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(205,163,79,0.04) 80px, rgba(205,163,79,0.04) 81px), repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(205,163,79,0.04) 80px, rgba(205,163,79,0.04) 81px); }
.hero-corner { position: absolute; top: 80px; right: 60px; width: 160px; height: 160px; border-top: 2px solid rgba(205,163,79,0.3); border-right: 2px solid rgba(205,163,79,0.3); }
.hero-corner-bl { position: absolute; bottom: 40px; left: 40px; width: 100px; height: 100px; border-bottom: 2px solid rgba(205,163,79,0.2); border-left: 2px solid rgba(205,163,79,0.2); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; width: 100%; padding: 60px 0; }
.hero-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.6s 0.2s forwards; }
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5.5vw, 72px); font-weight: 700; color: var(--white); line-height: 1.02; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.7s 0.35s forwards; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-meta { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s 0.5s forwards; }
.hero-meta-item { border-left: 2px solid var(--gold); padding-left: 14px; }
.hero-meta-item .val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-meta-item .key { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* HERO FORM CARD */
.hero-form-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); margin-top:30px; border: 1px solid rgba(205,163,79,0.3); padding: 32px 28px; position: relative; opacity: 0; animation: fadeIn 0.8s 0.8s forwards; }
.hero-form-card::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--gold); }
.hero-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.hero-form-card p { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.form-field { margin-bottom: 12px; }
.form-field input, .form-field select { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(205,163,79,0.2); border-radius: 2px; padding: 12px 16px; font-family: 'Barlow', sans-serif; font-size: 13px; color: var(--white); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-field input::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus, .form-field select:focus { border-color: var(--gold); }
.form-field select option { background: var(--purple-dk); color: var(--white); }
.form-rera { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 10px; line-height: 1.5; text-align: center; }

/* ── STATS ── */
#stats { background: var(--blue); padding: 24px 0; border-top: 3px solid var(--gold); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 14px 16px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── IMAGE GALLERY STRIP ── */
#gallery-strip { overflow: hidden; }
.gallery-row { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 320px; gap: 3px; }
.gallery-img { overflow: hidden; position: relative; cursor: pointer; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-img:hover img { transform: scale(1.06); }
.gallery-img-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,8,48,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-img:hover .gallery-img-overlay { opacity: 1; }
.gallery-img-overlay span { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ── OVERVIEW ── */
#overview { padding: 90px 0; background: var(--white); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.overview-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; color: var(--purple); line-height: 1.1; margin-bottom: 18px; }
.overview-text p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.overview-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.feat-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.feat-icon { width: 32px; height: 32px; background: var(--gold-pale); border-left: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--purple-dk); }
.feat-text { font-size: 14px; color: var(--ink); font-weight: 500; padding-top: 6px; }
.overview-visual { position: relative; }
.visual-box { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.visual-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.visual-box:hover img { transform: scale(1.04); }
.visual-badge { position: absolute; bottom: -18px; left: -18px; background: var(--gold); padding: 18px 22px; z-index: 2; }
.visual-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; color: var(--purple-dk); line-height: 1; }
.visual-badge .txt { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple-dk); font-weight: 700; }
.visual-corner { position: absolute; top: -18px; right: -18px; width: 70px; height: 70px; border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); z-index: 2; }

/* ── HIGHLIGHTS ── */
#highlights { padding: 90px 0; background: var(--purple-dk); position: relative; overflow: hidden; }
#highlights::before { content: 'EBC'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); font-family: 'Cormorant Garamond', serif; font-size: 200px; font-weight: 700; color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; }
.highlights-header { text-align: center; margin-bottom: 56px; }
.highlights-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; color: var(--white); }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(205,163,79,0.1); }
.highlight-card { background: rgba(46,15,79,0.8); padding: 32px 24px; transition: all 0.3s; border: 1px solid transparent; position: relative; }
.highlight-card:hover { background: rgba(74,29,115,0.9); border-color: var(--gold); transform: translateY(-4px); z-index: 1; }
.hc-icon { font-size: 26px; margin-bottom: 14px; color: var(--gold); }
.hc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; line-height: 1.3; margin-bottom: 8px; text-transform: uppercase; }
.hc-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.hc-num { position: absolute; top: 14px; right: 18px; font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: rgba(205,163,79,0.1); }

/* ── UNITS ── */
#units { padding: 90px 0; background: var(--cream); }
.units-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 44px; }
.units-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; color: var(--purple); line-height: 1.1; }
.units-header p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.units-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 2px 40px rgba(46,15,79,0.08); }
.units-table thead tr { background: var(--purple); }
.units-table thead th { padding: 16px 20px; text-align: left; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.units-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.units-table tbody tr:hover { background: var(--gold-pale); }
.units-table tbody td { padding: 18px 20px; font-size: 14px; color: var(--ink); }
.units-table tbody td:first-child { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--purple); }
.units-table tbody td .size { font-weight: 600; color: var(--blue); }
.price-tag { display: inline-block; background: var(--gold); color: var(--purple-dk); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
.price-tag:hover { background: var(--gold-lt); }

/* ── AMENITIES ── */
#amenities { padding: 90px 0; background: var(--white); }
.amenities-layout { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; }
.amenities-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 46px); font-weight: 700; color: var(--purple); line-height: 1.1; margin-bottom: 14px; }
.amenities-left p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.amenity-card { background: var(--cream); border: 1px solid var(--border); padding: 22px 18px; transition: all 0.3s; position: relative; overflow: hidden; text-align: center; }
.amenity-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.amenity-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(46,15,79,0.1); }
.amenity-card:hover::after { width: 100%; }
.amenity-icon { font-size: 24px; margin-bottom: 10px; color: var(--purple-dk); }
.amenity-name { font-size: 13px; font-weight: 600; color: var(--purple); }

/* ── INVESTMENT CTA STRIP ── */
#invest-strip { background: linear-gradient(90deg, var(--purple-dk) 0%, var(--blue) 100%); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); padding: 48px 0; }
.invest-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.invest-strip-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.2; }
.invest-strip-text p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 8px; }
.invest-strip-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ── ROI ── */
#roi { padding: 90px 0; background: var(--purple); }
.roi-header { text-align: center; margin-bottom: 56px; }
.roi-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; color: var(--white); }
.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.roi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(205,163,79,0.2); padding: 36px 28px; position: relative; transition: all 0.3s; }
.roi-card:hover { background: rgba(255,255,255,0.09); border-color: var(--gold); }
.roi-card-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.roi-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.roi-card-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.roi-card-bar { position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── LOCATION ── */
#location { padding: 90px 0; background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.location-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; color: var(--purple); line-height: 1.1; margin-bottom: 18px; }
.location-left p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.location-points { display: flex; flex-direction: column; gap: 12px; }
.loc-point { display: flex; gap: 14px; align-items: flex-start; padding: 12px 14px; background: var(--white); border-left: 3px solid var(--blue); transition: border-color 0.2s; }
.loc-point:hover { border-color: var(--gold); }
.loc-point-icon { font-size: 18px; flex-shrink: 0; color: var(--purple-dk); padding-top: 2px; }
.loc-point-info .lp-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.loc-point-info .lp-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.map-box { position: relative; overflow: hidden; aspect-ratio: 1; }
.map-box iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1); }
.map-overlay-tag { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(46,15,79,0.92), transparent); padding: 24px 20px 16px; }
.map-overlay-tag h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--gold); }
.map-overlay-tag p { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ── WHY INVEST ── */
#why-invest { padding: 90px 0; background: var(--white); }
.why-header { text-align: center; margin-bottom: 52px; }
.why-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; color: var(--purple); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }
.why-card { background: var(--white); padding: 36px 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; inset: 0; background: var(--purple); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s ease; z-index: 0; }
.why-card:hover::before { transform: scaleY(1); }
.why-card > * { position: relative; z-index: 1; }
.why-card:hover .wc-title { color: var(--white); }
.why-card:hover .wc-desc { color: rgba(255,255,255,0.6); }
.wc-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 700; color: var(--gold-pale); line-height: 1; margin-bottom: -8px; transition: color 0.3s; }
.why-card:hover .wc-num { color: rgba(205,163,79,0.12); }
.wc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--purple); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; transition: color 0.3s; }
.wc-desc { font-size: 14px; color: var(--muted); line-height: 1.7; transition: color 0.3s; }

/* ── TRUST STRIP ── */
#trust { background: var(--blue); padding: 36px 0; }
.trust-items { display: flex; justify-content: space-around; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--gold); }
.trust-item .ti-icon { font-size: 24px; }
.trust-item .ti-text { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════
   FAQ + CONTACT COMBINED SECTION
══════════════════════════════════════ */
#faq-contact {
  padding: 90px 0;
  background: var(--cream);
}
.faq-contact-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-contact-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--purple);
}
.faq-contact-header p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* FAQ Side */
.faq-section-head { margin-bottom: 24px; }
.faq-section-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.faq-section-head p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--gold); }
.faq-q { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 14px; user-select: none; -webkit-tap-highlight-color: transparent; }
.faq-q-text { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.faq-item.open .faq-q-text { color: var(--purple); }
.faq-toggle { width: 26px; height: 26px; min-width: 26px; background: var(--gold-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; color: var(--gold); transition: all 0.2s; }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--purple-dk); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.35s ease; font-size: 13px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 20px 18px; }
.faq-contact-link { margin-top: 20px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.faq-contact-link a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* Form Side */
.contact-form-card {
  background: var(--purple-dk);
  border: 1px solid rgba(205,163,79,0.25);
  padding: 36px 32px;
  position: sticky;
  top: 88px;
}
.contact-form-card::before { content: ''; display: block; height: 3px; background: var(--gold); margin: -36px -32px 28px; }
.contact-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.contact-form-card .form-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 24px; letter-spacing: 0.3px; }
.cf-field { margin-bottom: 12px; }
.cf-field input, .cf-field select { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(205,163,79,0.15); border-radius: 2px; padding: 12px 16px; font-family: 'Barlow', sans-serif; font-size: 13px; color: var(--white); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.cf-field input::placeholder { color: rgba(255,255,255,0.25); }
.cf-field input:focus, .cf-field select:focus { border-color: var(--gold); }
.cf-field select option { background: var(--purple-dk); }
.cf-submit { width: 100%; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 15px; border: none; cursor: pointer; margin-top: 6px; transition: all 0.25s; }
.contact-quick { display: flex; gap: 10px; margin-top: 14px; }
.contact-quick a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-decoration: none; border-radius: 2px; transition: all 0.2s; }
.cq-wa { background: #25D366; color: #fff; }
.cq-call { background: rgba(205,163,79,0.15); border: 1px solid rgba(205,163,79,0.4); color: var(--gold); }
.cq-call:hover { background: rgba(205,163,79,0.25); }
.cf-note { font-size: 10px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ── FOOTER ── */
footer { background: #0d0520; border-top: 1px solid rgba(205,163,79,0.2); padding: 40px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand .fn { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); font-weight: 700; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 10px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; color: white; text-decoration: none; transition: transform 0.2s; }
.footer-socials a:hover { transform: scale(1.1); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col a, .footer-col p { font-size: 13px; color: rgba(255,255,255,0.45); display: block; margin-bottom: 7px; text-decoration: none; transition: color 0.2s; line-height: 1.5; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); }
.rera-note { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; padding-top: 14px; line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 10px; }
.disclaimer-box { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.6; background: rgba(0,0,0,0.2); padding: 16px; border: 1px solid rgba(255,255,255,0.05); margin-top: 24px; text-align: justify; }

/* ── UPDATED FOOTER BOTTOM LINKS ── */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); margin: 0; }
.fb-links { display: flex; align-items: center; gap: 12px; }
.fb-links a { font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.fb-links a:hover { color: var(--gold); }
.fb-links .sep { color: rgba(255,255,255,0.15); font-size: 10px; }

/* Mobile view ke liye Media Query me pehle se text-align: center hai, usme ye add karein agar nahi hai */
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .fb-links { justify-content: center; width: 100%; }
}

/* ── FLOATING CTA (desktop) ── */
.float-cta { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 9998; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: transform 0.2s; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-call { background: var(--gold); color: var(--purple-dk); }

/* ── STICKY MOBILE CTA ── */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997; background: var(--purple-dk); border-top: 2px solid var(--gold); padding: 10px 16px; gap: 10px; }
.sticky-mobile-cta a, .sticky-mobile-cta button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all 0.2s; border: none; }
.smc-wa { background: #25D366; color: #fff; }
.smc-price { background: var(--gold); color: var(--purple-dk); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 500px; }
  .overview-grid, .location-grid { grid-template-columns: 1fr; }
  .visual-box { aspect-ratio: 16/9; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .faq-contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  body { padding-bottom: 70px; }
  .sticky-mobile-cta { display: flex; }
  .float-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .units-header { grid-template-columns: 1fr; }
  .invest-strip-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { gap: 16px; }
  .trust-divider { display: none; }
  .trust-items { gap: 14px; }
  .gallery-row { grid-template-columns: 1fr; height: auto; }
  .gallery-row .gallery-img { height: 200px; }
  .gallery-row .gallery-img:not(:first-child) { display: none; }
  .units-table { display: block; overflow-x: auto; }
  .contact-quick { flex-direction: column; }
 
  /* INCREASED MOBILE LOGO SIZE */
  .logo-wrap img { height: 75px; } 
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  #overview, #highlights, #units, #amenities, #roi, #location, #why-invest, #faq-contact { padding: 60px 0; }
  .hero-form-card { padding: 24px 20px; }
  .invest-strip-btns { flex-direction: column; width: 100%; }
  .invest-strip-btns .btn { justify-content: center; }
  .visual-badge { bottom: -12px; left: -12px; padding: 14px 18px; }
}

/* Touch improvements */
@media (hover: none) {
  .highlight-card:hover, .amenity-card:hover, .loc-point:hover, .why-card:hover::before { transform: none; }
  .highlight-card { border-color: rgba(205,163,79,0.15); }
}
