/* ============================================================
   DHOLERA SMART CITY — PREMIUM REAL ESTATE LANDING PAGE
   Design System: White-dominant, Gold accents, Navy authority
   ============================================================ */

/* ─── 1. RESET & VARIABLES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand Colours */
  --navy:       #0B2545;
  --navy-deep:  #071830;
  --royal:      #1A56DB;
  --gold:       #D4A017;
  --gold-lt:    #F5C842;
  --gold-dk:    #A87C0E;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --cream:      #F4F0E8;
  --smoke:      #F0EDE8;
  --border:     #E2DDD6;
  --text:       #1A1A2E;
  --text-2:     #4A4A6A;
  --text-3:     #7A7A9A;
  --green:      #2ECC71;

  /* Shadows */
  --sh-sm:  0 1px 4px rgba(0,0,0,.08);
  --sh-md:  0 4px 16px rgba(0,0,0,.10);
  --sh-lg:  0 12px 40px rgba(0,0,0,.14);
  --sh-xl:  0 24px 60px rgba(0,0,0,.18);
  --sh-gold:0 8px 32px rgba(212,160,23,.30);

  /* Typography */
  --h: 'Poppins', sans-serif;
  --b: 'Inter',   sans-serif;

  /* Layout */
  --hh: 72px;
  --max: 1180px;
  --r:   10px;
  --r-lg:16px;
  --ease: cubic-bezier(.25,.8,.25,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body { font-family: var(--b); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--h); line-height: 1.2; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── UTILITIES ─── */
.tc  { text-align: center; }
.tw  { color: var(--white) !important; }
.tg  { color: var(--gold)  !important; }
.tn  { color: var(--navy)  !important; }
.t2  { color: var(--text-2)!important; }
.t3  { color: var(--text-3)!important; }

/* ─── SECTION RHYTHM ─── */
.sec { padding: 96px 0; }
.sec-sm { padding: 64px 0; }
.sec-hd { margin-bottom: 56px; max-width: 680px; }
.sec-hd.tc { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--h);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 12px;
}
.eyebrow::before { content: '— '; }
.eyebrow::after  { content: ' —'; }

.sec-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.sec-title.tw { color: var(--white); }

.sec-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}
.sec-sub.tw { color: rgba(255,255,255,.75); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--h);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-family: var(--h);
  font-weight: 600;
  font-size: .8rem;
  padding: 5px 13px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-lt); flex-shrink:0; }

/* ═══════════════════════════════════
   2. HEADER
═══════════════════════════════════ */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--hh);
  z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}

.hdr-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-family: var(--h);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .06em;
  color: var(--white);
  transition: color .3s;
}
.logo-tagline {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gold-lt);
  text-transform: uppercase;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--h);
  font-weight: 500;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

/* Header CTA */
.hdr-cta { flex-shrink: 0; }
.hdr-cta .btn { font-size: .875rem; padding: 10px 22px; }

/* Scrolled state */
.hdr.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  height: 64px;
}
.hdr.scrolled .logo-brand  { color: var(--navy); }
.hdr.scrolled .logo-tagline { color: var(--gold-dk); }
.hdr.scrolled .nav-links a { color: var(--text-2); }
.hdr.scrolled .nav-links a:hover,
.hdr.scrolled .nav-links a.active { color: var(--navy); background: var(--smoke); }
.hdr.scrolled .hdr-cta .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}
.hdr.scrolled .hdr-cta .btn-gold { color: var(--navy-deep); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hdr.scrolled .hamburger span { background: var(--navy); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════
   3. HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--navy-deep);
  background-image: url('assets/dholera_aerial.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: var(--hh);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 24, 48, 0.88) 0%,
    rgba(11, 37, 69, 0.75) 50%,
    rgba(11, 37, 69, 0.45) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 28px;
}

/* Hero Left */
.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.hero-title .accent { color: var(--gold-lt); }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.80);
  font-weight: 400;
  line-height: 1.6;
  max-width: 540px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-pill {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: var(--r);
  padding: 18px 16px;
}
.stat-pill .n {
  display: block;
  font-family: var(--h);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-pill .l {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Right — Lead Card */
.lead-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  overflow: hidden;
}
.lead-card-head {
  background: var(--navy);
  padding: 24px 28px;
  text-align: center;
}
.lead-card-head h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.lead-card-head p { font-size: .82rem; color: rgba(255,255,255,.65); }

.lead-card-body { padding: 26px 28px 20px; }

/* Form */
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-2);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--b);
  font-size: .92rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,160,23,.15);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-3); }

