/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1A1A2E; background: #fff; line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --p: #E67A2B; --pd: #C95F10; --s: #1A1A2E;
  --muted: #F5F4F2; --mfg: #6B7280; --bdr: #E5E3DF;
  --serif: Georgia, serif;
}

/* ── UTILS ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: .5rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--s); margin-bottom: 1rem; }
.section-sub { font-size: 1.1rem; color: var(--mfg); max-width: 44rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.75rem; border-radius: .625rem; font-weight: 600; font-size: 1rem; transition: all .2s ease; white-space: nowrap; cursor: pointer; border: none; }
.btn-primary { background: var(--p); color: #fff; }
.btn-primary:hover { background: var(--pd); transform: translateY(-1px); }
.btn-outline-white { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-outline-dark { background: transparent; color: var(--s); border: 1.5px solid var(--s); }
.btn-outline-dark:hover { background: var(--s); color: #fff; }
.btn-white { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-white:hover { background: rgba(255,255,255,.2); }
.btn-sv { background: var(--s); color: #fff; border: none; box-shadow: 0 4px 20px rgba(0,0,0,.25); font-weight: 700; }
.btn-sv:hover { background: var(--p); transform: translateY(-2px); }
.btn-sv svg { color: var(--p); }
.btn-sv:hover svg { color: #fff; }
.btn-outline { background: transparent; color: var(--s); border: 1.5px solid var(--s); }
.btn-outline:hover { background: var(--s); color: #fff; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: none; }
.rl { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.rr { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
.rl.on, .rr.on { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-l.on, .reveal-r.on { opacity: 1; transform: none; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 0; transition: all .3s ease; }
#nav.sc { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); box-shadow: 0 1px 12px rgba(0,0,0,.07); padding: .75rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: -.04em; color: #fff; transition: color .3s; }
#nav.sc .nav-logo { color: var(--s); }
.nav-logo span { color: var(--p); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a,
.nav-links button { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); transition: color .2s; }
#nav.sc .nav-links a,
#nav.sc .nav-links button { color: #000; }
.nav-links a:hover,
.nav-links button:hover { color: var(--p); }

/* ── Localities dropdown ─────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-drop-trigger { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: .35rem; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); transition: color .2s; padding: 0; font-family: inherit; }
#nav.sc .nav-drop-trigger { color: #000; }
.nav-drop-trigger:hover, .nav-dropdown:hover .nav-drop-trigger { color: var(--p); }
.nav-drop-trigger svg { transition: transform .2s; }
.nav-dropdown:hover .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-menu { position: absolute; top: calc(100% + .9rem); left: 50%; transform: translateX(-50%) translateY(-6px); background: #fff; border-radius: 14px; box-shadow: 0 12px 36px rgba(0,0,0,.13); border: 1px solid rgba(0,0,0,.07); min-width: 210px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; z-index: 200; overflow: hidden; padding: .4rem 0; }
.nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu .drop-item { display: flex; align-items: center; gap: .55rem; padding: .65rem 1.1rem; font-size: .875rem; color: var(--s); transition: background .15s, color .15s; text-decoration: none; }
.nav-drop-menu .drop-item:hover:not(.drop-item-dim) { background: rgba(230,122,43,.07); color: var(--p); }
.nav-drop-menu .drop-item svg { color: #22c55e; flex-shrink: 0; }
.nav-drop-menu .drop-item-dim { opacity: .45; cursor: default; pointer-events: none; }
.drop-soon { margin-left: auto; font-size: .7rem; background: rgba(230,122,43,.1); color: var(--p); border-radius: 20px; padding: .12rem .5rem; font-weight: 700; letter-spacing: .03em; }
.drop-divider { height: 1px; background: rgba(0,0,0,.06); margin: .3rem 0; }

/* ── Mobile localities accordion ─────────────────────── */
.mob-loc-toggle { width: auto; background: none; border: none; font-family: inherit; font-size: 1.4rem; font-weight: 600; color: var(--s); display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 0; cursor: pointer; }
.mob-loc-toggle:hover { color: var(--p); }
.mob-loc-toggle svg { transition: transform .25s; }
.mob-loc-toggle.open svg { transform: rotate(180deg); }
.mob-loc-sub { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: .5rem 0 0; overflow: hidden; transition: max-height .3s ease; max-height: 0; }
.mob-loc-sub a { font-size: 1rem; color: var(--s); opacity: .8; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.nav-cta { display: flex; align-items: center; gap: .45rem; padding: .6rem 1.25rem; border-radius: .5rem; font-weight: 600; font-size: .9rem; background: #fff; color: var(--s); transition: all .2s; }
#nav.sc .nav-cta { background: var(--p); color: #fff; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; background: none; border: none; padding: 0; }
.hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
#nav.sc .hamburger span { background: var(--s); }
#mob { position: fixed; inset: 0; background: #fff; z-index: 300; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
#mob.open { transform: translateX(0); }
#mob a { font-size: 1.4rem; font-weight: 600; color: var(--s); text-align: center; }
#mob a:hover { color: var(--p); }
.close-btn { position: absolute; top: 1.25rem; right: 1.25rem; width: 2.75rem; height: 2.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--s); line-height: 1; background: rgba(26,26,46,.06); border: none; cursor: pointer; transition: background .2s; z-index: 1; }
.close-btn:hover { background: rgba(230,122,43,.12); color: var(--p); }

/* ── QUICK STATS SLIDER (Ayodhyapuram) ─────────────────────── */
.qs-outer { background: rgba(255,255,255,.08); }
.qs-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5px; }
.qs-item { background: rgba(26,26,46,.95); padding: 1.5rem 1rem; text-align: center; backdrop-filter: blur(8px); }

