/* ============================================================
   AMIT LEGACY ESTATES v2 — MASTER STYLESHEET
   Mobile-first · Fully Responsive · Production Ready
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0F1F3D;
  --slate:      #2C4A6E;
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --cream:      #FAF7F2;
  --charcoal:   #1E2A3A;
  --white:      #FFFFFF;
  --muted:      #8A9BB0;
  --text:       #4A5568;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:      72px;
  --radius:     4px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(1.9rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 600; }
p  { color: var(--text); font-size: clamp(0.875rem, 2vw, 1rem); }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.gold { color: var(--gold); }
.italic-accent { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }
.gold-line {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section        { padding: 64px 0; }
.section--dark  { background: var(--navy); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--slate { background: var(--navy-mid); }
.section--cream { background: var(--cream); }
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 100px 0; } }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { gap: 64px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 640px) { .btn { padding: 14px 30px; } }

.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b8963d; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.35); }

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--slate); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,22,40,0.25); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.35); }

.btn-sm { padding: 10px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
.nav--transparent { background: transparent; }
.nav--scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}
@media (min-width: 768px) { .nav__logo img { height: 52px; } }

.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

.nav__ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__ham span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__ham.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (min-width: 900px) { .nav__ham { display: none; } }

/* MOBILE MENU */
.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__mobile a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { margin-top: 14px; width: 100%; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 70px;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(10,22,40,0.7));
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__content h1 { color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px)  { .trust-bar__inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .trust-bar__inner { grid-template-columns: repeat(5, 1fr); gap: 8px; } }
@media (min-width: 1100px) { .trust-bar__inner { display: flex; justify-content: space-around; } }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.trust-badge__icon {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-badge__text { min-width: 0; }
.trust-badge__label { font-weight: 600; font-size: 0.8rem; display: block; word-break: break-word; }
.trust-badge__sub   { font-size: 0.72rem; color: rgba(255,255,255,0.55); display: block; }

/* ── STAT BLOCK ── */
.stat-block { text-align: center; padding: 24px 16px; }
.stat-block__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block__label { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* ── PROJECT CARD ── */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,22,40,0.14); }
.project-card__img { height: 200px; position: relative; overflow: hidden; background: var(--slate); }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card__status {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.project-card__body { padding: 20px; }
.project-card__name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.project-card__loc  { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 4px; }
.project-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.project-card__tag  { font-size: 0.7rem; background: #F0F4F8; color: var(--slate); padding: 3px 8px; border-radius: 2px; font-weight: 500; }
.project-card__price { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.project-card__price span { font-size: 0.72rem; font-family: 'DM Sans', sans-serif; color: var(--muted); font-weight: 400; }
.project-card__footer { border-top: 1px solid #EEF0F3; padding-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.project-card__enquire { font-size: 0.78rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 4px; }

/* ── PILL ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  font-size: 0.75rem; color: var(--gold); font-weight: 600;
}

/* ── TESTIMONIAL SLIDER ── */
.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.55s var(--ease);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 4px;
}
@media (min-width: 768px) {
  .testimonial-slide { min-width: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-slide { min-width: 33.333%; }
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.13;
  position: absolute;
  top: -8px; left: 20px;
  line-height: 1;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 12px; }
.testimonial-card__text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--slate);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold); font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; color: var(--white); font-size: 0.875rem; }
.testimonial-card__role { font-size: 0.75rem; color: var(--muted); }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 36px;
}
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.slider-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; transition: all 0.25s;
}
.slider-dot.active { background: var(--gold); transform: scale(1.2); }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 13px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  border: 1.5px solid rgba(44,74,110,0.2);
  border-radius: var(--radius);
  background: var(--white); color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: #A0AEC0; }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--navy); padding: 60px 0; position: relative; overflow: hidden; }
.cta-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
}
.cta-strip__inner {
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-strip h2 { color: var(--white); }
.cta-strip p  { color: var(--gold-light); margin-top: 8px; font-size: 0.9rem; }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 480px) { .cta-strip__actions .btn { flex: 1; min-width: 140px; } }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: var(--white); padding: 60px 0 24px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }

