/* =============================================
   VARMA HOMES – Light Theme Styles
   Theme: Clean light + #ed315a rose-red
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --rose:        #ed315a;
  --rose-dark:   #c4214a;
  --rose-light:  #ff6b8a;
  /* No gold in light theme — use rose as the single accent */
  --gold:        #ed315a;
  --gold-light:  #ff6b8a;
  /* Light theme surfaces — clean neutral greys, no warm tint */
  --dark:        #f7f7f7;
  --dark-2:      #ffffff;
  --dark-3:      #f2f2f2;
  --dark-4:      #e8e8e8;
  --dark-5:      #dedede;
  --text-primary:   #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted:     #8a8a8a;
  --white:       #ffffff;
  --border:      rgba(0,0,0,0.09);
  --border-rose: rgba(237,49,90,0.18);
  --shadow-rose: 0 8px 32px rgba(237,49,90,0.18);
  --shadow-gold: 0 8px 32px rgba(237,49,90,0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* NOTE: overflow-x NOT set on html — it breaks position:sticky on navbar */
}
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: clip; /* clip instead of hidden — does NOT break sticky positioning */
  width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-3); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTION SPACING ---- */
section { padding: 96px 0; }

/* Hero section must have NO top padding — overrides the global rule */
.hero-carousel-section { padding: 0 !important; }

/* ---- TYPOGRAPHY HELPERS ---- */
.highlight { color: var(--rose); }
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(237,49,90,0.06);
  border: 1px solid rgba(237,49,90,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.sub-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: normal;       /* allow wrapping — overridden to nowrap on desktop only */
  text-align: center;
  justify-content: center;
  line-height: 1.3;
  word-break: break-word;
}
/* Only prevent wrapping on screens wide enough */
@media (min-width: 480px) {
  .btn { white-space: nowrap; }
}
.btn-primary {
  background: var(--rose);
  color: #ffffff;
  border-color: var(--rose);
}
.btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow-rose); }
.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover { background: rgba(237,49,90,0.06); color: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ---- LEAD FORM ---- */
.lead-form .form-group { margin-bottom: 14px; }
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
}
.lead-form input::placeholder { color: var(--text-muted); }
.lead-form input:focus,
.lead-form select:focus { outline: none; border-color: var(--rose); background: rgba(237,49,90,0.04); }
.lead-form select option { background: var(--white); color: var(--text-primary); }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .form-group.error input,
.lead-form .form-group.error select { border-color: var(--rose); }
.lead-form .error-message {
  display: none;
  color: var(--rose);
  font-size: 0.85rem;
  margin-top: 6px;
}
.lead-form .form-group.error .error-message {
  display: block;
}
.lead-form .form-status {
  color: var(--rose);
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0 0 12px;
}
.lead-form .form-status:empty { display: none; }
.form-retry-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.callback-status {
  color: #dc3545;
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0 0 12px;
}
.lead-form .iti { width: 100%; }
.lead-form .iti input { width: 100%; }
.lead-form .iti input[type="tel"] { padding-left: 64px; }
.lead-form .form-group.error .iti input { border-color: var(--rose); }

/* ============================
   ANNOUNCEMENT BAR
   ============================ */
.announcement-bar {
  background: var(--rose);
  color: #ffffff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 100%;
  overflow: hidden;
}
.announcement-bar span {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
}
.announcement-bar a { color: var(--white); font-weight: 700; }
.announcement-bar a:hover { text-decoration: underline; color: var(--white); }
.announcement-bar i { margin-right: 3px; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; }
.site-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo .site-logo-img { height: 42px; }
/* Keep text classes in case of fallback */
.logo-varma {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.logo-homes {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: 0.05em;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }
.nav-links .nav-cta {
  background: var(--rose);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--rose-dark); color: #ffffff; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;    /* always on top */
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-drawer.open { display: flex; }

/* Close button — top-right of drawer */
.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 951;
}
.nav-drawer-close:hover { background: var(--rose); border-color: var(--rose); color: var(--text-primary); }
.nav-drawer a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.nav-drawer a:hover { color: var(--rose); background: rgba(237,49,90,0.04); }
.nav-drawer .nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  margin: 24px 32px 0;
  border-radius: 10px;
  width: calc(100% - 64px);
  border-bottom: none;
}
.nav-drawer .nav-cta:hover { background: var(--rose-dark); }

/* ============================
   HERO CAROUSEL (First Section)
   ============================ */
.hero-carousel-section {
  position: relative;
  width: 100%;
  padding: 0 !important;
}