/* ── HERO (HOME) ─────────────────────────────────────────────── */
#hero { min-height: 100dvh; position: relative; background: var(--s); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2000&q=80'); background-size: cover; background-position: center; opacity: .35; }
.hero-ov { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(26,26,46,.92) 55%, rgba(26,26,46,.5) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; gap: 3rem; padding-top: 5rem; }
.hero-text { flex: 1; color: #fff; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem 1rem; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-size: .85rem; font-weight: 500; color: #fff; backdrop-filter: blur(6px); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--serif); font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.12; margin-bottom: 1.25rem; }
.hero-title span { color: var(--p); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 36rem; margin-bottom: 2rem; font-weight: 300; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-agent-strip { display: none; align-items: center; gap: 1rem; margin-top: 1.5rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 1rem; padding: 1rem 1.25rem; width: 100%; }
.hero-agent-avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(160deg, #2a2a45, #1A1A2E); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-agent-info { flex: 1; }
.hero-agent-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: #fff; }
.hero-agent-title { color: var(--p); font-size: .8rem; font-weight: 500; margin-top: .2rem; }
.hero-agent-badge { display: flex; align-items: center; gap: .4rem; margin-top: .4rem; background: rgba(255,255,255,.08); border-radius: 2rem; padding: .25rem .6rem; width: fit-content; }
.hero-agent-badge span { font-size: .75rem; color: rgba(255,255,255,.75); }
.hero-card { position: relative; flex: 0 0 340px; max-width: 340px; }
.hero-card-img { border-radius: 1.5rem; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 32px 64px rgba(0,0,0,.4); aspect-ratio: 3/4; position: relative; background: linear-gradient(160deg, #2a2a45, #1A1A2E); display: flex; align-items: center; justify-content: center; }
.hero-card-ov { position: absolute; bottom: 0; inset-x: 0; background: linear-gradient(to top, var(--s), transparent); padding: 3rem 1.5rem 1.5rem; }
.hero-card-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: #fff; }
.hero-card-title { color: var(--p); font-weight: 500; font-size: .9rem; }
.hero-exp { position: absolute; top: 15.5rem; left: -3.5rem; background: #fff; border-radius: .875rem; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,.18); }
.exp-icon { width: 3rem; height: 3rem; background: rgba(230,122,43,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--p); }
.exp-label { font-size: .8rem; color: var(--mfg); }
.exp-val { font-weight: 700; color: var(--s); font-size: .95rem; }

/* ── ABOUT ─────────────────────────────────────────────────── */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: var(--mfg); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.about-text strong { color: var(--s); }
.about-quote { margin-top: 2rem; padding-left: 1.5rem; border-left: 4px solid var(--p); font-family: var(--serif); font-size: 1.2rem; color: var(--s); font-style: italic; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-card { background: var(--muted); border-radius: 1.25rem; padding: 2rem; text-align: center; border: 1px solid var(--bdr); transition: border-color .2s; }
.stat-card:hover { border-color: rgba(230,122,43,.4); }
.stat-icon { width: 3rem; height: 3rem; background: rgba(230,122,43,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--p); }
.stat-val { font-size: 1.75rem; font-weight: 700; color: var(--s); }
.stat-lbl { font-size: .85rem; color: var(--mfg); font-weight: 500; }

/* ── SERVICES ─────────────────────────────────────────────── */
#services { background: rgba(245,244,242,.5); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card { background: #fff; border-radius: 1.25rem; padding: 2rem; border: 1px solid var(--bdr); box-shadow: 0 1px 4px rgba(0,0,0,.04); transition: all .25s; }
.svc-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); border-color: rgba(230,122,43,.45); transform: translateY(-3px); }
.svc-icon { width: 3.5rem; height: 3.5rem; border-radius: .875rem; background: var(--muted); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--s); transition: background .25s, color .25s; }
.svc-card:hover .svc-icon { background: rgba(230,122,43,.12); color: var(--p); }
.svc-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--s); margin-bottom: .5rem; }
.svc-card p { font-size: .95rem; color: var(--mfg); line-height: 1.7; }

/* ── LOCALITIES ──────────────────────────────────────────── */
#localities { background: #fff; }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: stretch; }
.loc-card { border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--bdr); background: #fff; transition: all .3s; box-shadow: 0 1px 4px rgba(0,0,0,.04); display: flex; flex-direction: column; }
.loc-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.13); transform: translateY(-4px); }
.loc-img { height: 11.2rem; position: relative; overflow: hidden; flex-shrink: 0; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; display: block; }
.loc-card:hover .loc-img img { transform: scale(1.08); }
.loc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.92) 0%, rgba(26,26,46,.45) 50%, rgba(26,26,46,.08) 100%); }
.loc-badge { position: absolute; top: .85rem; right: .85rem; background: rgba(26,26,46,.72); color: #fff; font-size: .78rem; font-weight: 700; padding: .28rem .65rem; border-radius: 2rem; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15); }
.loc-lbl { position: absolute; bottom: 1rem; left: 1.25rem; right: 1.25rem; }
.loc-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: .2rem; line-height: 1.2; }
.loc-price { display: inline-block; font-size: .82rem; font-weight: 700; color: #fff; background: var(--p); padding: .2rem .6rem; border-radius: 2rem; margin-top: .3rem; }
.loc-body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.loc-desc { font-size: .92rem; color: var(--mfg); margin-bottom: 1rem; line-height: 1.65; flex: 1; }
.loc-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.1rem; }
.loc-tag { font-size: .78rem; font-weight: 600; color: var(--s); background: rgba(26,26,46,.05); border: 1px solid rgba(26,26,46,.1); border-radius: 2rem; padding: .22rem .6rem; }
.loc-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .88rem; color: var(--p); transition: color .2s; }
.loc-link:hover { color: var(--s); }
.loc-link svg { transition: transform .2s; }
.loc-link:hover svg { transform: translateX(4px); }