.footer__logo img { height: 46px; filter: brightness(0) invert(1); }
.footer__tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); margin: 12px 0; font-size: 0.95rem; }
.footer__desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all 0.25s;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer__heading { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 24px; font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 20px;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 2.8s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.max-560 { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── INVEST PAGE CARDS ── */
.invest-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all 0.3s var(--ease);
}
.invest-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
.invest-card__icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.invest-card h4 { color: var(--white); margin-bottom: 10px; }
.invest-card p  { font-size: 0.83rem; color: rgba(255,255,255,0.55); }

/* Light variant invest card */
.invest-card--light {
  background: var(--white);
  border: 1px solid rgba(44,74,110,0.1);
}
.invest-card--light:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(10,22,40,0.08); }
.invest-card--light h4 { color: var(--navy); }
.invest-card--light p  { color: var(--text); }

/* ── HIGHLIGHT STAT ── */
.highlight-stat {
  display: flex; align-items: center; gap: 16px;
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.highlight-stat__num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); line-height: 1; flex-shrink: 0; }
.highlight-stat__text { font-size: 0.83rem; color: var(--text); line-height: 1.4; }

/* ── CONTACT QUICK ── */
.quick-connect {
  background: var(--charcoal);
}
.quick-connect__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .quick-connect__inner { grid-template-columns: repeat(4, 1fr); } }

.quick-card {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  transition: background 0.2s;
  min-width: 0;
}
.quick-card:last-child { border-right: none; }
.quick-card:hover { background: rgba(255,255,255,0.04); }
.quick-card__icon { font-size: 1.3rem; flex-shrink: 0; }
.quick-card strong { display: block; font-size: 0.82rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.quick-card span   { font-size: 0.75rem; color: rgba(255,255,255,0.5); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.quick-card--wa    { color: #25D366; }
.quick-card--wa strong { color: #25D366; }

/* ── INQUIRY SELECTOR ── */
.inq-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.inq-btn {
  padding: 9px 16px; border: 1.5px solid rgba(44,74,110,0.2);
  border-radius: 30px; background: transparent;
  font-size: 0.8rem; font-weight: 600; color: var(--charcoal);
  cursor: pointer; transition: all 0.25s;
}
.inq-btn.active, .inq-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── FAQ ── */
.faq-item {
  background: var(--white); border: 1px solid rgba(44,74,110,0.1);
  border-radius: var(--radius); padding: 22px 24px;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(10,22,40,0.07); transform: translateY(-2px); }
.faq-q {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.95rem;
  color: var(--navy); margin-bottom: 10px;
  padding-left: 14px; border-left: 3px solid var(--gold);
}
.faq-a { font-size: 0.85rem; color: #6B7280; line-height: 1.7; }

/* ── ABOUT TIMELINE ── */
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
@media (min-width: 640px) { .timeline::before { left: 50%; transform: translateX(-50%); } }

.tl-item {
  display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 44px; padding-left: 48px;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute; left: 11px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}
@media (min-width: 640px) {
  .tl-item { padding-left: 0; align-items: center; }
  .tl-item:nth-child(odd)  { flex-direction: row; padding-right: 50%; }
  .tl-item:nth-child(even) { flex-direction: row-reverse; padding-left: 50%; }
  .tl-item::before {
    left: 50%; transform: translateX(-50%);
  }
}

.tl-content {
  background: var(--white); border: 1px solid rgba(44,74,110,0.1);
  border-radius: var(--radius); padding: 20px 22px;
}
.tl-year {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 0.8rem; color: var(--gold); display: block; margin-bottom: 5px;
}
.tl-content h4 { color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.tl-content p  { font-size: 0.82rem; }

/* ── BRAND QUOTE ── */
.brand-quote {
  border-left: 3px solid var(--gold); padding: 14px 20px;
  background: rgba(201,168,76,0.06); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; color: var(--charcoal); margin: 20px 0;
}
.brand-quote cite {
  display: block; margin-top: 8px; font-size: 0.75rem; font-style: normal;
  color: var(--gold); font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: 0.05em;
}

/* ── PAST PROJECT ── */
.past-project {
  background: var(--white); border: 1px solid rgba(44,74,110,0.1);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.past-project:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(10,22,40,0.1); }
.past-project__year { background: var(--charcoal); color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.85rem; padding: 9px 18px; }
.past-project__body { padding: 20px; }
.past-project h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.past-project__loc { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }
.past-project__metric { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); display: block; }
.past-project__metric-label { font-size: 0.7rem; color: var(--muted); }

/* ── MODAL ── */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.88); backdrop-filter: blur(6px); }
.modal-box {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; max-width: 640px; width: 100%; max-height: 90vh; overflow-y: auto;
  animation: modalUp 0.4s var(--ease);
}
@media (min-width: 640px) { .modal-box { padding: 44px; } }
@keyframes modalUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(44,74,110,0.08); border: none; border-radius: 50%;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--charcoal); transition: background 0.2s;
}
.modal-close:hover { background: rgba(44,74,110,0.15); }
.modal-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; background: rgba(44,74,110,0.05); border-radius: var(--radius); padding: 16px; margin: 16px 0; }
@media (min-width: 480px) { .modal-meta { grid-template-columns: repeat(3, 1fr); } }
.modal-meta-label { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.modal-highlights { list-style: none; display: grid; grid-template-columns: 1fr; gap: 7px; }
@media (min-width: 480px) { .modal-highlights { grid-template-columns: repeat(2, 1fr); } }
.modal-highlights li { font-size: 0.8rem; color: var(--charcoal); padding: 7px 10px; background: rgba(44,74,110,0.05); border-radius: 3px; }
.modal-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.modal-actions .btn { flex: 1; min-width: 140px; }

/* ── FILTER BAR ── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(44,74,110,0.1);
  position: sticky; top: var(--nav-h); z-index: 100;
  box-shadow: 0 2px 16px rgba(10,22,40,0.06);
}
.filter-bar__inner { display: flex; gap: 8px; padding: 12px 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.filter-bar__inner::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 7px 16px; border: 1.5px solid rgba(44,74,110,0.15); border-radius: 30px;
  background: transparent; font-size: 0.8rem; font-weight: 600; color: var(--charcoal);
  cursor: pointer; white-space: nowrap; transition: all 0.25s;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── LOCATION POINT ── */
.location-point { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.location-point__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.location-point strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: 0.9rem; }
.location-point p { font-size: 0.82rem; margin: 0; }

/* ── FOUNDER SECTION ── */
.founder-img-box {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.founder-img-box img {
  width: 100%; height: 380px; object-fit: cover; object-position: top;
  display: block;
}
@media (min-width: 768px) { .founder-img-box img { height: 460px; } }
.founder-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--navy); border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 12px 16px; text-align: center; color: var(--white);
}
.founder-badge strong { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.founder-badge span { font-size: 0.7rem; opacity: 0.7; }
.founder-creds { background: var(--navy); padding: 16px 20px; border-radius: 0 0 var(--radius) var(--radius); }
.founder-cred { font-size: 0.78rem; color: rgba(255,255,255,0.7); padding: 4px 0; }

/* ── VM CARDS ── */
.vm-card__label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 14px; }
.vm-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 14px; line-height: 1.4; }