/* Slides wrapper — full screen minus announcement bar (36px) and navbar (64px) */
.hero-slides {
  position: relative;
  width: 100%;
  height: calc(100dvh - 100px);
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  flex-direction: column;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide.active {
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /* top padding pushes content down from top edge, bottom padding clears dots */
  padding: 48px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;   /* top-align so heading never gets cut */
}

/* Slide content (left) */
.hero-slide-content { color: var(--text-primary); }

.hero-project-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
}
.hero-slide.active .hero-project-label {
  animation: slideUp 0.6s 0.2s ease forwards;
}

.hero-slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(24px);
}
.hero-slide.active .hero-slide-content h1 {
  animation: slideUp 0.6s 0.35s ease forwards;
}
.hero-slide-content h1 span { color: var(--rose); }

.hero-slide-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}
.hero-slide.active .hero-slide-tagline {
  animation: slideUp 0.6s 0.5s ease forwards;
}

/* Chips */
.hero-slide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
}
.hero-slide.active .hero-slide-chips {
  animation: slideUp 0.6s 0.65s ease forwards;
}
.hero-slide-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  line-height: 1.3;
}
.hero-slide-chips span i { color: var(--gold); font-size: 0.72rem; }
/* Urgency chip — rose tint to stand out from other chips */
.hero-slide-chips .chip-urgent {
  background: rgba(237,49,90,0.25);
  border-color: rgba(237,49,90,0.5);
  color: #ffffff;
  font-weight: 600;
}
.hero-slide-chips .chip-urgent i { color: #ffffff; }

/* CTAs */
.hero-slide-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}
.hero-slide.active .hero-slide-ctas {
  animation: slideUp 0.6s 0.8s ease forwards;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  transition: var(--transition);
  white-space: normal;
  word-break: break-word;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.25); border-color: #ffffff; color: #ffffff; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Mini form (right side of hero) */
.hero-mini-form {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(30px);
  overflow-y: auto;
  max-height: calc(100dvh - 140px);
}
.hero-mini-form .lead-form .form-group { margin-bottom: 9px; }
.hero-mini-form .lead-form input,
.hero-mini-form .lead-form select { padding: 10px 13px; font-size: 0.84rem; background: #f7f7f7; border: 1px solid rgba(0,0,0,0.1); color: var(--text-primary); }
.hero-mini-form .lead-form input::placeholder { color: #8a8a8a; }
.hero-mini-form .lead-form select option { background: #fff; color: var(--text-primary); }
/* Old fixed form no longer used */
.hero-fixed-form { display: none !important; }
.hero-slide.active .hero-mini-form {
  animation: slideLeft 0.7s 0.4s ease forwards;
}
@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0); }
}
.hmf-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.hmf-header > i { font-size: 1.6rem; color: var(--rose); flex-shrink: 0; }
.hmf-header strong { display: block; color: var(--text-primary); font-size: 0.9rem; }
.hmf-header span { font-size: 0.72rem; color: var(--text-muted); }

/* Arrows — positioned inside .hero-slides */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.hero-arrow:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-50%) scale(1.05); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* Dot indicators — inside .hero-slides, clear of progress bar at bottom */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px 6px;
  background: none;
  border: none;
}
.hero-dot::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: var(--transition);
}
.hero-dot.active::before { background: var(--rose); width: 44px; }
.dot-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.hero-dot.active .dot-label { color: rgba(255,255,255,0.9); }

/* Progress bar — pinned to very bottom edge of .hero-slides */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 11;
}
.hero-progress-bar {
  height: 100%;
  background: var(--rose);
  width: 0%;
}

/* Stats strip — sits BELOW .hero-slides, never overlaps */
.hero-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border);
}
.stat {
  background: var(--white);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rose);
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ============================
   BRAND STORY
   ============================ */
.brand-story {
  background: #f0f0f0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.brand-story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.lead-text { font-size: 1.05rem; color: var(--text-primary); margin-bottom: 16px; line-height: 1.8; font-style: italic; }
.brand-story-text p { color: var(--text-secondary); margin-bottom: 24px; }
.visual-card-inner { padding: 28px; text-align: center; }
.visual-card-inner i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.visual-card-inner h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--text-primary); }
.brand-story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.visual-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.visual-card.accent { background: linear-gradient(135deg, rgba(237,49,90,0.08), rgba(237,49,90,0.04)); border-color: var(--border-rose); }

/* ============================
   WHY US
   ============================ */
.why-us { background: #ffffff; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--rose); transform: translateY(-4px); box-shadow: var(--shadow-rose); }
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(237,49,90,0.1);
  border: 1px solid var(--border-rose);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--rose);
}
.why-card h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-primary); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================
   PROJECTS HORIZONTAL CARD
   ============================ */
.projects-section { background: #f0f0f0; padding-bottom: 80px; }

.proj-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

/* The horizontal card */
.proj-card-h {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 380px;
}
.proj-card-h:hover {
  border-color: rgba(237,49,90,0.35);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
}

/* ---- Image panel ---- */
.proj-card-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.proj-img-slides { position: absolute; inset: 0; }
.proj-img-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.75s ease;
}
.proj-img-slide.active { opacity: 1; }

