/* ===========================
   JEEVIKA HEIGHTS — PREMIUM CSS
   White + Navy Blue + Gold
   Font: Cormorant Garamond + DM Sans
=========================== */

:root {
  --navy: #0a1628;
  --navy-mid: #132240;
  --blue: #1a3a6b;
  --blue-light: #2653a3;
  --gold: #c9920e;
  --gold-light: #f0b429;
  --gold-pale: #fff8e6;
  --white: #ffffff;
  --off-white: #f9f8f5;
  --gray: #6b7280;
  --gray-light: #e8e9ed;
  --text: #1a1a2e;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  font-size: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.section { padding: 80px 0; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--navy);
  color: #d4e4ff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.ann-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; animation: pulse 1.5s infinite; }
.ann-sep { color: #3a5080; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  box-shadow: 0 2px 16px rgba(10,22,40,0.06);
  transition: all 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.logo img { height: 46px; width: auto; }
.main-nav { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.main-nav a:hover { color: var(--gold); background: var(--gold-pale); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.btn-call {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue-light);
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-call:hover { background: var(--blue); color: var(--white); }
.btn-primary-sm {
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-primary-sm:hover { background: var(--gold-light); }
.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(--navy); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.65) 55%, rgba(10,22,40,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 40px;
  min-height: calc(90vh - 100px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,146,14,0.18);
  border: 1px solid rgba(201,146,14,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: pulse 1.5s infinite; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.trust-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201,146,14,0.35);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,146,14,0.45); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebe59; transform: translateY(-2px); }
.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
}

/* HERO FORM */
.hero-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.form-head { margin-bottom: 24px; text-align: center; }
.form-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.form-head p { font-size: 0.82rem; color: var(--gray); margin-top: 5px; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 4px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy-mid); }
.form-group input,
.form-group select,
.lead-form input,
.lead-form select {
  width: 100%;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.lead-form input:focus,
.lead-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,146,14,0.12); }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}
.btn-submit:hover { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,22,40,0.25); }
.form-note { font-size: 0.75rem; color: var(--gray); text-align: center; }
.form-success { text-align: center; padding: 24px; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 0.9rem; }
.form-success a { color: var(--gold); font-weight: 600; }

/* COUNTDOWN */
.countdown-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(26,58,107,0.92));
  border-radius: var(--radius);
  padding: 16px 28px;
  margin: 0 20px 24px;
  color: var(--white);
}
.cd-label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.countdown { display: flex; align-items: center; gap: 8px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; }
.cd-unit span { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; min-width: 48px; text-align: center; }
.cd-unit small { font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.cd-sep { font-size: 1.5rem; color: var(--gold); font-weight: 700; line-height: 1; padding-bottom: 12px; }
.cd-right { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); }