/* ── PILLAR BLOCK ── */
.pillar-block {
  background: var(--white); border: 1px solid rgba(44,74,110,0.1);
  border-radius: var(--radius); padding: 36px 24px; text-align: center;
  transition: all 0.3s var(--ease);
}
.pillar-block:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(10,22,40,0.1); border-color: var(--gold); }
.pillar-block__icon {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--gold);
}
.pillar-block h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }

/* ── WHY SECTION ── */
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 22px;
  transition: all 0.3s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.why-card__num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: rgba(201,168,76,0.13); line-height: 1; margin-bottom: 10px; }
.why-card h4 { color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: 0.83rem; color: rgba(255,255,255,0.53); }

/* ── SCHEDULE PAGE ── */
.contact-info-card { background: var(--navy); border-radius: var(--radius); padding: 32px 28px; color: var(--white); }
@media (min-width: 640px) { .contact-info-card { padding: 40px; } }
.contact-info-card__heading { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; }
.contact-detail__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; color: var(--gold); margin-bottom: 3px; font-size: 0.83rem; }
.contact-detail p { color: rgba(255,255,255,0.6); font-size: 0.83rem; margin: 0; }
.contact-detail a { color: rgba(255,255,255,0.6); }
.contact-detail a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; margin-top: 4px; }
.hours-grid span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.hours-grid span:nth-child(even) { color: rgba(255,255,255,0.85); }
.trust-reminder {
  margin-top: 16px; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius);
  padding: 18px; display: flex; gap: 12px; align-items: flex-start;
}
.trust-reminder__icon { font-size: 1.4rem; flex-shrink: 0; }
.trust-reminder strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: 0.87rem; }
.trust-reminder p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ── FORM ASSURANCE ── */
.form-assurances { display: flex; gap: 14px; flex-wrap: wrap; margin: 14px 0; }
.form-assurances span { font-size: 0.76rem; color: var(--slate); font-weight: 600; }