/* Image progress bar — top of image */
.proj-img-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  gap: 4px;
  padding: 10px 12px 0;
}
.proj-img-prog-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.proj-img-prog-bar.active { background: #fff; }

/* Badges — bottom-left of image */
.proj-img-badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proj-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}
.proj-img-badge.rera { background: #00b894; color: #fff; }
.proj-img-badge.new  { background: var(--rose); color: #fff; }
.proj-img-badge.offer { background: var(--rose); color: #fff; }

/* Image prev/next buttons */
.proj-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
}
.proj-card-img-panel:hover .proj-img-nav { opacity: 1; }
.proj-img-nav.prev { left: 10px; }
.proj-img-nav.next { right: 10px; }
.proj-img-nav:hover { background: var(--rose); border-color: var(--rose); }

/* ---- Info panel ---- */
.proj-card-info {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Builder row */
.proj-builder-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.proj-builder-avatar {
  width: 40px; height: 40px;
  background: var(--rose);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.proj-builder-row strong { display: block; font-size: 0.88rem; color: var(--text-primary); font-weight: 600; }
.proj-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--rose);
  font-weight: 500;
  transition: gap 0.2s ease;
  text-decoration: none;
}
.proj-view-all:hover { gap: 7px; }

/* Project name */
.proj-name-block h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 4px;
}
.proj-name-block p { font-size: 0.8rem; color: var(--text-muted); }

/* Specs table */
.proj-specs-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.proj-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
}
.proj-spec-row:last-child { border-bottom: none; }
.proj-spec-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.proj-spec-label i { font-size: 0.7rem; color: var(--rose); width: 12px; }
.proj-spec-val {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}
.proj-spec-rera { font-size: 0.76rem; }

/* Price */
.proj-price-block { padding-top: 4px; }
.proj-price-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.proj-price-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}
.proj-price-val span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* CTA buttons */
.proj-card-ctas {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.proj-card-ctas .btn { flex: 1; justify-content: center; font-size: 0.86rem; padding: 12px 14px; }

/* Ghost outline button */
.btn-outline-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  justify-content: center;
  flex: 1;
  white-space: nowrap;
  text-decoration: none;
}
.btn-outline-ghost:hover { border-color: var(--rose); color: var(--rose); }

/* Config Table — used on detail pages */
.config-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); }
.config-table { width: 100%; border-collapse: collapse; }
.config-table th { background: rgba(237,49,90,0.1); color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 16px; text-align: left; }
.config-table td { padding: 11px 16px; font-size: 0.88rem; color: var(--text-secondary); border-top: 1px solid var(--border); }
.config-table tr:hover td { background: rgba(237,49,90,0.04); color: var(--text-primary); }
.config-table .price { color: var(--rose); font-weight: 600; }
.table-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; padding: 0 4px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .proj-card-h { grid-template-columns: 1fr; }
  .proj-card-img-panel { min-height: 260px; }
  .proj-img-nav { opacity: 1; }
}
@media (max-width: 540px) {
  .proj-card-info { padding: 20px 18px; }
  .proj-name-block h3 { font-size: 1.45rem; }
  .proj-price-val { font-size: 1.65rem; }
  .proj-card-ctas { flex-direction: column; }
  .proj-card-img-panel { min-height: 220px; }
}

/* ============================
   AMENITIES SECTION
   ============================ */
.amenities-section { background: #ffffff; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.amenity-card:hover { border-color: var(--rose); transform: translateY(-4px); box-shadow: var(--shadow-rose); }
.amenity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(237,49,90,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rose);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon { background: var(--rose); color: var(--text-primary); }
.amenity-card h5 { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }

/* ============================
   INVESTMENT SECTION
   ============================ */
.investment-section {
  background: #f0f0f0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.investment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.investment-text h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--text-primary); margin-bottom: 20px; line-height: 1.2; }
.investment-text p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.investment-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.inv-stat {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.inv-num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--rose); display: block; font-weight: 700; }
.inv-label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 4px; }
.investment-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inv-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.inv-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.inv-card i { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 12px; }
.inv-card h5 { font-family: var(--font-serif); font-size: 0.95rem; color: var(--text-primary); margin-bottom: 8px; }
.inv-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section { background: #f0f0f0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(237,49,90,0.1);
  line-height: 1;
}
.testimonial-card:hover { border-color: var(--rose); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--text-primary); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================
   FAQ
   ============================ */
