/* ══════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════ */
:root {
  --navy: #0d1b2a;
  --navy2: #16213e;
  --gold: #c9a84c;
  --gold2: #e2c06a;
  --white: #ffffff;
  --light: #f5f5f0;
  --light2: #eef0f5;
  --text: #333;
  --muted: #666;
  --border: #e0e0d8;
  --red: #c0392b;
  font-family: 'Outfit', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ══════════════════════════════════════════
   SHARED
══════════════════════════════════════════ */
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
}
.h2 em { font-style: italic; color: var(--gold); display: block; }
.h2-left { text-align: left; }
.sub { color: var(--muted); font-size: 1rem; margin-top: 0.5rem; }
.sec { padding: 5rem 5%; }
.sec-center { text-align: center; margin-bottom: 3rem; }
.gold-bar { width: 48px; height: 3px; background: var(--gold); margin: 0 auto 1rem; border-radius: 2px; }
.chip {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase;
  border: 1px solid var(--gold); padding: 0.3rem 0.9rem; border-radius: 30px; margin-bottom: 1rem;
}
.form-err { color: var(--red); font-size: 0.78rem; margin-top: 3px; display: none; }
.inp-error { border-color: var(--red) !important; }
.form-success-msg { text-align: center; padding: 1rem; }
.fsuc-icon { font-size: 2rem; color: #27ae60; margin-bottom: 0.5rem; }
.fsuc-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.fsuc-text { font-size: 0.9rem; color: var(--muted); margin-top: 0.3rem; }

/* ══════════════════════════════════════════
   TIMED POPUP
══════════════════════════════════════════ */
.tpop-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1rem;
}
.tpop-overlay.open { display: flex; }
.tpop-modal {
  background: var(--white); border-radius: 16px;
  max-width: 420px; width: 100%; overflow: visible;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4); position: relative;
}
.tpop-close {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.2); border: none; border-radius: 50%;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  color: var(--white); z-index: 2;
}
.tpop-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 0.85rem 1.25rem 0.75rem; text-align: center;
  border-radius: 16px 16px 0 0;
}
.tpop-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.2rem 0.75rem; border-radius: 20px; margin-bottom: 0.45rem;
}
.tpop-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); margin-bottom: 0.25rem; }
.tpop-title em { font-style: italic; color: var(--gold2); }
.tpop-sub { color: #ccc; font-size: 0.78rem; line-height: 1.4; }
.tpop-form { padding: 0.85rem 1.1rem 0.9rem; }
.tpop-notice { background: #fffbf0; border: 1px solid #f0e0b0; border-radius: 8px; padding: 0.55rem 0.75rem; font-size: 0.7rem; color: #7a6020; margin-bottom: 0.75rem; line-height: 1.4; }
.tpop-lbl { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.tpop-inp { width: 100%; padding: 0.5rem 0.85rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.88rem; outline: none; margin-bottom: 0.55rem; transition: border-color 0.2s; }
.tpop-inp:focus { border-color: var(--gold); }
.tpop-ph-row { display: flex; gap: 0; margin-bottom: 0.55rem; }
.tpop-ph-cc { background: var(--light2); border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 0 0.75rem; font-size: 0.88rem; display: flex; align-items: center; color: var(--navy); font-weight: 600; }
.tpop-ph-inp { border-radius: 0 8px 8px 0; margin-bottom: 0; }
.tpop-cons { display: flex; gap: 0.5rem; font-size: 0.68rem; color: var(--muted); margin-bottom: 0.7rem; line-height: 1.4; }
.tpop-btn { width: 100%; background: var(--gold); color: var(--navy); border: none; border-radius: 8px; padding: 0.75rem; font-size: 0.92rem; font-weight: 700; transition: background 0.2s; }
.tpop-btn:hover { background: var(--gold2); }
.tpop-skip { text-align: center; margin-top: 0.6rem; font-size: 0.75rem; color: var(--gold); font-weight: 600; cursor: default; }


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  background: var(--white);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 5%; position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  border-bottom: 1px solid var(--border);
}
.nav-left { display: flex; align-items: center; gap: 1rem; }
.nav-logo-box {
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 12px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.nav-logo { height: 32px; width: auto; object-fit: contain; display: block; }
.nav-sep { width: 1px; height: 32px; background: rgba(0,0,0,0.12); }
.nav-meta { display: flex; flex-direction: column; }
.nm-op { font-size: 0.68rem; color: var(--muted); }
.nm-pt { font-size: 0.72rem; color: var(--navy); font-weight: 600; }
.nm-rr { font-size: 0.65rem; color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-ph { display: flex; align-items: center; gap: 0.5rem; color: var(--navy); font-size: 0.9rem; font-weight: 600; }
.ph-ring { width: 32px; height: 32px; border-radius: 50%; background: rgba(201,168,76,0.12); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.ph-ring svg { stroke: var(--gold); width: 14px; height: 14px; }
.nav-dl { display: flex; align-items: center; gap: 0.4rem; background: var(--navy); color: var(--white); border: none; border-radius: 6px; padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 700; transition: background 0.2s; }
.nav-dl:hover { background: var(--navy2); }
.nav-dl svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0f3460 100%);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; padding: 4rem 5% 5rem;
}
.hbg { position: absolute; inset: 0; background: url('/cdn-cgi/image/width=1200,format=auto/shriram-park63/images/sriramhero.webp') center/cover no-repeat; opacity: 0.35; }
.hinner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; }
.hbadge { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.5); color: var(--gold); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.2rem; }
.htitle { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.htagline { color: #ccc; font-size: 1rem; max-width: 480px; margin-bottom: 2rem; }
.hprice-row { display: flex; align-items: center; gap: 2rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 1.2rem 1.5rem; margin-bottom: 2rem; width: fit-content; }
.hprice-label { font-size: 0.75rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.hprice { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.hprice sup { font-size: 1rem; }
.hconfig { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); font-weight: 600; }
.hprice-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }
.hstats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hst { display: flex; align-items: center; gap: 0.7rem; }
.hst-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hst-icon svg { stroke: var(--gold); }
.hst-v { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.hst-l { font-size: 0.72rem; color: #aaa; }
.hform-wrap { position: relative; }
.hform { background: var(--white); border-radius: 16px; padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.4); position: relative; overflow: hidden; }
.hform-top-bar { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold2)); position: absolute; top: 0; left: 0; right: 0; }
.hftitle { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; margin-top: 0.5rem; }
.hform-heading { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.4rem; }
.hform-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.hform-notice { background: #fffbf0; border: 1px solid #f0e0b0; border-radius: 8px; padding: 0.65rem; font-size: 0.72rem; color: #7a6020; margin-bottom: 1rem; line-height: 1.4; }
.lbl { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.inp { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; outline: none; margin-bottom: 0.75rem; transition: border-color 0.2s; }
.inp:focus { border-color: var(--gold); }
.ph-row { display: flex; margin-bottom: 0.75rem; }
.ph-cc { background: var(--light2); border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 0 0.8rem; font-size: 0.9rem; display: flex; align-items: center; color: var(--navy); font-weight: 600; }
.ph-inp { border-radius: 0 8px 8px 0; margin-bottom: 0; }
.cons { display: flex; gap: 0.5rem; font-size: 0.72rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.4; }
.cons input { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.hfsub { width: 100%; background: linear-gradient(135deg, var(--navy), var(--navy2)); color: var(--white); border: none; border-radius: 8px; padding: 0.9rem; font-size: 1rem; font-weight: 700; transition: opacity 0.2s; }
.hfsub:hover { opacity: 0.9; }
.hdisclaimer { background: #1a2740; border-top: 1px solid rgba(201,168,76,0.2); padding: 0.75rem 5%; font-size: 0.75rem; color: #aaa; line-height: 1.5; text-align: center; }


/* ══════════════════════════════════════════
   OVERVIEW
══════════════════════════════════════════ */
.overview { padding: 5rem 5%; background: var(--white); }
.ov-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.ov-img-col { display: flex; flex-direction: column; }
.ov-img { position: relative; border-radius: 16px 16px 0 0; overflow: hidden; }
.ov-img img { width: 100%; height: 380px; object-fit: cover; }
.ov-img-lbl { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 1.5rem 1rem 0.8rem; color: var(--white); font-size: 0.85rem; font-weight: 600; }
.ov-price-bar { display: flex; justify-content: space-between; align-items: center; background: var(--navy); border-radius: 0 0 16px 16px; padding: 1rem 1.5rem; }
.ov-pl { font-size: 0.72rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.ov-pv { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.ov-gst { font-size: 0.85rem; color: #aaa; }
.ov-body { font-size: 0.95rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.ov-feats { display: flex; flex-direction: column; gap: 1.2rem; }
.ov-feat { display: flex; gap: 1rem; align-items: flex-start; }
.ov-fi { font-size: 1.8rem; flex-shrink: 0; }
.ov-feat h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.ov-feat p { font-size: 0.85rem; color: var(--muted); }

/* ══════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════ */
.amenities { background: var(--light); }
.amenities .h2 { color: var(--navy); }
.amenities .sub { color: var(--muted); }
.am-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.2rem; max-width: 1100px; margin: 0 auto; }
.am-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem 1rem 1.5rem; text-align: center; transition: background 0.3s, border-color 0.3s, transform 0.2s; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.am-card:hover { background: var(--light2); border-color: var(--gold); transform: translateY(-4px); }
.am-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.35); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem; }
.am-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.am-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.am-cta { text-align: center; margin-top: 2.5rem; }
.am-cta-btn { display: inline-block; background: var(--gold); color: var(--navy); font-size: 1rem; font-weight: 700; padding: 0.85rem 2.2rem; border-radius: 8px; transition: background 0.2s, transform 0.2s; }
.am-cta-btn:hover { background: var(--gold2); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   LOCATION
══════════════════════════════════════════ */
.location { background: var(--light); }
.loc-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.loc-desc { font-size: 0.95rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.loc-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.loc-list-item { display: flex; gap: 1rem; align-items: flex-start; }
.loc-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.loc-list-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.loc-list-sub { font-size: 0.8rem; color: var(--muted); }
.loc-map-link { display: inline-block; color: var(--gold); font-size: 0.9rem; font-weight: 600; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.loc-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); height: 400px; }
.loc-map iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery { padding: 3rem 5%; background: var(--white); }
.gallery .sec-center { padding: 0; }
.gal-card { max-width: 1100px; margin: 2rem auto 0; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.gallery-tabs { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.gtab { padding: 0.5rem 1.5rem; border-radius: 20px; border: 1.5px solid var(--border); background: var(--white); color: var(--muted); font-size: 0.85rem; font-weight: 600; transition: all 0.2s; cursor: pointer; }
.gtab.active, .gtab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gal-carousel { position: relative; margin-top: 0; overflow: hidden; background: var(--navy); }
.gal-track { position: relative; }
.gal-slide { display: none; position: relative; height: 480px; }
.gal-slide.active { display: block; }
.gal-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-lock-overlay { position: absolute; inset: 0; background: rgba(13,27,42,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.gal-lock-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(201,168,76,0.2); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.gal-lock-title { color: var(--white); font-size: 1.2rem; font-weight: 700; }
.gal-lock-btn { background: var(--gold); color: var(--navy); border: none; border-radius: 8px; padding: 0.7rem 2rem; font-weight: 700; font-size: 0.9rem; transition: background 0.2s; }
.gal-lock-btn:hover { background: var(--gold2); }
.gal-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.92); border: none; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.35); z-index: 20; cursor: pointer; transition: background 0.2s; }
.gal-arrow:hover { background: var(--white); }
.gal-prev { left: 20px; }
.gal-next { right: 20px; }
.gal-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 20; }
.gal-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; padding: 0; }
.gal-dot.active { background: var(--gold); transform: scale(1.3); }

/* Gallery Modal */
.galm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1rem; }
.galm-overlay.open { display: flex; }
.galm-box { background: var(--white); border-radius: 16px; max-width: 420px; width: 100%; overflow: visible; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.galm-close { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.2); border: none; border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: var(--white); z-index: 2; }
.galm-top { background: linear-gradient(135deg, var(--navy), var(--navy2)); padding: 0.85rem 1.25rem 0.75rem; text-align: center; border-radius: 16px 16px 0 0; }
.galm-lock-ring { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.2); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }
.galm-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.25rem; }
.galm-sub { font-size: 0.78rem; color: #ccc; }
.galm-body { padding: 0.85rem 1.1rem 0.9rem; }
.galm-notice { background: #fffbf0; border: 1px solid #f0e0b0; border-radius: 8px; padding: 0.5rem 0.75rem; font-size: 0.7rem; color: #7a6020; margin-bottom: 0.65rem; line-height: 1.4; }
.galm-lbl { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.galm-inp { width: 100%; padding: 0.5rem 0.85rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.88rem; outline: none; margin-bottom: 0.55rem; }
.galm-inp:focus { border-color: var(--gold); }
.galm-ph-row { display: flex; margin-bottom: 0.55rem; }
.galm-ph-cc { background: var(--light2); border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 0 0.75rem; display: flex; align-items: center; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.galm-ph-inp { border-radius: 0 8px 8px 0; margin-bottom: 0; }
.galm-cons { display: flex; gap: 0.5rem; font-size: 0.68rem; color: var(--muted); margin-bottom: 0.7rem; line-height: 1.4; }
.galm-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--gold); color: var(--navy); border: none; border-radius: 8px; padding: 0.75rem; font-weight: 700; font-size: 0.92rem; transition: background 0.2s; }
.galm-btn:hover { background: var(--gold2); }
.galm-skip { text-align: center; margin-top: 0.6rem; font-size: 0.75rem; color: var(--gold); font-weight: 600; cursor: pointer; }
.galm-skip:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   VIRTUAL TOUR
══════════════════════════════════════════ */
.vt { background: var(--light); padding: 5rem 5%; text-align: center; }
.vt-ey { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.vt .gold-bar { margin-bottom: 1rem; }
.vt .h2 { margin-bottom: 0.5rem; }
.vt .sub { margin-bottom: 2rem; }
.vt-wrap { max-width: 800px; margin: 0 auto; }
.vt-video { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.vt-video img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.4s; }
.vt-video:hover img { transform: scale(1.03); }
.vt-badge { position: absolute; top: 16px; left: 16px; background: rgba(201,168,76,0.9); color: var(--navy); font-size: 0.75rem; font-weight: 700; padding: 0.35rem 0.9rem; border-radius: 20px; }
.vt-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(13,27,42,0.35); }
.vt-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 12px rgba(201,168,76,0.25); transition: transform 0.2s; }
.vt-video:hover .vt-btn { transform: scale(1.1); }
.vt-request-btn { margin-top: 1.5rem; background: var(--navy); color: var(--white); border: none; border-radius: 8px; padding: 0.85rem 2rem; font-weight: 700; font-size: 0.95rem; transition: background 0.2s; }
.vt-request-btn:hover { background: var(--navy2); }
.vt-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1rem; }
.vt-modal-overlay.open { display: flex; }
.vt-modal { background: var(--white); border-radius: 16px; padding: 0.85rem 1.1rem 0.9rem; max-width: 420px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.4); overflow: visible; }
.vt-modal-close { position: absolute; top: 10px; right: 10px; background: var(--light2); border: none; border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.vt-modal-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.3rem; }
.vt-modal-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.6rem; }
.vt-modal-notice { background: #fffbf0; border: 1px solid #f0e0b0; border-radius: 8px; padding: 0.5rem 0.75rem; font-size: 0.7rem; color: #7a6020; margin-bottom: 0.65rem; line-height: 1.4; }
.vt-lbl { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.vt-inp { width: 100%; padding: 0.5rem 0.85rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.88rem; outline: none; margin-bottom: 0.55rem; }
.vt-inp:focus { border-color: var(--gold); }
.vt-ph-row { display: flex; margin-bottom: 0.55rem; }
.vt-ph-cc { background: var(--light2); border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 0 0.75rem; display: flex; align-items: center; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.vt-ph-inp { border-radius: 0 8px 8px 0; margin-bottom: 0; }
.vt-cons { display: flex; gap: 0.5rem; font-size: 0.68rem; color: var(--muted); margin-bottom: 0.7rem; line-height: 1.4; }
.vt-cons input { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.vt-submit-btn { width: 100%; background: var(--gold); color: var(--navy); border: none; border-radius: 8px; padding: 0.75rem; font-weight: 700; font-size: 0.92rem; transition: background 0.2s; }
.vt-submit-btn:hover { background: var(--gold2); }

/* ══════════════════════════════════════════
   FLOOR PLANS
══════════════════════════════════════════ */
.fp-section { padding: 5rem 5%; background: var(--white); }
.fp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.fp-card { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.08); border: 1px solid var(--border); }
.fp-card-top { background: var(--light); padding: 1.5rem; border-bottom: 2px solid var(--gold); }
.fp-type { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); }
.fp-sub-type { font-size: 0.8rem; color: var(--gold); margin-top: 0.3rem; font-weight: 600; }
.fp-img-wrap { position: relative; height: 220px; overflow: hidden; }
.fp-img-blur { width: 100%; height: 100%; object-fit: cover; filter: blur(6px); transform: scale(1.05); }
.fp-lock-overlay { position: absolute; inset: 0; background: rgba(13,27,42,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.fp-lock-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.2); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 0.3rem; }
.fp-lock-title { color: var(--white); font-weight: 700; font-size: 0.95rem; }
.fp-lock-desc { color: #ccc; font-size: 0.78rem; }
.fp-unlock-btn { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 1rem; font-weight: 700; font-size: 0.9rem; transition: background 0.2s; }
.fp-unlock-btn:hover { background: var(--gold2); }
.fp-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1rem; }
.fp-modal-overlay.open { display: flex; }
.fp-modal { background: var(--white); border-radius: 16px; padding: 0.85rem 1.1rem 0.9rem; max-width: 420px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.4); overflow: visible; }
.fp-modal-close { position: absolute; top: 10px; right: 10px; background: var(--light2); border: none; border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.fp-modal-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.3rem; }
.fp-modal-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.6rem; }
.fp-modal-notice { background: #fffbf0; border: 1px solid #f0e0b0; border-radius: 8px; padding: 0.5rem 0.75rem; font-size: 0.7rem; color: #7a6020; margin-bottom: 0.65rem; line-height: 1.4; }
.fp-lbl { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.fp-inp { width: 100%; padding: 0.5rem 0.85rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.88rem; outline: none; margin-bottom: 0.55rem; }
.fp-inp:focus { border-color: var(--gold); }
.fp-ph-row { display: flex; margin-bottom: 0.55rem; }
.fp-ph-cc { background: var(--light2); border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 0 0.75rem; display: flex; align-items: center; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.fp-ph-inp { border-radius: 0 8px 8px 0; margin-bottom: 0; }
.fp-cons { display: flex; gap: 0.5rem; font-size: 0.68rem; color: var(--muted); margin-bottom: 0.7rem; line-height: 1.4; }
.fp-cons input { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.fp-submit-btn { width: 100%; background: var(--gold); color: var(--navy); border: none; border-radius: 8px; padding: 0.75rem; font-weight: 700; font-size: 0.92rem; transition: background 0.2s; }
.fp-submit-btn:hover { background: var(--gold2); }

/* ══════════════════════════════════════════
   DEVELOPER
══════════════════════════════════════════ */
.developer { padding: 5rem 5%; background: var(--white); }
.dev-center { text-align: center; margin-bottom: 3rem; }
.dev-gold-line { width: 60px; height: 2px; background: var(--gold); margin: 1rem auto 0; }
.dev-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.dev-left p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.dev-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0; }
.dev-stat-item { text-align: center; }
.dev-stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.dev-stat-num sup { font-size: 0.9rem; }
.dev-stat-lbl { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.dev-rera { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; }
.rh { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.5rem; }
.rr { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.2rem; }
.rn { font-size: 0.75rem; color: var(--muted); margin-top: 0.5rem; font-style: italic; }
.dev-brand-card { background: var(--white); border-radius: 16px; padding: 2.5rem; text-align: center; border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.dev-brand-logo-box { display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 12px; padding: 10px 20px; margin: 0 auto 0.75rem; width: fit-content; border: 1px solid var(--border); }
.dev-brand-logo { height: 70px; width: auto; object-fit: contain; display: block; }
.dev-brand-name { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.dev-brand-divider { width: 40px; height: 2px; background: var(--gold); margin: 1rem auto; }
.dev-brand-recog { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.dev-brand-title { font-size: 0.95rem; color: var(--navy); font-weight: 600; margin-top: 0.5rem; line-height: 1.4; }

/* ══════════════════════════════════════════
   PARTNER SPOTLIGHT
══════════════════════════════════════════ */
.partner { padding: 2.5rem 5%; background: var(--light); }
.partner-card { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 16px; padding: 1.75rem 2rem; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.07); position: relative; }
.partner-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 0.25rem 1rem; border-radius: 20px; white-space: nowrap; }
.partner-inner { display: flex; gap: 1.5rem; align-items: center; }
.partner-logo-col { text-align: center; flex-shrink: 0; }
.partner-logo-box { background: var(--white); border-radius: 8px; padding: 8px 16px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.partner-logo-img { height: 52px; width: auto; display: block; }
.partner-logo-line { display: none; }
.partner-divider { width: 1px; height: 100px; background: var(--border); flex-shrink: 0; }
.partner-title { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.3rem; }
.partner-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.75rem; }
.partner-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }
.partner-rera { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gold); }

/* ══════════════════════════════════════════
   SCHEDULE VISIT
══════════════════════════════════════════ */
.schedule { padding: 5rem 5%; background: var(--white); }
.schedule-inner { max-width: 1000px; margin: 0 auto; }
.schedule-card { background: var(--white); border-radius: 20px; padding: 3rem; display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.sched-eyebrow { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.sched-dash { font-size: 1rem; margin-right: 0.3rem; }
.sched-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.sched-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.sched-ci { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.sched-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sched-icon svg { stroke: var(--gold); }
.sched-contact { font-weight: 700; color: var(--navy); font-size: 0.95rem; display: block; }
.sched-contact:hover { color: var(--gold); }
.sched-ci small { font-size: 0.72rem; color: var(--muted); }
.sched-card-divider { width: 1px; background: var(--border); align-self: stretch; }
.sf-notice { background: #fffbf0; border: 1px solid #f0e0b0; border-radius: 8px; padding: 0.65rem; font-size: 0.72rem; color: #7a6020; margin-bottom: 1rem; line-height: 1.4; }
.sf-lbl { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.sf-inp { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; outline: none; margin-bottom: 0.75rem; transition: border-color 0.2s; }
.sf-inp:focus { border-color: var(--gold); }
.sf-ph-row { display: flex; margin-bottom: 0.75rem; }
.sf-ph-cc { background: var(--light2); border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; padding: 0 0.8rem; display: flex; align-items: center; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.sf-ph-inp { border-radius: 0 8px 8px 0; margin-bottom: 0; }
.sf-consent { display: flex; gap: 0.5rem; font-size: 0.72rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.4; }
.sf-btn { width: 100%; background: linear-gradient(135deg, var(--navy), var(--navy2)); color: var(--white); border: none; border-radius: 8px; padding: 0.9rem; font-weight: 700; font-size: 0.95rem; transition: opacity 0.2s; }
.sf-btn:hover { opacity: 0.9; }

/* ══════════════════════════════════════════
   COMPLIANCE
══════════════════════════════════════════ */
.compliance { background: var(--light); padding: 2.5rem 5%; }
.comp-title { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1.5px; }
.comp-title-line { flex: 1; height: 1px; background: var(--border); }
.comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 1rem; }
.comp-col h5 { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.comp-row { display: flex; gap: 0.5rem; font-size: 0.78rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.comp-row strong { color: var(--navy); min-width: 120px; }
.comp-row span { color: var(--muted); }
.comp-note { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.comp-note a { color: var(--gold); text-decoration: underline; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--navy); }
.ft-main { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; padding: 3.5rem 5% 2rem; max-width: 1200px; margin: 0 auto; }
.ft-logo-box {
  margin-bottom: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
}
.ft-logo-img { height: 38px; width: auto; object-fit: contain; display: block; }
.ft-operated { font-size: 0.75rem; color: #aaa; margin-bottom: 0.2rem; }
.ft-partner { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.ft-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.ft-ci { display: flex; align-items: center; gap: 0.6rem; }
.ft-ci-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-ci-icon svg { stroke: #aaa; }
.ft-ci-icon-gold svg { stroke: var(--gold); }
.ft-ci a { font-size: 0.85rem; color: #ccc; transition: color 0.2s; }
.ft-ci a:hover { color: var(--gold); }
.ft-col-label { font-size: 0.68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; font-weight: 700; }
.ft-col-heading { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 1rem; }
.ft-corp-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.ft-corp-lbl { font-size: 0.75rem; color: #888; min-width: 110px; }
.ft-corp-val { font-size: 0.75rem; color: #ccc; font-weight: 600; }
.ft-brand-text { font-size: 0.78rem; color: #888; line-height: 1.6; margin-bottom: 0.75rem; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.08); padding: 1.2rem 5%; max-width: 1200px; margin: 0 auto; }
.ft-bottom-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.ft-bottom-left span { font-size: 0.78rem; color: #666; }
.ft-bottom-left a { font-size: 0.78rem; color: #888; }
.ft-bottom-left a:hover { color: var(--gold); }
.ft-bottom-right { font-size: 0.78rem; color: #666; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hinner { grid-template-columns: 1fr; }
  .hform-wrap { max-width: 480px; margin: 0 auto; }
  .ov-grid, .dev-grid { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { flex-direction: row; gap: 0.5rem; padding: 0.65rem 1rem; justify-content: space-between; }
  .nav-left { width: auto; }
  .nav-right { width: auto; gap: 0.5rem; }
  .nav-sep { display: none; }
  .nav-meta { display: none; }
  .nm-op { display: none; }
  .hprice-row { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .hprice-divider { display: none; }
  .loc-content-grid { grid-template-columns: 1fr; }
  .loc-map { height: 280px; }
  .schedule-card { grid-template-columns: 1fr; }
  .sched-card-divider { display: none; }
  .dev-stats { grid-template-columns: repeat(2, 1fr); }
  .ft-main { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .partner-inner { flex-direction: column; align-items: center; gap: 1rem; }
  .partner-logo-box { padding: 8px 16px; }
  .partner-logo-img { height: 48px; }
  .partner-divider { display: none; }
  .partner-content { text-align: center; }
  .partner-desc { display: block; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .sec { padding: 3.5rem 4%; }
  .htitle { font-size: 2rem; }
  .am-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .nav-ph-text { display: none; }
  .nav-dl { padding: 0.5rem 0.75rem; font-size: 0.78rem; }
}