.lead-card-foot {
  padding: 14px 28px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.trust-line {
  font-size: .78rem;
  color: var(--text-3);
  font-weight: 500;
}
.trust-line .chk { color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════
   4. WHY DHOLERA — KEY HIGHLIGHTS
═══════════════════════════════════ */
.why-sec {
  background: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* Media block */
.media-block { display: flex; flex-direction: column; gap: 14px; }
.main-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.main-media img { width: 100%; height: 100%; object-fit: cover; }
.play-btn-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,37,69,.35);
  cursor: pointer;
  transition: background .3s;
}
.play-btn-wrap:hover { background: rgba(11,37,69,.55); }
.play-circle {
  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(212,160,23,.25);
  transition: transform .3s;
}
.play-btn-wrap:hover .play-circle { transform: scale(1.1); }
.play-circle svg { width: 28px; height: 28px; color: var(--navy-deep); fill: currentColor; margin-left: 4px; }
.play-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(11,37,69,.85);
  color: var(--white);
  font-family: var(--h);
  font-weight: 600;
  font-size: .78rem;
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.thumb-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--sh-sm);
}
.thumb-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.thumb-item:hover img { transform: scale(1.08); }
.thumb-item .tp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,37,69,.45);
  color: var(--white);
  font-size: 1.1rem;
}

/* Highlights list */
.hl-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  transition: box-shadow .25s, transform .25s;
}
.hl-item:hover { box-shadow: var(--sh-md); transform: translateX(4px); }
.hl-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.hl-text h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.hl-text p  { font-size: .82rem; color: var(--text-2); }

/* ═══════════════════════════════════
   5. COUNTERS / WHY INVEST NOW
═══════════════════════════════════ */
.ctr-sec {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.ctr-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/dholera_aerial.png') center / cover no-repeat;
  opacity: .12;
}
.ctr-sec .wrap { position: relative; z-index: 2; }

.ctr-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 64px;
  border: 1px solid rgba(255,255,255,.10);
}
.ctr-cell {
  padding: 36px 24px;
  text-align: center;
  background: rgba(255,255,255,.04);
  transition: background .3s;
}
.ctr-cell:hover { background: rgba(255,255,255,.09); }
.ctr-num {
  font-family: var(--h);
  font-weight: 800;
  font-size: 3rem;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.ctr-unit { font-size: 1.6rem; color: var(--gold); }
.ctr-lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* Benefits grid */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ben-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: background .3s, transform .3s;
}
.ben-card:hover { background: rgba(255,255,255,.10); transform: translateY(-4px); }
.ben-card h4 { font-size: 1rem; color: var(--gold-lt); margin-bottom: 8px; }
.ben-card p  { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ═══════════════════════════════════
   6. INFRASTRUCTURE
═══════════════════════════════════ */
.infra-sec { background: var(--off-white); }

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.infra-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.infra-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.infra-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); border-color: transparent; }
.infra-card:hover::after { transform: scaleX(1); }

.infra-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream), var(--off-white));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.infra-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.infra-card p  { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

/* ═══════════════════════════════════
   7. SEMICONDUCTOR
═══════════════════════════════════ */
.semi-sec {
  background: var(--white);
}

.semi-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.semi-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/3;
}
.semi-img img { width: 100%; height: 100%; object-fit: cover; }

.semi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.semi-mini {
  background: var(--navy);
  border-radius: var(--r);
  padding: 20px;
  transition: transform .3s;
}
.semi-mini:hover { transform: translateY(-4px); }
.semi-mini h4 { font-size: .9rem; color: var(--gold-lt); margin-bottom: 6px; }
.semi-mini p  { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.5; }

.invest-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy-deep);
  font-family: var(--h);
  font-weight: 800;
  font-size: 1.6rem;
  padding: 14px 24px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: var(--sh-gold);
}
.invest-pill small { font-size: .75rem; font-weight: 500; display: block; line-height: 1.2; }