.faq-section { background: #ffffff; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--rose); }
.faq-question[aria-expanded="true"] { color: var(--rose); }
.faq-question i { transition: var(--transition); flex-shrink: 0; color: var(--text-muted); font-size: 0.8rem; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); color: var(--rose); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; }

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
  background: #f0f0f0;
  border-top: 1px solid rgba(0,0,0,0.09);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* equal 50 / 50 */
  gap: 56px;
  align-items: stretch;             /* both columns same height */
}
.contact-left h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text-primary); margin-bottom: 16px; line-height: 1.2; }
.contact-left p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: var(--transition);
}
a.contact-info-item:hover { border-color: var(--rose); }
.contact-info-item i { font-size: 1.2rem; color: var(--rose); flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-item span { color: var(--text-primary); font-size: 0.92rem; font-weight: 500; }
.nri-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237,49,90,0.08);
  border: 1px solid rgba(237,49,90,0.15);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 22px;
  line-height: 1.3;
}
.contact-form-wrap h3 span { color: var(--rose); }
/* All fields single column — stretches form to match left height */
.contact-form .form-group { margin-bottom: 12px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0 0;
}
/* Override footer text colors for dark footer in light theme */
.footer .footer-brand p,
.footer .trust-list li,
.footer-links ul a,
.footer-projects ul a,
.footer-bottom p,
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-links h5,
.footer-projects h5,
.footer-trust h5 { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.footer-links ul a:hover,
.footer-projects ul a:hover,
.footer-bottom a:hover { color: var(--rose); }
.footer .trust-list li i { color: var(--rose); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: var(--text-primary); }
.footer-links h5,
.footer-projects h5,
.footer-trust h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-links ul li,
.footer-projects ul li { margin-bottom: 10px; }
.footer-links ul a,
.footer-projects ul a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links ul a:hover,
.footer-projects ul a:hover { color: var(--rose); }
.trust-list li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.trust-list li i { color: var(--rose); font-size: 0.7rem; }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--rose); }
.footer-disclaimer { font-size: 0.72rem !important; margin-top: 6px; }