/* ── TRUST ─────────────────────────────────────────────────── */
#trust { background: var(--s); color: #fff; position: relative; overflow: hidden; }
.tg1 { position: absolute; top: 0; right: 0; width: 600px; height: 600px; background: rgba(230,122,43,.15); border-radius: 50%; filter: blur(100px); transform: translate(30%, -40%); pointer-events: none; }
.tg2 { position: absolute; bottom: 0; left: 0; width: 500px; height: 500px; background: rgba(230,122,43,.1); border-radius: 50%; filter: blur(90px); transform: translate(-30%, 40%); pointer-events: none; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 3rem; position: relative; z-index: 1; }
.trust-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.trust-icon { flex-shrink: 0; width: 3.5rem; height: 3.5rem; border-radius: .875rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: var(--p); }
.trust-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.trust-item p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ── TESTIMONIALS SLIDER ────────────────────────────────── */
#testimonials { background: #fff; }
.slider-wrap { overflow: hidden; }
.t-track { display: flex; transition: transform .5s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.t-slide { min-width: 100%; }
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.t-card { background: var(--muted); border-radius: 1.5rem; padding: 2.5rem; position: relative; overflow: hidden; }
.q-icon { position: absolute; top: 1.5rem; right: 1.5rem; width: 5rem; height: 5rem; opacity: .08; color: var(--p); }
.stars { display: flex; gap: .2rem; margin-bottom: 1.25rem; color: #F59E0B; font-size: 1.1rem; }
.t-text { font-size: 1rem; color: rgba(26,26,46,.8); line-height: 1.8; font-style: italic; margin-bottom: 2rem; position: relative; z-index: 1; }
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-avatar { width: 3.25rem; height: 3.25rem; border-radius: 50%; object-fit: cover; border: 2.5px solid rgba(230,122,43,.35); flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.t-name { font-weight: 700; color: var(--s); font-size: 1rem; }
.t-role { font-size: .83rem; color: var(--mfg); }
@keyframes nudge-left  { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-4px)} }
@keyframes nudge-right { 0%,100%{transform:translateX(0)} 50%{transform:translateX( 4px)} }
.s-arrow { flex-shrink: 0; width: 3.25rem; height: 3.25rem; border-radius: 50%; background: #fff; border: 1.5px solid var(--bdr); display: flex; align-items: center; justify-content: center; color: var(--s); cursor: pointer; transition: background .2s, border-color .2s, box-shadow .2s, color .2s; box-shadow: 0 2px 10px rgba(0,0,0,.07); }
.s-arrow:hover { background: var(--p); border-color: var(--p); color: #fff; box-shadow: 0 6px 20px rgba(230,122,43,.35); }
.s-arrow-prev { animation: nudge-left 2.2s ease-in-out infinite; }
.s-arrow-next { animation: nudge-right 2.2s ease-in-out infinite; }
.s-arrow-prev:hover,.s-arrow-next:hover { animation: none; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.s-btn { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: #fff; border: 1.5px solid var(--bdr); display: flex; align-items: center; justify-content: center; color: var(--s); cursor: pointer; transition: all .2s; flex-shrink: 0; }
.s-btn:hover { background: var(--p); border-color: var(--p); color: #fff; }
.s-dots { display: flex; gap: .5rem; align-items: center; }
.s-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--bdr); cursor: pointer; transition: all .25s; padding: 0; border: none; }
.s-dot.active { background: var(--p); width: 1.5rem; border-radius: .25rem; }
.dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--bdr); cursor: pointer; transition: all .25s; padding: 0; border: none; }
.dot.on { background: var(--p); width: 1.5rem; border-radius: .25rem; }

/* ── VIDEO TESTIMONIALS ─────────────────────────────────── */
.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.v-card { background: #fff; border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--bdr); box-shadow: 0 1px 4px rgba(0,0,0,.05); transition: all .25s; }
.v-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.12); transform: translateY(-3px); }
.v-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--s); cursor: pointer; }
.v-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.v-thumb:hover img { transform: scale(1.06); }
.v-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,26,46,.35); transition: background .2s; }
.v-thumb:hover .v-play { background: rgba(26,26,46,.52); }
.v-circle { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--p); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(230,122,43,.5); transition: transform .2s; }
.v-circle svg { margin-left: 3px; }
.v-thumb:hover .v-circle { transform: scale(1.1); }
.v-dur { position: absolute; top: .6rem; left: .75rem; background: rgba(0,0,0,.65); color: #fff; font-size: .7rem; font-weight: 700; padding: .2rem .55rem; border-radius: .3rem; }
.v-body { padding: 1.25rem 1.5rem 1.5rem; }
.v-quote { font-size: .92rem; color: rgba(26,26,46,.78); line-height: 1.65; font-style: italic; margin: .5rem 0 1rem; }
.v-author { display: flex; align-items: center; gap: .75rem; }
.v-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--bdr); }
.v-name { font-weight: 700; color: var(--s); font-size: .9rem; }
.v-role { font-size: .78rem; color: var(--mfg); }
.vid-modal { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.85); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 1.5rem; }
.vid-modal.open { display: flex; }
.vid-modal-box { width: 100%; max-width: 900px; border-radius: 1.25rem; overflow: hidden; position: relative; background: #000; }
.vid-modal-box iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.vid-close { position: absolute; top: -3rem; right: 0; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.6rem; padding: .15rem .85rem; border-radius: .5rem; cursor: pointer; transition: background .2s; line-height: 1.5; }
.vid-close:hover { background: rgba(255,255,255,.28); }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { background: rgba(245,244,242,.35); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.ci-icon { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 50%; background: #fff; border: 1px solid var(--bdr); box-shadow: 0 2px 8px rgba(0,0,0,.06); display: flex; align-items: center; justify-content: center; color: var(--p); }
.ci-label { font-weight: 700; color: var(--s); margin-bottom: .2rem; }
.ci-val { font-size: 1rem; color: var(--mfg); line-height: 1.6; }
.ci-val a { color: var(--mfg); transition: color .2s; }
.ci-val a:hover { color: var(--p); }
.map-wrap { border-radius: 1rem; overflow: hidden; border: 1px solid var(--bdr); height: 220px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.form-box { background: #fff; border-radius: 1.5rem; border: 1px solid var(--bdr); box-shadow: 0 8px 32px rgba(0,0,0,.08); padding: 2.5rem; }
.form-box h3 { font-size: 1.5rem; font-weight: 700; color: var(--s); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-box label { display: block; font-size: .88rem; font-weight: 600; color: var(--s); margin-bottom: .4rem; }
.form-box input, .form-box textarea, .form-box select {
  width: 100%; padding: .8rem 1rem; border-radius: .625rem; border: 1.5px solid transparent;
  background: var(--muted); font-size: .95rem; font-family: inherit; color: var(--s);
  outline: none; transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
.form-box select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236B7280' stroke-width='1.5' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center; background-size: 1rem; padding-right: 2.5rem;
}
.form-box input:focus, .form-box textarea:focus, .form-box select:focus { border-color: var(--p); background: #fff; }
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select { border-color: #dc2626; background: #fff7f7; }
.form-group.has-error label { color: #b91c1c; }
.form-error { display: none; margin-top: .45rem; font-size: .84rem; font-weight: 500; color: #b91c1c; }
.form-error.show { display: block; }
.form-box textarea { resize: vertical; min-height: 8rem; }
.form-submit { width: 100%; padding: 1rem; background: var(--p); color: #fff; border-radius: .625rem; font-size: 1.05rem; font-weight: 700; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: .5rem; border: none; cursor: pointer; }
.form-submit:hover { background: var(--pd); transform: translateY(-1px); }
.form-submit:disabled { opacity: .75; cursor: wait; transform: none; }
.form-ok { display: none; border-radius: .625rem; padding: 1rem 1.25rem; font-weight: 600; text-align: center; margin-top: 1rem; background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.form-ok.show { display: block; }
.form-status-error { display: none; border-radius: .625rem; padding: 1rem 1.25rem; font-weight: 600; text-align: center; margin-top: 1rem; background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.form-status-error.show { display: block; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--s); color: rgba(255,255,255,.65); }
.ft-top { padding: 4.5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; align-items: start; }
.ft-logo { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: #fff; letter-spacing: -.04em; margin-bottom: .75rem; }
.ft-logo span { color: var(--p); }
.ft-tagline { font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 22rem; }
.ft-socials { display: flex; gap: .75rem; flex-wrap: wrap; }
.soc { width: 2.4rem; height: 2.4rem; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); transition: all .2s; }
.soc:hover { background: var(--p); border-color: var(--p); color: #fff; transform: translateY(-2px); }
.ft-col-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1.25rem; }
.ft-nav { display: flex; flex-direction: column; gap: .65rem; }
.ft-nav a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; display: flex; align-items: center; gap: .4rem; }
.ft-nav a::before { content: '›'; color: var(--p); font-size: 1rem; }
.ft-nav a:hover { color: #fff; }
.ft-contact { display: flex; flex-direction: column; gap: .85rem; }
.ft-contact li { display: flex; gap: .75rem; align-items: flex-start; font-size: .88rem; color: rgba(255,255,255,.65); }
.ft-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--p); }
.ft-contact a { color: rgba(255,255,255,.65); transition: color .2s; }
.ft-contact a:hover { color: #fff; }
.ft-cta { display: inline-block; margin-top: 1.5rem; background: var(--p); color: #fff; padding: .65rem 1.4rem; border-radius: .5rem; font-weight: 700; font-size: .88rem; transition: all .2s; }
.ft-cta:hover { background: var(--pd); transform: translateY(-1px); }
.ft-bot { padding: 1.25rem 0; }
.ft-bot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.ft-copy { font-size: .82rem; }
.ft-links { display: flex; gap: 1.5rem; }
.ft-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .2s; }
.ft-links a:hover { color: rgba(255,255,255,.85); }
.ft-rera { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ── FLOATING BTNS ──────────────────────────────────────── */
#wa { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 99; width: 3.4rem; height: 3.4rem; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform .2s, box-shadow .2s; text-decoration: none; }
#wa:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wa-ring { position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: 0; animation: wa-ripple 2.4s ease-out infinite; pointer-events: none; }
.wa-ring:nth-child(2) { animation-delay: .8s; }
.wa-ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes wa-ripple { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(2.5); opacity: 0; } }
#wa .wa-tip { position: absolute; right: 110%; bottom: 50%; transform: translateY(50%); background: var(--s); color: #fff; font-size: .75rem; font-weight: 700; white-space: nowrap; padding: .35rem .75rem; border-radius: .4rem; opacity: 0; pointer-events: none; transition: opacity .2s; }
#wa:hover .wa-tip { opacity: 1; }
#sv { position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 99; display: flex; align-items: center; gap: .5rem; background: var(--s); color: #fff; padding: .7rem 1.25rem; border-radius: .625rem; font-weight: 700; font-size: .88rem; box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: all .2s; text-decoration: none; }
#sv:hover { background: var(--p); transform: translateY(-2px); }
#sv svg { color: var(--p); flex-shrink: 0; }
#sv:hover svg { color: #fff; }

/* ── LOCALITY HERO STYLES ─────────────────────────────── */
.hero-circle-1 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(45,106,79,.35); filter: blur(80px); top: -10%; right: 5%; z-index: 1; }
.hero-circle-2 { position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(230,122,43,.2); filter: blur(60px); bottom: 5%; left: 10%; z-index: 1; }
.hero-pill { padding: .3rem .85rem; border-radius: 999px; font-size: .78rem; font-weight: 600; background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2); }
.hero-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5px; background: rgba(255,255,255,.12); border-radius: 1rem; overflow: hidden; margin-top: 2.5rem; }
.hero-stat { background: rgba(0,0,0,.2); padding: 1.25rem 1rem; text-align: center; backdrop-filter: blur(8px); }
.hero-stat-val { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--p); line-height: 1; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .3rem; }
.hero-visual { display: flex; flex-direction: column; gap: 1.25rem; flex-shrink: 0; min-width: 420px; }
.hero-card-main { border-radius: 1.25rem; overflow: hidden; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 24px 60px rgba(0,0,0,.4); position: relative; }
.locality-img { width: 100%; height: 240px; background: linear-gradient(160deg, #2d6a4f, #1a3d28); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.loc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.85) 0%, rgba(26,26,46,.1) 60%, transparent 100%); }
.loc-img-label { position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; }
.loc-name-big { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: #fff; }
.loc-name-sub { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: .2rem; }
.price-tag { position: absolute; top: 1rem; right: 1rem; background: var(--p); color: #fff; border-radius: .5rem; padding: .4rem .85rem; font-size: .85rem; font-weight: 700; }
.hero-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mini-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: .875rem; padding: 1rem; backdrop-filter: blur(8px); display: flex; align-items: center; gap: .75rem; }
.mini-icon { width: 2.5rem; height: 2.5rem; border-radius: .5rem; background: rgba(230,122,43,.2); display: flex; align-items: center; justify-content: center; color: var(--p); flex-shrink: 0; }
.mini-val { font-weight: 700; color: #fff; font-size: .95rem; }
.mini-lbl { font-size: .75rem; color: rgba(255,255,255,.6); }

/* ── HIGHLIGHTS ─────────────────────────────────────────── */
.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hl-card { border-radius: 1.25rem; border: 1px solid var(--bdr); padding: 1.75rem 1.5rem; background: var(--muted); transition: all .25s; text-align: center; }
.hl-card:hover { border-color: rgba(230,122,43,.4); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.hl-icon { width: 3.25rem; height: 3.25rem; border-radius: 50%; background: rgba(230,122,43,.12); color: var(--p); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.hl-card h4 { font-size: 1rem; font-weight: 700; color: var(--s); margin-bottom: .35rem; }
.hl-card p { font-size: .88rem; color: var(--mfg); line-height: 1.6; }

/* ── AMENITIES ──────────────────────────────────────────── */
.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.amenity-visual { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); border: 1px solid var(--bdr); }
.amenity-map { background: linear-gradient(160deg, #d4edda, #a8d5b5); height: 380px; position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; padding: 2rem; }
.map-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--p); border: 2px solid #fff; box-shadow: 0 0 0 4px rgba(230,122,43,.25); }
.map-dot::after { content: attr(data-label); position: absolute; top: -1.75rem; left: 50%; transform: translateX(-50%); background: var(--s); color: #fff; font-size: .65rem; font-weight: 700; padding: .15rem .5rem; border-radius: .3rem; white-space: nowrap; }
.map-dot-link { cursor: pointer; transition: transform .2s, box-shadow .2s; text-decoration: none; display: block; }
.map-dot-link:hover { transform: scale(1.5); box-shadow: 0 0 0 6px rgba(230,122,43,.4); }
.map-dot-link:hover::after { background: #E67A2B; }
.map-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--s); opacity: .7; position: relative; z-index: 1; }
.amenity-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.amenity-item { display: flex; align-items: center; gap: 1rem; }
.amenity-icon { flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: .625rem; background: rgba(230,122,43,.1); color: var(--p); display: flex; align-items: center; justify-content: center; }
.amenity-item h5 { font-weight: 700; color: var(--s); font-size: .95rem; }
.amenity-item p { font-size: .85rem; color: var(--mfg); }
.amenity-dist { margin-left: auto; font-size: .8rem; font-weight: 600; color: var(--p); background: rgba(230,122,43,.1); padding: .2rem .6rem; border-radius: 999px; flex-shrink: 0; }

/* ── PROPERTIES ─────────────────────────────────────────── */
#properties { background: var(--s); }
.prop-section-header { text-align: center; max-width: 44rem; margin: 0 auto 3.5rem; }
.prop-section-header .section-title { color: #fff; }
.prop-section-header .section-sub { color: rgba(255,255,255,.7); }
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.prop-card { border-radius: 1.25rem; border: 1px solid var(--bdr); background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.04); transition: all .25s; overflow: hidden; }
.prop-card:hover { border-color: rgba(230,122,43,.4); box-shadow: 0 12px 36px rgba(0,0,0,.11); transform: translateY(-3px); }
.prop-header { height: 160px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.prop-badge { position: absolute; top: .75rem; left: .75rem; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); border-radius: .5rem; font-size: .72rem; font-weight: 700; color: #fff; padding: .2rem .65rem; text-transform: uppercase; letter-spacing: .06em; }
.prop-price-pill { position: absolute; bottom: .75rem; right: .75rem; background: var(--p); color: #fff; border-radius: .5rem; padding: .3rem .8rem; font-size: .88rem; font-weight: 700; }
.prop-body { padding: 1.25rem 1.5rem 1.5rem; }
.prop-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .75rem; }
.prop-tag { font-size: .7rem; font-weight: 600; padding: .2rem .6rem; border-radius: .35rem; background: rgba(26,26,46,.05); color: var(--s); border: 1px solid rgba(26,26,46,.08); }
.prop-title { font-size: 1.05rem; font-weight: 700; color: var(--s); margin-bottom: .35rem; }
.prop-meta { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.prop-meta-item { display: flex; align-items: center; gap: .3rem; font-size: .82rem; color: var(--mfg); }
.prop-meta-item svg { color: var(--p); }
.prop-divider { height: 1px; background: var(--bdr); margin-bottom: 1rem; }
.prop-footer { display: flex; justify-content: space-between; align-items: center; }
.prop-emi { font-size: .78rem; color: var(--mfg); }

/* ── WHY ME ─────────────────────────────────────────── */
#why { background: var(--s); color: #fff; position: relative; overflow: hidden; }
.why-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(230,122,43,.12); filter: blur(90px); top: -20%; right: -10%; pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-text { position: relative; z-index: 1; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; }
.why-check { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: rgba(230,122,43,.2); color: var(--p); display: flex; align-items: center; justify-content: center; margin-top: .1rem; }
.why-item-text strong { color: #fff; display: block; font-size: .95rem; margin-bottom: .15rem; }
.why-item-text span { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ── INVESTMENT ─────────────────────────────────────────── */
.inv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.inv-card { background: #fff; border-radius: 1.25rem; border: 1px solid var(--bdr); padding: 2rem; text-align: center; transition: all .25s; }
.inv-card:hover { border-color: var(--p); box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.inv-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgba(230,122,43,.1); color: var(--p); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.inv-card h4 { font-size: 1rem; font-weight: 700; color: var(--s); margin-bottom: .4rem; }
.inv-card p { font-size: .88rem; color: var(--mfg); line-height: 1.7; }
.inv-badge { display: inline-block; margin-top: .75rem; padding: .2rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 700; background: rgba(34,197,94,.12); color: #16a34a; }

/* ── PROJECTS HUB ─────────────────────────────────────── */
.proj-hero { background: var(--s); padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.proj-hero::before { content: ''; position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1800&q=60'); background-size: cover; opacity: .1; }
.proj-hero-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.97) 60%, rgba(230,122,43,.2) 100%); }
.proj-hero-inner { position: relative; z-index: 2; }
.proj-card { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--bdr); background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: all .3s; }
.proj-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.13); transform: translateY(-4px); }
.proj-img { height: 260px; position: relative; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proj-card:hover .proj-img img { transform: scale(1.06); }
.proj-img-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.85), transparent 55%); }
.proj-badges { position: absolute; top: 1rem; left: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.proj-badge { font-size: .72rem; font-weight: 700; padding: .25rem .65rem; border-radius: 2rem; backdrop-filter: blur(4px); }
.proj-badge-rera { background: rgba(34,197,94,.18); border: 1px solid rgba(34,197,94,.4); color: #22c55e; }
.proj-badge-live { background: rgba(230,122,43,.18); border: 1px solid rgba(230,122,43,.4); color: #E67A2B; }
.proj-price-pill { position: absolute; bottom: 1rem; right: 1rem; background: var(--p); color: #fff; border-radius: .5rem; padding: .35rem .85rem; font-size: .85rem; font-weight: 700; }
.proj-body { padding: 1.75rem 2rem 2rem; }
.proj-dev { font-size: .78rem; color: var(--mfg); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.proj-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--s); margin-bottom: .5rem; }
.proj-loc { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--mfg); margin-bottom: 1.25rem; }
.proj-loc svg { color: var(--p); }
.proj-features { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: 1.5rem; }
.proj-feat { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: var(--s); }
.proj-feat svg { color: #22c55e; flex-shrink: 0; }
.proj-actions { display: flex; gap: 1rem; }

/* ── LOCALITIES HUB ─────────────────────────────────────── */
.loc-hub-hero { background: var(--s); padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.loc-hub-hero::before { content: ''; position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1800&q=60'); background-size: cover; opacity: .1; }
.loc-hub-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.97) 60%, rgba(230,122,43,.2) 100%); }
.loc-hub-inner { position: relative; z-index: 2; }
.loc-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.loc-hub-card { border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--bdr); background: #fff; transition: all .3s; }
.loc-hub-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.13); transform: translateY(-4px); }
.loc-hub-img { height: 200px; position: relative; overflow: hidden; }
.loc-hub-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.loc-hub-card:hover .loc-hub-img img { transform: scale(1.06); }
.loc-hub-body { padding: 1.5rem; }

/* ── TERMS & CONDITIONS ─────────────────────────────────────── */
.tc-hero { position: relative; background: var(--s); padding: 8rem 0 5rem; overflow: hidden; }
.tc-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=60') center/cover no-repeat; opacity: .08; }
.tc-hero-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.97) 60%, rgba(230,122,43,.25) 100%); }
.tc-hero-inner { position: relative; z-index: 2; }
.tc-hero-title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.15; margin: .5rem 0 1rem; }
.tc-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 36rem; line-height: 1.7; }
.tc-hero-sub strong { color: rgba(255,255,255,.9); }
.tc-layout { display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: start; }
.tc-toc { position: sticky; top: 6rem; }
.tc-toc-box { background: var(--muted); border: 1px solid var(--bdr); border-radius: 1rem; padding: 1.5rem; }
.tc-toc-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--p); margin-bottom: 1rem; }
.tc-toc-list { display: flex; flex-direction: column; gap: .55rem; list-style: none; }
.tc-toc-list li a { font-size: .85rem; color: var(--mfg); transition: color .2s; line-height: 1.4; display: block; }
.tc-toc-list li a:hover { color: var(--p); }
.tc-notice { display: flex; gap: .85rem; align-items: flex-start; background: rgba(230,122,43,.07); border: 1px solid rgba(230,122,43,.2); border-radius: .875rem; padding: 1rem 1.25rem; margin-bottom: 2.5rem; }
.tc-notice svg { flex-shrink: 0; margin-top: 2px; }
.tc-notice p { font-size: .9rem; color: var(--s); line-height: 1.65; }
.tc-section { margin-bottom: 2.75rem; padding-bottom: 2.75rem; border-bottom: 1px solid var(--bdr); }
.tc-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tc-section-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--s); margin-bottom: 1rem; line-height: 1.3; }
.tc-para { font-size: .97rem; color: #374151; line-height: 1.8; margin-bottom: .9rem; }
.tc-para:last-child { margin-bottom: 0; }
.tc-contact-block { margin-top: 1.25rem; background: var(--muted); border: 1px solid var(--bdr); border-radius: .875rem; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .85rem; }
.tc-contact-row { display: flex; align-items: center; gap: .75rem; font-size: .92rem; color: var(--s); }
.tc-contact-row svg { color: var(--p); flex-shrink: 0; }
.tc-contact-row a { color: var(--p); font-weight: 600; transition: color .2s; }
.tc-contact-row a:hover { color: var(--pd); }

  /* ── PROPERTIES ─────────────────────────────────────────── */
.prop-card { border-radius: 1.25rem; border: 1px solid var(--bdr); background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.04); transition: all .25s; overflow: hidden; }
.prop-card:hover { border-color: rgba(230,122,43,.4); box-shadow: 0 12px 36px rgba(0,0,0,.11); transform: translateY(-3px); }
.prop-header { height: 160px; position: relative; overflow: hidden; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.prop-badge { position: absolute; top: .75rem; left: .75rem; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); border-radius: .5rem; font-size: .72rem; font-weight: 700; color: #fff; padding: .2rem .65rem; text-transform: uppercase; letter-spacing: .06em; }
.prop-price-pill { position: absolute; bottom: .75rem; right: .75rem; background: var(--p); color: #fff; border-radius: .5rem; padding: .3rem .8rem; font-size: .88rem; font-weight: 700; }
.prop-body { padding: 1.25rem 1.5rem 1.5rem; }
.prop-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .75rem; }
.prop-tag { font-size: .7rem; font-weight: 600; padding: .2rem .6rem; border-radius: .35rem; background: rgba(26,26,46,.05); color: var(--s); border: 1px solid rgba(26,26,46,.08); }
.prop-title { font-size: 1.05rem; font-weight: 700; color: var(--s); margin-bottom: .35rem; }
.prop-meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
.prop-meta-item { display: flex; align-items: center; gap: .3rem; font-size: .82rem; color: var(--mfg); }
.prop-meta-item svg { color: var(--p); }
.prop-divider { height: 1px; background: var(--bdr); margin-bottom: 1rem; }
.prop-footer { display: flex; justify-content: space-between; align-items: center; }
.prop-emi { font-size: .78rem; color: var(--mfg); }


/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid, .loc-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { flex: 0 0 280px; max-width: 280px; }
  .hero-exp { left: -2rem; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hl-grid { grid-template-columns: 1fr 1fr; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .inv-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .loc-hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .qs-outer { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .qs-outer::-webkit-scrollbar { display: none; }
  .qs-track { display: flex; width: max-content; gap: .5px; }
  .qs-item { flex: 0 0 33.33vw; scroll-snap-align: start; min-width: 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .loc-grid, .trust-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { align-items: flex-start; min-height: auto; padding-bottom: 2.5rem; }
  .hero-inner { flex-direction: column; padding-top: 6rem; padding-bottom: 0; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-card { display: none; }
  .hero-agent-strip { display: flex; }
  .hero-exp { display: none; }
  .hero-title { font-size: 2.2rem; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft-bot-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .form-row { grid-template-columns: 1fr; }
  .amenity-grid, .why-grid { grid-template-columns: 1fr; }
  .prop-grid, .inv-grid, .hl-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .loc-hub-grid { grid-template-columns: 1fr; }
  .hero-btns-full { flex-direction: column; align-items: flex-start; }
  .hero-btns-full .btn { width: 70%; text-align: center; justify-content: center; }
  .tc-layout { grid-template-columns: 1fr; }
  .tc-toc { position: static; display: none; }
  .tc-hero { padding: 6rem 0 3.5rem; }
  .v-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .hero-btns-full .btn { width: 100%; }
}


/* ── FAQ ── */
.faq-wrap { max-width: 820px; margin: 0 auto; }

.faq-tabs { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; gap: .5rem; padding-bottom: .25rem; margin-bottom: 1.75rem; }
.faq-tabs::-webkit-scrollbar { display: none; }
.faq-tab { flex-shrink: 0; padding: .5rem 1.1rem; border-radius: 2rem;
  border: 1.5px solid #e2e8f0; font-size: .84rem; font-weight: 600;
  color: #64748b; background: #fff; cursor: pointer; transition: all .2s; white-space: nowrap; }
.faq-tab.active { background: #E67A2B; border-color: #E67A2B; color: #fff; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1.5px solid #e2e8f0; border-radius: 1rem;
  overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: rgba(230,122,43,.35);
  box-shadow: 0 4px 20px rgba(230,122,43,.1); }

.faq-q { width: 100%; text-align: left; padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; background: #fff; cursor: pointer; transition: background .2s;
  border: none; font-family: inherit; }
.faq-item.open .faq-q { background: rgba(230,122,43,.04); }

.faq-q-text { font-size: .97rem; font-weight: 600; color: #1A1A2E;
  line-height: 1.45; flex: 1; }
.faq-item.open .faq-q-text { color: #E67A2B; }

.faq-icon { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  border: 1.5px solid #e2e8f0; display: flex; align-items: center;
  justify-content: center; color: #64748b; transition: all .25s; }
.faq-item.open .faq-icon { background: #E67A2B; border-color: #E67A2B;
  color: #fff; transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; font-size: .93rem;
  color: #64748b; line-height: 1.75; }
.faq-a-inner a { color: #E67A2B; font-weight: 600; }
.faq-a-inner a:hover { text-decoration: underline; }
.faq-a-inner ul { padding-left: 1.25rem; list-style: disc;
  margin-top: .5rem; display: flex; flex-direction: column; gap: .3rem; }