/* ═══ LOGO FIX — use white version in nav/footer ═══ */
/* Logo is dark on transparent - invert to white for dark backgrounds */
.nav__logo img {
  filter: brightness(0) invert(1) !important;
}
.footer__logo img {
  filter: brightness(0) invert(1) !important;
}

/* ═══ URGENCY TICKER ═══ */
.urgency-ticker {
  background: linear-gradient(135deg, #c0392b 0%, #8B0000 100%);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 999;
}
.urgency-ticker__track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}
.urgency-ticker__track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.urgency-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.urgency-ticker__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

/* ═══ WHY LUCKNOW SLIDER ═══ */
.lucknow-slides-wrap {
  overflow: hidden;
  margin-top: 32px;
  position: relative;
}
.lucknow-slides-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.lucknow-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 4px;
}
@media (min-width: 768px) {
  .lucknow-slide { width: 50%; }
}
@media (min-width: 1024px) {
  .lucknow-slide { width: 33.333%; }
}
.lucknow-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 22px;
  border: 1px solid #e8e0d0;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lucknow-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,22,40,.12); }
.lucknow-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #c8971a);
}
.lucknow-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(10,22,40,.06);
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
}
.lucknow-card__icon { font-size: 2rem; margin-bottom: 12px; }
.lucknow-card h4 { margin-bottom: 8px; font-size: 1rem; }
.lucknow-card p { font-size: .85rem; line-height: 1.7; color: var(--text); }
.lucknow-slides-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.lucknow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(10,22,40,.2);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.lucknow-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ═══ OFFERS STRIP (homepage) ═══ */
.offers-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2544 100%);
  padding: 60px 0;
  overflow: hidden;
}
.offers-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.offer-strip-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: background .3s, border-color .3s, transform .3s;
  animation: offerFloat 4s ease-in-out infinite;
}
.offer-strip-card:nth-child(2) { animation-delay: .6s; }
.offer-strip-card:nth-child(3) { animation-delay: 1.2s; }
.offer-strip-card:nth-child(4) { animation-delay: 1.8s; }
.offer-strip-card:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}
@keyframes offerFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.offer-strip-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.offer-strip-card__title { color: var(--gold); font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.offer-strip-card__desc { color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.6; }
.offers-note {
  text-align: center;
  margin-top: 24px;
  color: rgba(255,255,255,.35);
  font-size: .75rem;
}

/* ═══ COUNTDOWN TIMER ═══ */
.countdown-wrap {
  background: linear-gradient(135deg, #8B0000, #c0392b);
  padding: 20px 28px;
  border-radius: 8px;
  text-align: center;
  margin-top: 24px;
}
.countdown-wrap p { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 10px; }
.countdown-digits {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown-unit__num {
  background: rgba(0,0,0,.3);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  padding: 8px 16px;
  border-radius: 4px;
  min-width: 56px;
  text-align: center;
  line-height: 1;
}
.countdown-unit__label { font-size: .62rem; color: rgba(255,255,255,.6); letter-spacing: .1em; text-transform: uppercase; }
.countdown-sep { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; }

/* ═══ BANK LOGOS GRID (with real logos) ═══ */
.bank-grid-real {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 640px) { .bank-grid-real { grid-template-columns: repeat(2,1fr); } }
.bank-card-real {
  background: #fff;
  border-radius: 8px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e8e0d0;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: default;
}
.bank-card-real:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,168,76,.15);
  transform: translateY(-3px);
}
.bank-card-real__logo {
  height: 40px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
}
.bank-card-real__name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: .03em;
}