/* ============================
   STICKY CTAs
   ============================ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  border-right: 1px solid var(--border);
  letter-spacing: 0.03em;
}
.sticky-btn:last-child { border-right: none; }
.sticky-btn i { font-size: 1.2rem; }
.sticky-btn.call-btn i { color: var(--gold); }
.sticky-btn.book-btn { background: var(--rose); color: #ffffff; }
.sticky-btn.whatsapp-btn i { color: #25D366; }
.sticky-btn:hover { opacity: 0.85; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ============================
   MODAL
   ============================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }
#formErrorModal { z-index: 2100; }
.modal-box {
  background: var(--white);
  border: 1px solid var(--border-rose);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.modal-icon { font-size: 3.5rem; color: var(--rose); margin-bottom: 16px; }
.form-error-icon { color: var(--text-secondary); }
.modal-box h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--text-primary); margin-bottom: 12px; }
.modal-box p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.modal-text-button {
  display: block;
  margin: 14px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

/* Callback Modal Specific Styles */
.callback-modal-box {
  max-width: 480px;
  padding: 40px 36px;
  position: relative;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.modal-close-btn:hover {
  color: var(--rose);
  background: var(--background-light);
}
.modal-header {
  margin-bottom: 28px;
}
.callback-icon {
  font-size: 3rem;
  color: var(--rose);
  margin-bottom: 12px;
}
.callback-form .form-group {
  margin-bottom: 14px;
  text-align: left;
}
.callback-form label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.callback-form label .required {
  color: var(--rose);
}
.callback-form input[type="text"],
.callback-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--white);
}
.callback-form input:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(237,49,90,0.04);
  box-shadow: none;
}
.callback-form .form-group.error input {
  border-color: var(--rose);
}
.callback-form .form-group.error .iti input {
  border-color: var(--rose);
}
.callback-form .error-message {
  display: none;
  color: var(--rose);
  font-size: 0.85rem;
  margin-top: 6px;
}
.callback-form .form-group.error .error-message {
  display: block;
}
.callback-submit-btn {
  margin-top: 0;
  margin-bottom: 10px;
}
.callback-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* International Phone Input Styling */
.iti {
  width: 100%;
  display: block;
}
.iti__flag-container {
  padding: 0;
}
.iti__selected-flag {
  padding: 0 12px;
  background: var(--background-light);
  border-right: 1px solid var(--border);
}
.iti__selected-flag:hover {
  background: var(--background);
}
#callback_phone {
  padding-left: 64px;
}
.iti__country-list {
  max-height: 240px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.iti__country:hover {
  background: var(--background-light);
}

/* ============================
   RESPONSIVE
   ============================ */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  /* Hero */
  .hero-slide-inner {
    grid-template-columns: 1fr;
    padding: 80px 24px 130px;
    align-items: flex-start;
  }
  .hero-mini-form { max-width: 500px; }
  .hero-slide-content h1 { font-size: 3rem; }

  /* Sections */
  .brand-story-grid  { grid-template-columns: 1fr; gap: 48px; }
  .investment-grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .project-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-us-grid       { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid    { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  section { padding: 56px 0; }

  /* Show hamburger, hide desktop links */
  .nav-toggle { display: flex; }
  .nav-links  { display: none; }  /* desktop nav hidden on mobile */

  /* Hero slides */
  .hero-slides { height: calc(100dvh - 41px); min-height: 480px; }
  .hero-slide-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 80px;
    gap: 20px;
    align-items: flex-start;
  }
  .hero-mini-form  { display: none; }
  .hero-slide-content h1 { font-size: 2rem; }
  .hero-slide-tagline { font-size: 0.9rem; margin-bottom: 16px; }
  .hero-slide-chips { gap: 6px; margin-bottom: 16px; }
  .hero-slide-chips span { font-size: 0.7rem; padding: 5px 9px; }
  .hero-slide-ctas { flex-direction: column; gap: 10px; }
  .hero-slide-ctas .btn,
  .hero-slide-ctas .btn-outline-white { width: 100%; justify-content: center; }
  /* Hide announcement bar on mobile */
  .announcement-bar { display: none; }
  /* Hide hero arrows on mobile — swipe handles navigation */
  .hero-arrow { display: none; }
  .hero-project-label { font-size: 0.65rem; padding: 5px 12px; }
  .dot-label { display: none; }
  .hero-dots { bottom: 14px; gap: 8px; }

  /* Stats 2-col */
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  /* Projects */
  .project-carousel-wrap { height: 300px; }
  .carousel-slide-content h2 { font-size: 1.8rem; }
  .highlights-list { grid-template-columns: 1fr; }
  .amenities-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .location-list { grid-template-columns: 1fr; }
  .project-tabs { gap: 8px; }
  .project-tab { padding: 10px 18px; font-size: 0.83rem; }
  .config-table th, .config-table td { padding: 9px 10px; font-size: 0.8rem; }

  /* Other sections */
  .why-us-grid       { grid-template-columns: 1fr; }
  .amenities-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .form-row          { grid-template-columns: 1fr; }
  .investment-cards  { grid-template-columns: 1fr; }
  .investment-stats  { grid-template-columns: repeat(2, 1fr); }
  .brand-story-visual { grid-template-columns: 1fr 1fr; }

  /* Sticky bar shows on mobile */
  .sticky-cta-bar { display: flex; }
  /* Give space so last section isn't hidden behind sticky bar */
  .whatsapp-float { display: none; }

  /* Contact form */
  .contact-form-wrap { padding: 24px 18px; }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {
  .hero-slide-content h1 { font-size: 1.9rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 16px 10px; }
  .stat-num { font-size: 1.5rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .project-detail-title { font-size: 1.6rem; }
  .project-carousel-wrap { height: 240px; }
  .section-header h2 { font-size: 1.7rem; }
}

/* Active nav link highlight */
.nav-links a.active-nav,
.nav-drawer a.active-nav { color: var(--rose) !important; }

/* ============================
   ABOUT VARMA HOMES SECTION
   ============================ */
.about-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.trust-points { display: flex; flex-direction: column; gap: 12px; }
.trust-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}
.trust-points li:hover { border-color: var(--rose); color: var(--text-primary); }
.trust-points li i { color: var(--rose); font-size: 0.85rem; flex-shrink: 0; }

/* Contact CTA pair */
.contact-cta-pair { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contact-cta-pair .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.9rem;
}
/* .contact-cta-pair button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
} */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================
   GLOBAL OVERFLOW PREVENTION
   (applies at all breakpoints)
   ============================ */

/* Every section must stay within viewport width — but NOT .container
   which needs its own max-width: 1200px to stay centered */
section,
header,
footer,
.hero-carousel-section,
.hero-slides,
.announcement-bar,
.sticky-cta-bar,
.nav-drawer {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Tables scroll horizontally instead of overflowing */
.config-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Inputs and selects never exceed their container */
input, select, textarea, button {
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================
   EXTRA MOBILE FIXES (≤480px)
   ============================ */
@media (max-width: 480px) {
  /* Announcement bar — hide the separator pipes on tiny screens */
  .announcement-bar .sep { display: none; }

  /* Hero */
  .hero-slide-content h1 { font-size: 1.75rem; }
  .hero-slide-chips { gap: 6px; }
  .hero-slide-chips span { font-size: 0.68rem; padding: 5px 10px; }
  .hero-slide-ctas .btn,
  .hero-slide-ctas .btn-outline-white { width: 100%; font-size: 0.85rem; padding: 12px 16px; }

  /* Stats */
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 14px 10px; }
  .stat-num { font-size: 1.4rem; }

  /* Project tabs */
  .project-tab { padding: 9px 14px; font-size: 0.78rem; }
  .project-carousel-wrap { height: 220px; }
  .carousel-slide-content h2 { font-size: 1.5rem; }
  .carousel-slide-content p { font-size: 0.8rem; }

  /* Contact form */
  .contact-form-wrap { padding: 20px 16px; }
  .contact-form-wrap h3 { font-size: 1.1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom p { font-size: 0.72rem; }

  /* Section headings */
  .section-header h2 { font-size: 1.6rem; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .investment-stats { grid-template-columns: repeat(2, 1fr); }
  .why-card { padding: 20px 16px; }
  .amenity-card { padding: 20px 14px; }
  .amenity-card h5 { font-size: 0.8rem; }

  /* FAQ */
  .faq-question { font-size: 0.88rem; padding: 16px 18px; }
}

/* ============================

/* ============================================================
   VARMA HOMES — CUSTOM OVERRIDES (clean, single source)
   ============================================================ */

/* ---- SECTION BACKGROUND ALTERNATION ----
   1. Projects       → #f0f0f0 grey   (original)
   2. Who We Are     → #ffffff white
   3. Why Us         → parallax image (dark overlay)
   4. Amenities      → #ffffff white  (original)
   5. Investment     → #f0f0f0 grey   (original)
   6. About          → #ffffff white
   7. Testimonials   → #f0f0f0 grey
   8. FAQ            → #ffffff white  (original)
   9. Contact        → #f0f0f0 grey   (original)
   ---------------------------------------------------------- */
.brand-story          { background: #ffffff; }
.testimonials-section { background: #f0f0f0; }

/* ---- WHO WE ARE: image collage ---- */
.brand-story-collage {
  position: relative;
  height: 500px;
}
.bsc-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
}
.bsc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.bsc-img:hover img { transform: scale(1.05); }
.bsc-main {
  width: 48%;
  height: 100%;
  left: 0; top: 0;
  border-radius: 16px;
  z-index: 2;
}
.bsc-tr {
  width: 40%;
  height: 43%;
  right: 0; top: 0;
  border-radius: 16px;
  z-index: 2;
}
.bsc-br {
  width: 40%;
  height: 43%;
  right: 0; top: 57%;
  border-radius: 16px;
  z-index: 2;
}
.bsc-accent {
  position: absolute;
  width: 3px; height: 60%;
  background: var(--rose);
  top: 20%; left: calc(48% + 9px);
  z-index: 3; border-radius: 3px; opacity: 0.4;
}
.bsc-dot {
  position: absolute;
  bottom: 20px; left: 8px;
  z-index: 5;
  background: var(--rose);
  color: #fff;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
  font-family: var(--font-sans); white-space: nowrap;
}
.bsc-dot::before { content: '★  Premium Residences'; }
@media (max-width: 768px) {
  .brand-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-story-collage { height: 360px; }
  .bsc-dot { display: none; }
}
@media (max-width: 480px) { .brand-story-collage { height: 280px; } }

/* ---- WHY US: parallax image + glass cards ---- */
.why-us {
  background:
    linear-gradient(135deg, rgba(15,15,15,0.88) 0%, rgba(30,10,15,0.82) 100%),
    url('../images/queens-gateway/gallery/img-03.webp') center/cover no-repeat;
  background-attachment: fixed;
}
.why-us .section-tag {
  color: var(--rose);
  background: rgba(237,49,90,0.15);
  border-color: rgba(237,49,90,0.3);
}
.why-us .section-header h2 { color: #ffffff; }
.why-us .section-header p  { color: rgba(255,255,255,0.55); }
.why-us-grid { gap: 20px; }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(237,49,90,0.1);
  border-color: rgba(237,49,90,0.4);
  border-bottom-color: var(--rose);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.why-icon {
  width: 50px; height: 50px;
  background: rgba(237,49,90,0.2);
  border: 1px solid rgba(237,49,90,0.35);
  border-radius: 12px;
  font-size: 1.15rem; color: var(--rose);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.why-card h4 { font-size: 1rem; font-weight: 600; color: #ffffff; margin-bottom: 8px; }
.why-card p  { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .why-us { background-attachment: scroll; } }

/* ---- ABOUT SECTION: light, 2-col, icon trust grid ---- */
.about-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.about-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-section .section-tag {
  color: var(--rose);
  background: rgba(237,49,90,0.06);
  border-color: rgba(237,49,90,0.2);
}
.about-text h2 {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  margin: 12px 0 20px;
}
.about-text p {
  color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 12px; font-size: 0.94rem;
}
.about-section .sub-heading {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  margin-bottom: 20px; padding-bottom: 10px;
}

/* Trust icon grid — light bg */
.trust-icon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.til-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: var(--transition);
}
.til-item:hover {
  border-color: var(--rose);
  background: rgba(237,49,90,0.04);
}
.til-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(237,49,90,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 0.9rem;
}
.til-item strong {
  font-size: 0.83rem; font-weight: 600;
  color: var(--text-primary); line-height: 1.4;
  transition: color var(--transition);
}
.til-item:hover strong { color: var(--rose); }

@media (max-width: 1024px) { .about-top-grid { gap: 48px; } }
@media (max-width: 768px) {
  .about-top-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-icon-list { grid-template-columns: 1fr; }
}

/* Aligns right-col sub-heading with left-col h2 */
.about-trust-spacer {
  height: calc(1rem + 20px); /* matches section-tag line-height + margin-bottom */
}

/* ============================
   TESTIMONIALS VIDEO CAROUSEL
   ============================ */
.testimonials-section { background: #f0f0f0; }

.testi-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 52px; /* space for dots */
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testi-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Video thumbnail */
.testi-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.testi-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.testi-video-thumb:hover img { transform: scale(1.05); }
.testi-video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}
.testi-video-thumb:hover .testi-video-overlay { background: rgba(0,0,0,0.18); }
.testi-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  font-size: 1rem;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  padding-left: 3px; /* optical centering of play icon */
}
.testi-video-thumb:hover .testi-play-btn {
  background: var(--rose);
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Card body */
.testi-body { padding: 24px; }
.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 12px; display: flex; gap: 3px; }
.testi-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: rgba(237,49,90,0.1);
  border: 1px solid rgba(237,49,90,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--rose); flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
.testi-author span   { font-size: 0.78rem; color: var(--text-muted); }

/* Arrows */
.testi-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.testi-arrow:hover { background: var(--rose); color: #ffffff; border-color: var(--rose); }
.testi-prev { left: -22px; }
.testi-next { right: -22px; }

/* Dots */
.testi-dots {
  display: flex; justify-content: center; gap: 8px;
  position: absolute; bottom: 0; left: 0; right: 0;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

@media (max-width: 1024px) {
  .testi-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 640px) {
  .testi-card { flex: 0 0 100%; }
  .testi-prev { left: 0; }
  .testi-next { right: 0; }
}

/* ============================
   TESTIMONIALS — video carousel v2
   ============================ */
.testimonials-section { background: #f0f0f0; overflow: visible; }

.testi-carousel-wrap { position: relative; padding: 8px 0 56px; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

/* Card */
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }

/* Thumbnail */
.testi-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.testi-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.testi-card:hover .testi-thumb img { transform: scale(1.05); }
.testi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
/* Play button */
.testi-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 1.1rem;
  padding-left: 4px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: var(--transition); z-index: 3;
}
.testi-card:hover .testi-play {
  background: var(--rose); color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}
/* Duration badge */
.testi-duration {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 3px 8px; border-radius: 4px; z-index: 3;
}

/* Info */
.testi-info { padding: 20px 20px 22px; }
.testi-stars { color: #f59e0b; font-size: 0.8rem; display: flex; gap: 3px; margin-bottom: 10px; }
.testi-info p {
  font-size: 0.88rem; font-style: italic;
  color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 14px;
}
.testi-meta strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.testi-meta span   { font-size: 0.78rem; color: var(--rose); font-weight: 500; }

/* Arrows */
.testi-arrow {
  position: absolute; top: 36%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 50%; color: var(--text-primary);
  font-size: 0.85rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.testi-arrow:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.testi-prev { left: -22px; }
.testi-next { right: -22px; }

/* Dots */
.testi-dots { display: flex; justify-content: center; gap: 8px; position: absolute; bottom: 0; left: 0; right: 0; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.2); border: none; cursor: pointer; transition: var(--transition); }
.testi-dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

/* ============================
   VIDEO MODAL
   ============================ */
.video-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
  padding: 24px;
}
.video-modal-overlay.active { display: flex; }
.video-modal-box {
  position: relative;
  width: 100%; max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.video-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.video-modal-close:hover { background: var(--rose); border-color: var(--rose); }
.video-modal-frame { position: relative; padding-top: 56.25%; /* 16:9 */ }
.video-modal-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

@media (max-width: 1024px) { .testi-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 640px) {
  .testi-card { flex: 0 0 100%; }
  .testi-prev { left: 0; } .testi-next { right: 0; }
}

/* ============================
   TESTIMONIALS CAROUSEL — layout fix
   ============================ */
/* Remove overflow hidden from wrap — it clips arrows */
.testi-carousel-wrap {
  position: relative;
  padding: 8px 56px 56px; /* horizontal padding makes room for arrows inside */
  overflow: visible;
}
/* Clip only the track itself */
.testi-track-clip {
  overflow: hidden;
}
/* Move arrows inside the padding space */
.testi-prev { left: 0; }
.testi-next { right: 0; }

/* Section itself needs more breathing room */
.testimonials-section { padding: 96px 0; }

.testi-track-clip { overflow: hidden; border-radius: 4px; }

/* Testimonial avatar + meta row */
.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(237,49,90,0.1);
  border: 1.5px solid rgba(237,49,90,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.03em;
}
.testi-meta > div { display: flex; flex-direction: column; gap: 2px; }
.testi-meta strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; margin: 0; }
.testi-meta span   { font-size: 0.76rem; color: var(--rose); font-weight: 500; line-height: 1.2; margin: 0; }

/* ============================
   INVESTMENT SECTION — light grey, proper cards
   ============================ */
.investment-section {
  background: #f0f0f0;
  border: none;
}
.investment-text h2 { color: var(--text-primary); }
.investment-text p  { color: var(--text-secondary); }
.investment-section .section-tag {
  color: var(--rose);
  background: rgba(237,49,90,0.06);
  border-color: rgba(237,49,90,0.2);
}

/* Stats strip */
.investment-stats {
  display: flex;
  gap: 0;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.inv-stat {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 12px;
  text-align: center;
}
.inv-stat:last-child { border-right: none; }
.inv-num {
  font-size: 1.4rem;
  color: var(--rose);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.inv-label { font-size: 0.7rem; color: var(--text-muted); display: block; }

/* Right cards */
.investment-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inv-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.inv-card:hover {
  border-bottom-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.inv-card i {
  width: 44px; height: 44px;
  background: rgba(237,49,90,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--rose);
  margin-bottom: 14px;
  border: none;
}
.inv-card h5 { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.inv-card p  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ============================
   FOOTER AGENT + RERA + DISCLAIMER
   ============================ */
.footer-agent h5 { color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.footer-agent-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px;
}
.footer-agent-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer-rera-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.footer-rera-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.footer-rera-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
  font-family: monospace;
  letter-spacing: 0.03em;
}
.footer-rera-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 10px 0;
}
.footer-rera-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-rera-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  transition: color var(--transition);
}
.footer-rera-link:hover { color: var(--rose); }

/* Disclaimer band */
.footer-disclaimer-band {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 40px;
}
.footer-disclaimer-band p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.footer-disclaimer-band strong { color: rgba(255,255,255,0.55); }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
.footer-bottom-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

/* ============================
   LEGAL PAGES (Privacy / Terms)
   ============================ */
.legal-page-section {
  background: #ffffff;
  padding: 80px 0 96px;
  min-height: 70vh;
}
.legal-page-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 12px 0 8px;
}
.legal-page-header p { color: var(--text-muted); font-size: 0.88rem; }

.legal-page-body { max-width: 820px; margin: 0 auto; }

.legal-intro-box {
  background: rgba(237,49,90,0.04);
  border: 1px solid rgba(237,49,90,0.15);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.legal-intro-box p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.8; margin: 0; }

.legal-section { margin-bottom: 36px; }
.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 8px;
}
.legal-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}
.legal-section a { color: var(--rose); font-weight: 500; }
.legal-section a:hover { text-decoration: underline; }

/* RERA table */
.legal-rera-table {
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 12px;
}
.lrt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.lrt-row:last-child { border-bottom: none; }
.lrt-label { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }
.lrt-val { font-size: 0.82rem; font-weight: 700; color: var(--rose); font-family: monospace; }

/* Contact box */
.legal-contact-box {
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-top: 12px;
}
.legal-contact-box p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 6px; }
.legal-contact-box a { color: var(--rose); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }

.legal-back { max-width: 820px; margin: 40px auto 0; }

@media (max-width: 768px) {
  .lrt-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ============================
   FOOTER — clean, reference-aligned
   ============================ */
.footer {
  background: #0e0d16;
  padding: 56px 0 0;
  color: rgba(255,255,255,0.6);
}

/* Top row: logo | nav | social */
.footer-top-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-wrap .site-logo-img { height: 40px; width: auto; margin-bottom: 10px; }
.footer-logo-wrap p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }

/* Nav links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--rose); }

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-start;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* RERA strip */
.footer-rera-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-rera-strip strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.footer-rera-strip a { color: var(--rose); font-size: 0.75rem; display: inline-flex; align-items: center; gap: 4px; transition: opacity var(--transition); }
.footer-rera-strip a:hover { opacity: 0.75; }

/* Disclaimer */
.footer-disclaimer-band {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-disclaimer-band p {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.75;
}
.footer-disclaimer-band strong { color: rgba(255,255,255,0.5); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--rose); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

@media (max-width: 1024px) {
  .footer-top-row { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 640px) {
  .footer-top-row { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-rera-strip { flex-direction: column; gap: 6px; }
}