/* ═══════════════════════════════════
   8. COMPANIES
═══════════════════════════════════ */
.co-sec { background: var(--smoke); }

.co-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.co-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: all .3s;
}
.co-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.co-abbr {
  font-family: var(--h);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.co-name { font-size: .8rem; color: var(--text-2); font-weight: 500; }

/* ═══════════════════════════════════
   9. INVESTMENT TYPES
═══════════════════════════════════ */
.types-sec { background: var(--white); }

.types-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.type-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.type-card:hover { box-shadow: var(--sh-xl); transform: translateY(-8px); border-color: transparent; }

.type-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.type-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.type-card:hover .type-img img { transform: scale(1.07); }
.type-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--h);
  font-weight: 700;
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.type-body {
  padding: 24px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.type-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.type-body p  { font-size: .875rem; color: var(--text-2); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.type-body .btn { margin-top: auto; }

/* ═══════════════════════════════════
   10. MASTER PLAN — INTERACTIVE MAP
═══════════════════════════════════ */
.map-sec { background: var(--off-white); }

.map-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
}

.map-zoom-ctrl {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zm-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.zm-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.map-scroll { overflow: auto; height: 540px; background: var(--navy-deep); }
.map-zoom   { transform-origin: 0 0; transition: transform .3s; width: 100%; height: 100%; position: relative; }
.map-img    { width: 100%; height: 100%; object-fit: contain; min-width: 800px; pointer-events: none; }

/* Hotspots */
.hotspot {
  position: absolute;
  width: 26px; height: 26px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.hs-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  animation: hsPulse 2.2s ease-out infinite;
}
.hs-dot {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
}
@keyframes hsPulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(3.5); opacity: 0;  }
}
.hotspot:hover .hs-dot { background: var(--gold); }

/* Info panel */
.zone-panel-wrap {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 300px;
  z-index: 10;
}
.zone-panel {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
  transform: translateY(8px);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
}
.zone-panel.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.zone-panel h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.zone-panel p  { font-size: .82rem; color: var(--text-2); line-height: 1.5; margin-bottom: 8px; }
.zone-panel .tag {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dk);
  background: var(--cream);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* ═══════════════════════════════════
   11. WHAT WE OFFER
═══════════════════════════════════ */
.offer-sec { background: var(--white); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.offer-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all .3s;
}
.offer-card:hover { background: var(--white); box-shadow: var(--sh-md); transform: translateY(-4px); }

.offer-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-lt);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.offer-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.offer-card p  { font-size: .82rem; color: var(--text-2); line-height: 1.6; }

/* ═══════════════════════════════════
   12. UPDATES / PROGRESS
═══════════════════════════════════ */
.updates-sec { background: var(--cream); }

.updates-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.upd-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all .3s;
}
.upd-item:hover { box-shadow: var(--sh-md); transform: translateX(4px); }
.upd-pin { font-size: 1.5rem; flex-shrink: 0; }
.upd-item h4 { font-size: .95rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.upd-item p  { font-size: .82rem; color: var(--text-2); line-height: 1.55; }

/* ═══════════════════════════════════
   13. FEATURED PROJECT (VRINDAVAN CITY)
═══════════════════════════════════ */
.project-sec { background: var(--off-white); }

.project-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.proj-gallery { display: flex; flex-direction: column; gap: 12px; }
.proj-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
}
.proj-main img { width: 100%; height: 100%; object-fit: cover; }
.proj-main-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--h);
  font-weight: 700;
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
}