/* ═══ PREMIUM CALC BOX ═══ */
.calc-premium {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(10,22,40,.08);
  border: 1px solid #e8e0d0;
  position: relative;
  overflow: hidden;
}
.calc-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}
.calc-premium__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ece4;
}
.calc-premium__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.calc-premium__title { font-size: 1rem; color: var(--navy); font-weight: 700; margin: 0; }
.calc-premium__sub { font-size: .75rem; color: var(--muted); margin: 2px 0 0; }
.calc-result-premium {
  background: linear-gradient(135deg, var(--navy), #0d2544);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}
.calc-result-premium__label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.calc-result-premium__val { font-size: clamp(1.2rem, 4vw, 1.8rem); font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; word-break: break-word; overflow-wrap: break-word; line-height: 1.2; }
.calc-result-premium__sub { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 4px; word-break: break-word; overflow-wrap: break-word; }
.calc-tab-wrap { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.calc-tab {
  padding: 8px 16px;
  border: 1.5px solid #e8e0d0;
  border-radius: 4px;
  background: none;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s;
}
.calc-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.calc-panel { display: none; }
.calc-panel.active { display: block; }
.range-row { margin-bottom: 16px; }
.range-row label { font-size: .78rem; font-weight: 600; color: var(--charcoal); display: flex; justify-content: space-between; margin-bottom: 8px; }
.range-row label span { color: var(--gold); font-weight: 700; }
input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: #e8e0d0;
  border-radius: 2px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(184,134,11,.4);
}

/* ═══ TRUST BADGES (contact page) ═══ */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid #e8e0d0;
  border-radius: 6px;
  padding: 12px 16px;
  flex: 1;
  min-width: 160px;
  transition: border-color .25s, box-shadow .25s;
}
.trust-badge-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,.12); }
.trust-badge-card__icon { font-size: 1.4rem; flex-shrink: 0; }
.trust-badge-card__text strong { display: block; font-size: .85rem; color: var(--navy); }
.trust-badge-card__text span { font-size: .75rem; color: var(--muted); }

/* ═══ AMENITY CARD ANIMATION ═══ */
@keyframes amenityPop {
  from { opacity: 0; transform: scale(.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.amenity-item.revealed {
  animation: amenityPop .4s cubic-bezier(.16,1,.3,1) both;
}
.amenity-item:nth-child(1).revealed { animation-delay: .05s; }
.amenity-item:nth-child(2).revealed { animation-delay: .10s; }
.amenity-item:nth-child(3).revealed { animation-delay: .15s; }
.amenity-item:nth-child(4).revealed { animation-delay: .20s; }
.amenity-item:nth-child(5).revealed { animation-delay: .25s; }
.amenity-item:nth-child(6).revealed { animation-delay: .30s; }
.amenity-item:nth-child(7).revealed { animation-delay: .35s; }
.amenity-item:nth-child(8).revealed { animation-delay: .40s; }
.amenity-item { opacity: 0; }
.amenity-item.revealed { opacity: 1; }

/* ═══ HIGHLIGHT ITEM TEXT FIX ═══ */
.highlight-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.highlight-item strong { color: #ffffff !important; }
.highlight-item p { color: rgba(255,255,255,.75) !important; }

/* ═══ TRUST PREMIUM REPLACE GALLERY ═══ */
.trust-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.trust-premium-card {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2544 100%);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(201,168,76,.2);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.trust-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,22,40,.3);
  border-color: var(--gold);
}
.trust-premium-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(201,168,76,.05);
  border-radius: 50%;
}
.trust-premium-card__icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.trust-premium-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.trust-premium-card__label { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.trust-premium-card__desc { color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.6; }

/* ═══ URGENCY BOX (projects) ═══ */
.urgency-box {
  background: linear-gradient(135deg, #8B0000, #c0392b);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.urgency-box__text h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.urgency-box__text p { color: rgba(255,255,255,.75); font-size: .85rem; }
.urgency-box__pulse {
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: urgencyPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,.4);
}
@keyframes urgencyPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ═══ SEO hidden keywords ═══ */
.seo-text { font-size: 0.01px; color: transparent; position: absolute; }

/* ═══ LKN SLIDER (Why Lucknow — second section) ═══ */
.lkn-slider-wrap {
  overflow: hidden;
  margin-top: 32px;
  position: relative;
  width: 100%;
}
.lkn-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.lkn-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .lkn-slide { width: 50%; }
}
@media (min-width: 1024px) {
  .lkn-slide { width: 33.333%; }
}
.lkn-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 22px 24px;
  border: 1px solid #e8e0d0;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lkn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #c8971a);
}
.lkn-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,22,40,.12); }
.lkn-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(10,22,40,.06);
  position: absolute;
  top: 10px; right: 14px;
  line-height: 1;
}
.lkn-card__icon { font-size: 2rem; }
.lkn-card h4 { font-size: clamp(.9rem, 2vw, 1rem); color: var(--navy); margin: 0; font-weight: 700; }
.lkn-card p { font-size: clamp(.78rem, 2vw, .86rem); line-height: 1.7; color: var(--text); margin: 0; flex: 1; }
.lkn-card__stat {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(44,74,110,.08);
}
.lkn-card__stat strong {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.lkn-card__stat span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}
.lkn-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.lkn-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(10,22,40,.2);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.lkn-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ═══ GLOBAL RESPONSIVE FIXES ═══ */