/* ===== HIGHLIGHTS STRIP ===== */
.highlights-strip {
  background: var(--navy);
  padding: 28px 0;
}
.hl-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.hl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hl-item:last-child { border-right: none; }
.hl-num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hl-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); text-align: center; font-weight: 500; line-height: 1.3; }

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-section { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.about-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-float .small-text { display: block; font-size: 0.7rem; font-weight: 500; opacity: 0.9; margin-top: 2px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.af-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-light);
}
.af-icon { font-size: 1.2rem; flex-shrink: 0; }
.af-item div { display: flex; flex-direction: column; gap: 2px; }
.af-item strong { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.af-item span { font-size: 0.75rem; color: var(--gray); }

/* ===== WHY SECTION ===== */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== CONFIGURATIONS ===== */
.config-section { background: var(--off-white); }
.config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; max-width: 780px; margin-left: auto; margin-right: auto; }
.config-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
}
.config-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.config-card.featured { border-color: var(--gold); }
.config-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gold-tag { background: var(--gold) !important; }
.config-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); padding: 14px 20px 10px; }
.config-img { height: 180px; overflow: hidden; }
.config-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.config-card:hover .config-img img { transform: scale(1.05); }
.config-features { list-style: none; padding: 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.config-features li { font-size: 0.85rem; color: var(--text); }
.config-price { padding: 0 20px 12px; font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.config-card .btn-gold, .config-card .btn-gold-outline { margin: 0 20px 20px; display: block; text-align: center; padding: 12px 20px; }
.btn-gold-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 12px 20px;
  transition: all 0.25s;
  text-align: center;
  display: inline-block;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }
.config-cta-strip {
  margin-top: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  color: var(--white);
}
.config-cta-strip p { font-size: 0.95rem; margin-bottom: 18px; color: rgba(255,255,255,0.85); }
.download-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.btn-download {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-download:hover { background: var(--gold); border-color: var(--gold); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 48px;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item.g-large { grid-column: span 2; grid-row: span 1; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.gallery-item.g-large img { height: 280px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 20px 14px 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LOCATION ===== */
.location-section { background: var(--off-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.location-points h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.loc-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
.loc-item:last-child { border-bottom: none; }
.loc-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.loc-item div { display: flex; flex-direction: column; gap: 2px; }
.loc-item strong { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.loc-item span { font-size: 0.8rem; color: var(--gray); }
.map-link { display: inline-block; margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--gold); }
.map-link:hover { color: var(--navy); }

/* ===== BANKS ===== */
.banks-section { background: var(--navy); }
.banks-section .section-label { color: rgba(201,146,14,0.9); }
.banks-section .section-title { color: var(--white); }
.banks-section .section-desc { color: rgba(255,255,255,0.65); }
.banks-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 40px; }
.bank-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 20px 36px;
  border-radius: 12px;
  transition: all 0.25s;
}
.bank-card:hover { background: var(--gold); border-color: var(--gold); }

/* ===== MID FORM SECTION ===== */
.mid-form-section { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.mid-form-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.mid-form-text .section-label { color: var(--gold-light); }
.mid-form-text .section-title { color: var(--white); }
.mid-form-text > p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.offer-list li { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.social-proof {
  background: rgba(201,146,14,0.15);
  border: 1px solid rgba(201,146,14,0.35);
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-block;
}
.mid-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.faq-cat { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q span { font-size: 1.3rem; flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 0 0 16px;
  display: none;
}
.faq-a.show { display: block; }

/* ===== FOOTER ===== */
.site-footer-main { background: var(--navy); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { margin-bottom: 16px; opacity: 0.9; filter: brightness(1.2); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 12px; }
.footer-rera { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--gold); background: rgba(201,146,14,0.12); padding: 4px 10px; border-radius: 5px; border: 1px solid rgba(201,146,14,0.3); }
.footer-links h4, .footer-docs h4, .footer-contact h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links a, .footer-docs a, .footer-contact a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-docs a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 6px 0; }
.wa-footer { display: inline-block; margin-top: 10px; background: #25D366; color: var(--white) !important; font-weight: 700 !important; padding: 8px 16px; border-radius: 8px; font-size: 0.82rem !important; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.disclaimer { font-size: 0.68rem !important; margin-top: 6px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-wa, .float-call {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.25s;
}
.float-wa { background: #25D366; }
.float-call { background: var(--blue); }
.float-wa:hover, .float-call:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 20px;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(10,22,40,0.35);
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s;
}
.popup-overlay.active .popup-modal { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: rgba(10,22,40,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--navy);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(10,22,40,0.2); }
.popup-left { position: relative; overflow: hidden; }
.popup-left img { width: 100%; height: 100%; object-fit: cover; }
.popup-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 24px 16px 14px;
}
.popup-right { padding: 32px 28px; }
.popup-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.popup-right h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.popup-right > p { font-size: 0.85rem; color: var(--gray); margin-bottom: 18px; }
.popup-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.popup-trust span { font-size: 0.72rem; font-weight: 600; color: var(--gray); background: var(--off-white); padding: 4px 10px; border-radius: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .hero-form-box { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .mid-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .mid-form-box { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hl-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-columns { grid-template-columns: 1fr; }
  .popup-modal { grid-template-columns: 1fr; }
  .popup-left { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow); border-top: 1px solid var(--gray-light); z-index: 100; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 14px; }
  .hamburger { display: flex; }
  .header-cta .btn-call { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .config-grid { grid-template-columns: 1fr; max-width: 380px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.g-large { grid-column: span 2; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); }
  .countdown-strip { gap: 12px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.g-large { grid-column: span 1; }
  .announcement-inner { justify-content: flex-start; gap: 10px; }
  .ann-sep { display: none; }
}