.proj-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.proj-thumb {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.proj-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.proj-thumb:hover img { transform: scale(1.08); }
.proj-thumb.active { border-color: var(--gold); }

/* Project details */
.proj-details .subtitle { font-size: 1rem; color: var(--text-2); margin: 12px 0 28px; line-height: 1.65; }

.amenities {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.amen {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.amen-ico { font-size: 1.25rem; }
.amen span { font-size: .85rem; font-weight: 600; color: var(--navy); }

.brochure-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  border-radius: var(--r);
  padding: 20px 24px;
  color: var(--white);
}
.brochure-bar .doc-ico { font-size: 2rem; flex-shrink: 0; }
.brochure-bar h4 { font-size: .95rem; margin-bottom: 2px; }
.brochure-bar p  { font-size: .78rem; color: rgba(255,255,255,.65); }
.brochure-bar .btn { flex-shrink: 0; font-size: .85rem; padding: 10px 20px; }

/* ═══════════════════════════════════
   14. SITE VISIT FORM
═══════════════════════════════════ */
.visit-sec { background: var(--white); }

.visit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info .intro { font-size: 1.05rem; color: var(--text-2); margin: 14px 0 32px; line-height: 1.7; }
.limited-tag {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-family: var(--h);
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid #FDE68A;
  margin-bottom: 30px;
}

.loc-list { display: flex; flex-direction: column; gap: 14px; }
.loc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.loc-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-lt);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.loc-item h4 { font-size: .9rem; font-weight: 700; color: var(--navy); }
.loc-item p  { font-size: .8rem; color: var(--text-2); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.form-card-head {
  background: var(--navy);
  padding: 22px 28px;
  text-align: center;
}
.form-card-head h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.form-card-head p  { color: rgba(255,255,255,.65); font-size: .82rem; }
.form-card-body { padding: 24px 28px; }
.form-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

/* ═══════════════════════════════════
   15. TESTIMONIALS
═══════════════════════════════════ */
.testi-sec { background: var(--navy); }

.testi-slider { position: relative; min-height: 240px; }
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all .5s var(--ease);
  max-width: 780px;
  margin: 0 auto;
}
.testi-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.testi-stars { font-size: 1.1rem; margin-bottom: 14px; }
.testi-text {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testi-user { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--h);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.testi-name { font-weight: 700; color: var(--white); font-size: .95rem; }
.testi-role { font-size: .8rem; color: rgba(255,255,255,.55); }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: all .2s;
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ═══════════════════════════════════
   16. FAQ
═══════════════════════════════════ */
.faq-sec { background: var(--off-white); }

.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-radius: 8px; overflow: hidden; margin-bottom: 12px; background: var(--white); border: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q span:first-child {
  font-family: var(--h);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.faq-ico {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  transition: all .3s;
}
.faq-item.open .faq-ico { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: max-height .35s ease, opacity .35s, padding .35s;
}
.faq-a p { font-size: .92rem; color: var(--text-2); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; opacity: 1; padding: 0 24px 20px; }

/* ═══════════════════════════════════
   17. FINAL CTA
═══════════════════════════════════ */
.cta-sec {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/dholera_roads.png') center / cover no-repeat;
  opacity: .08;
}
.cta-sec .wrap { position: relative; z-index: 2; text-align: center; }
.cta-sec h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: var(--white); margin-bottom: 16px; }
.cta-sec p  { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 620px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════
   18. CONTACT / FOOTER
═══════════════════════════════════ */
.footer {
  background: #050E1F;
  color: rgba(255,255,255,.55);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-top: 14px; }
.footer-col h5 {
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-col address { font-style: normal; font-size: .85rem; line-height: 1.75; }

.footer-hr { border: 0; border-top: 1px solid rgba(255,255,255,.07); margin: 0 0 24px; }
.footer-disc { font-size: .72rem; line-height: 1.7; border-left: 2px solid var(--gold-dk); padding-left: 14px; margin-bottom: 24px; }
.footer-btm { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 12px; }
.footer-soc { display: flex; gap: 14px; }
.footer-soc a:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════
   19. STICKY MOBILE BAR
═══════════════════════════════════ */
.mob-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  grid-template-columns: repeat(3,1fr);
  z-index: 990;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.mob-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  font-family: var(--h);
  font-weight: 600;
  font-size: .72rem;
  color: var(--white);
}
.mob-bar-item .ico { font-size: 1.2rem; }
.mob-bar-item:nth-child(1) { background: var(--navy); }
.mob-bar-item:nth-child(2) { background: #25D366; }
.mob-bar-item:nth-child(3) { background: var(--gold); color: var(--navy); }

/* Back to top */
.btt {
  position: fixed;
  bottom: 30px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: var(--sh-lg);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 98;
  transition: background .2s, transform .2s;
}
.btt:hover { background: var(--gold); color: var(--navy); transform: translateY(-4px); }

/* ═══════════════════════════════════
   20. MODALS
═══════════════════════════════════ */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(5,14,31,.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-bg.show { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  width: 90%;
  overflow: hidden;
  transform: scale(.92);
  transition: transform .3s var(--ease);
}
.modal-bg.show .modal-box { transform: scale(1); }

/* Video modal */
.vid-modal-box { max-width: 840px; }
.vid-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 2.2rem; color: var(--white);
  cursor: pointer; line-height: 1; z-index: 10;
}
.vid-modal-bg { position: relative; }
.vid-wrap { position: relative; padding-top: 56.25%; background: #000; }
.vid-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Success modal */
.suc-modal-box { max-width: 480px; text-align: center; padding: 40px 36px; }
.suc-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(46,204,113,.12);
  color: var(--green);
  font-size: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.suc-modal-box h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }
.suc-modal-box p  { font-size: .92rem; color: var(--text-2); line-height: 1.65; margin-bottom: 28px; }
.suc-actions { display: flex; flex-direction: column; gap: 10px; }
.suc-close-btn {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 1.8rem; color: var(--text-3);
  cursor: pointer;
}

/* ═══════════════════════════════════
   21. SCROLL REVEAL — DISABLED
   (removed to fix visibility issues)
═══════════════════════════════════ */


/* ═══════════════════════════════════
   22. RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; max-width: 700px; }
  .hero-inner .lead-card { display: none; } /* show as separate section on mobile */
  .hero-stats       { grid-template-columns: repeat(3,1fr); }
  .two-col          { grid-template-columns: 1fr; gap: 40px; }
  .semi-split       { grid-template-columns: 1fr; }
  .project-split    { grid-template-columns: 1fr; }
  .visit-split      { grid-template-columns: 1fr; }
  .infra-grid       { grid-template-columns: repeat(2,1fr); }
  .co-grid          { grid-template-columns: repeat(2,1fr); }
  .ctr-grid         { grid-template-columns: repeat(2,1fr); }
  .ben-grid         { grid-template-columns: repeat(2,1fr); }
  .offer-grid       { grid-template-columns: repeat(2,1fr); }
  .updates-list     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: repeat(2,1fr); }
  .nav-links        { display: none; }
  .hamburger        { display: flex; }
}

@media (max-width: 768px) {
  :root { --hh: 60px; }
  section, .sec { padding: 60px 0; }
  .hero-stats     { grid-template-columns: 1fr 1fr; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .types-grid     { grid-template-columns: 1fr; }
  .infra-grid     { grid-template-columns: 1fr; }
  .co-grid        { grid-template-columns: repeat(2,1fr); }
  .ben-grid       { grid-template-columns: 1fr; }
  .ctr-grid       { grid-template-columns: repeat(2,1fr); }
  .offer-grid     { grid-template-columns: 1fr; }
  .form-dual      { grid-template-columns: 1fr; }
  .amenities      { grid-template-columns: 1fr; }
  .mob-bar        { display: grid; }
  body            { padding-bottom: 56px; }
  .btt            { bottom: 72px; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .cta-btns       { flex-direction: column; align-items: center; }
  .hero-inner .lead-card { display: block; } /* bring back lead card below hero text */
  .footer-btm     { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
  .hero-title  { font-size: 1.75rem; }
  .hero-stats  { grid-template-columns: 1fr; }
  .ctr-grid    { grid-template-columns: 1fr 1fr; }
  .co-grid     { grid-template-columns: repeat(2,1fr); }
  .semi-cards  { grid-template-columns: 1fr; }
}

/* Mobile nav overlay — DO NOT use inset shorthand with right:0 + left:-100%
   (that makes it 200vw wide; right half always visible).
   Use explicit width + left instead. */
.nav-overlay {
  position: fixed;
  top: var(--hh);
  left: -100%;
  width: 100%;
  height: calc(100vh - var(--hh));
  background: var(--white);
  z-index: 999;
  padding: 32px 28px;
  transition: left .35s var(--ease);
  box-shadow: var(--sh-xl);
  overflow-y: auto;
}
.nav-overlay.open { left: 0; }
.nav-overlay a {
  display: block;
  font-family: var(--h);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-overlay a:hover { color: var(--gold-dk); }
.nav-overlay .btn { width: 100%; margin-top: 20px; }



/* ═══════════════════════════════════════════════════════════
   OTP VERIFICATION MODAL
   ═══════════════════════════════════════════════════════════ */

/* Backdrop — covers page, blurs content */
.otp-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 48, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.otp-backdrop.active {
  display: flex;
}

/* Block all interaction on page behind */
body.otp-open { overflow: hidden; pointer-events: none; }
body.otp-open .otp-backdrop { pointer-events: all; }

/* Modal card */
.otp-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  overflow: hidden;
  animation: otpSlideIn .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes otpSlideIn {
  from { opacity: 0; transform: scale(.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* Header */
.otp-modal-head {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A6B 100%);
  padding: 32px 28px 24px;
  text-align: center;
  color: var(--white);
}
.otp-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold-lt);
}
.otp-modal-head h3 {
  font-family: var(--h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.otp-modal-head p  { font-size: .875rem; color: rgba(255,255,255,.75); }
.otp-modal-head strong { color: var(--gold-lt); }

/* Body */
.otp-modal-body { padding: 28px; }

/* 6 input boxes */
.otp-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.otp-box {
  width: 48px; height: 56px;
  border: 2px solid var(--border);
  border-radius: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--h);
  color: var(--navy);
  background: var(--off);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -moz-appearance: textfield;
}
.otp-box::-webkit-inner-spin-button,
.otp-box::-webkit-outer-spin-button { -webkit-appearance: none; }
.otp-box:focus {
  border-color: var(--gold);
  background: #FFFBF0;
  box-shadow: 0 0 0 4px rgba(212,160,23,.18);
}
.otp-box.filled {
  border-color: var(--navy);
  background: var(--white);
}
.otp-dash {
  color: var(--text3);
  font-size: 1.1rem;
  margin: 0 2px;
  user-select: none;
}

/* Shake animation on wrong OTP */
@keyframes otpShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(8px); }
  60%      { transform: translateX(-5px); }
  80%      { transform: translateX(5px); }
}
.otp-inputs.shake { animation: otpShake .45s ease; }

/* Error */
.otp-error {
  min-height: 20px;
  font-size: .82rem;
  color: #e74c3c;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Verify button */
#otpVerifyBtn { margin-bottom: 18px; }

/* Resend row */
.otp-resend-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.otp-timer-msg { font-size: .82rem; color: var(--text3); }
.otp-resend-btn {
  background: none;
  border: none;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color .2s;
}
.otp-resend-btn:disabled { color: var(--text3); text-decoration: none; cursor: default; }
.otp-resend-btn:not(:disabled):hover { color: var(--gold); }

/* Expiry row */
.otp-expiry-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text3);
}
.otp-expiry-row span { font-weight: 700; color: var(--navy); }
.otp-expiry-row svg { color: var(--text3); }

/* Mobile adjustments */
@media (max-width: 440px) {
  .otp-box { width: 40px; height: 50px; font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════
   16. FLOATING CTA BUTTON & FORM POPUP
   ═══════════════════════════════════════════════════════════ */
.floating-cta-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 990;
  font-family: var(--b);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

/* Hidden state when observer detects other forms in view */
.floating-cta-wrap.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}

/* Floating button */
.floating-cta-btn {
  background: #d4a017;
  color: black;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--h);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(11,37,69,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}
.floating-cta-btn:hover {
  background: #153863;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,37,69,0.4);
}
.floating-cta-icon {
  font-size: 1.1rem;
  line-height: 1;
}
.floating-cta-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50px;
  border: 2px solid var(--navy);
  animation: floatPulse 2s infinite;
  pointer-events: none;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15, 1.25); opacity: 0; }
}

/* Floating form card */
.floating-form-card {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 991;
  pointer-events: none;
}
.floating-form-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-form-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floating-form-header h4 {
  margin: 0;
  font-family: var(--h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.floating-form-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.floating-form-close:hover {
  color: var(--white);
}

.floating-form-body {
  padding: 20px;
}
.floating-form-body .form-row {
  margin-bottom: 12px;
}
.floating-form-body .form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.floating-form-body .form-row input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.floating-form-body .form-row input:focus {
  border-color: var(--gold);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-cta-wrap {
    right: 20px;
    bottom: 85px; /* Above the mobile sticky bar */
    display : none !important;
  }
  .floating-form-card {
    right: 0;
    width: 280px;
  }
}