/* Prevent horizontal overflow on all devices */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

/* Container safe padding on small screens */
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 48px 0; }

  /* Hero */
  .hero__inner { padding-bottom: 24px; }
  .hero__headline { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero__stats { gap: 10px; padding: 12px 14px; }
  .hero__stat strong { font-size: clamp(1.2rem, 6vw, 1.6rem); }
  .hero__actions { gap: 8px; }
  .hero__actions .btn { font-size: .83rem; padding: 12px 18px; }

  /* Ticker */
  .urgency-ticker__track { animation-duration: 22s; }

  /* Trust bar */
  .trust-bar__inner { gap: 10px; }
  .trust-badge { min-width: 140px; }

  /* Stats */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-block__num { font-size: clamp(2rem, 10vw, 2.8rem); }

  /* Why cards */
  .why-card { padding: 20px 16px; }

  /* Project cards */
  .grid-3 { grid-template-columns: 1fr; }
  .project-card__img img { height: 180px; object-fit: cover; width: 100%; }

  /* Offers strip */
  .offers-strip__inner { grid-template-columns: 1fr 1fr; }
  .offer-strip-card { padding: 16px 12px; }

  /* Countdown */
  .countdown-digits { gap: 4px; }
  .countdown-unit__num { font-size: clamp(1.4rem, 8vw, 2rem); }

  /* Lead form popup */
  .lead-popup__box { padding: 24px 18px; }

  /* Testimonials */
  .testimonial-card { padding: 22px 18px; }
  .testimonial-card__text { font-size: .85rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; }

  /* Nav */
  .nav__inner { padding: 0 16px; }

  /* Lucknow slides */
  .lucknow-slide { width: 100% !important; }
  .lkn-slide { width: 100% !important; }
  .lucknow-card { padding: 22px 16px; }
}

@media (max-width: 767px) {
  /* Section headings */
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }

  /* Two-col grids go single col */
  .grid-2 { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Stat blocks 2-col */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Offers 2-col */
  .offers-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* CTA strip */
  .cta-strip__inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-strip__actions { justify-content: center; flex-wrap: wrap; }

  /* Lead form */
  .lead-form-wrap { grid-template-columns: 1fr; gap: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* Map iframe height */
  iframe { height: 260px; }

  /* Lucknow slider dots overflow fix */
  .lucknow-slides-nav, .lkn-dots { flex-wrap: wrap; justify-content: center; }

  /* Pillars */
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .offers-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* Counter animation numbers responsive */
.stat-block__num {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}
.stat-block__label {
  font-size: clamp(.7rem, 2vw, .82rem);
}

/* Ensure images are responsive */
img { max-width: 100%; height: auto; }

/* Fix countdown on small screens */
@media (max-width: 420px) {
  .countdown-wrap { padding: 0 8px; }
  .countdown-digits { justify-content: center; gap: 6px; }
  .countdown-unit__num { font-size: 1.5rem; min-width: 36px; }
  .countdown-sep { font-size: 1.2rem; line-height: 1.8; }
}

/* Fix urgency ticker text wrapping */
.urgency-ticker__item { white-space: nowrap; }
