/* =====================================================
   NEWTOWN REAL ESTATE LANDING PAGE — STYLES
   Premium · Mobile-First · Conversion-Focused
   ===================================================== */

/* ---------- Design Tokens — 60 : 30 : 10 ---------- */
/* 60% = Warm cream (all backgrounds)                   */
/* 30% = Deep navy  (headings, text, dark sections)     */
/* 10% = Gold       (CTAs, accents, highlights)         */
:root {
  /* 30% — Navy (secondary) */
  --c-primary: #1a3c5e;
  --c-primary-light: #245277;
  --c-primary-dark: #0f2a45;

  /* 10% — Gold (accent) */
  --c-accent: #c8a951;
  --c-accent-light: #dcc06f;
  --c-accent-dark: #a88c3a;

  /* Functional */
  --c-whatsapp: #25D366;
  --c-whatsapp-dark: #1eba59;
  --c-success: #2ecc71;
  --c-error: #e74c3c;

  /* 60% — Cream family (dominant background) */
  --c-white: #faf7f0;
  --c-off-white: #f5f1e8;
  --c-card-bg: #fffdf8;
  --c-bg-dark: #0e1f33;

  /* Text — navy-tinted for cohesion with 30% */
  --c-text: #1c2e3f;
  --c-text-secondary: #3e5567;
  --c-text-muted: #7a8d9c;
  --c-text-light: #faf7f0;

  /* Borders — warm cream family */
  --c-border: #e5dece;
  --c-border-light: #ece6d8;

  /* Shadows — warm-tinted */
  --shadow-xs: 0 1px 3px rgba(26,60,94,0.05);
  --shadow-sm: 0 2px 8px rgba(26,60,94,0.07);
  --shadow-md: 0 4px 20px rgba(26,60,94,0.09);
  --shadow-lg: 0 8px 32px rgba(26,60,94,0.12);
  --shadow-xl: 0 16px 48px rgba(26,60,94,0.16);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 50px;
  --r-circle: 50%;

  /* Fonts */
  --f-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  /* Spacing (8px scale) */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-2xl: 48px;
  --s-3xl: 64px;
  --s-4xl: 96px;

  /* Layout */
  --max-w: 1200px;
  --header-h: 64px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;scroll-padding-top:var(--header-h)}
body{font-family:var(--f-body);color:var(--c-text);line-height:1.65;background:var(--c-white);overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .2s}
button{cursor:pointer;border:none;background:none;font-family:inherit;font-size:inherit}
ul,ol{list-style:none}
input,select,textarea{font-family:inherit;font-size:inherit}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-sm);
}

.section-title {
  font-family: var(--f-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.3;
  margin-bottom: var(--s-md);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--c-text-secondary);
  max-width: 600px;
  margin-bottom: var(--s-2xl);
}

.section-title--light { color: var(--c-text-light); }
.section-subtitle--light { color: rgba(255,255,255,0.75); }

/* ---------- Layout — Seamless Section Flow ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.section {
  padding: var(--s-3xl) 0;
  background: var(--c-white);
  position: relative;
}

/* Subtle gold separator between sections for seamless flow */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  border-radius: 2px;
}

/* Alt sections: very subtle shade shift within same cream family */
.section--alt {
  background: var(--c-off-white);
}

/* Dark sections: navy (part of the 30%) — no separator */
.section--dark {
  background: var(--c-primary);
  color: var(--c-text-light);
}
.section--dark::before { display: none; }

/* Also hide separator on sections that follow dark sections */
.section--dark + .section::before,
.lead-form-section + .section::before,
.final-cta + .section::before { display: none; }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
.btn--primary:hover {
  background: var(--c-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--secondary:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.1);
}

.btn--whatsapp {
  background: var(--c-whatsapp);
  color: var(--c-white);
}
.btn--whatsapp:hover {
  background: var(--c-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--c-white);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--c-card-bg);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(26,60,94,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-md);
  color: var(--c-primary);
}
.card__icon svg { width: 24px; height: 24px; }

.card__title {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-xs);
}

.card__text {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  height: var(--header-h);
}
.header--scrolled {
  background: rgba(250,247,240,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  transition: color 0.3s;
}
.header__logo-img {
  height: 52px; /* Slightly larger for high quality */
  width: auto; /* Strictly preserves the original aspect ratio */
  object-fit: contain;
  /* Ensures crisp downscaling for high-res PNGs */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* Removes white background (makes it transparent) */
  mix-blend-mode: multiply;
}
.header--scrolled .header__logo { color: var(--c-primary); }

.header__nav { display: none; }

.header__nav-list {
  display: flex;
  gap: var(--s-lg);
}

.header__nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.header--scrolled .header__nav-link { color: var(--c-text-secondary); }
.header__nav-link:hover { color: var(--c-accent); }

.header__cta { display: none; }

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  transition: background 0.3s;
  border-radius: 2px;
}
.header--scrolled .header__menu-btn span { background: var(--c-primary); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--c-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-xl);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav--open { transform: translateX(0); }

.mobile-nav__link {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  color: var(--c-white);
  transition: color 0.2s;
}
.mobile-nav__link:hover { color: var(--c-accent); }

.mobile-nav__close {
  position: absolute;
  top: var(--s-md);
  right: var(--s-md);
  color: var(--c-white);
  font-size: 2rem;
  padding: 8px;
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--c-primary);
  overflow: hidden;
  padding: 180px 0 80px 0;
}

/* Decorative geometric pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200,169,81,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 2; }

.hero__marketed {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--s-md);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
}

.hero__project-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-sm);
}

.hero__title {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.25;
  margin-bottom: var(--s-md);
}

.hero__location {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--s-lg);
}
.hero__location svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; }

.hero__config {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  margin-bottom: var(--s-md);
}

.hero__config-tag {
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  color: var(--c-white);
}

.hero__price {
  font-family: var(--f-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: var(--s-xs);
}

.hero__price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-lg);
}

.hero__usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-sm) var(--s-md);
  margin-bottom: var(--s-xl);
}

.hero__usp {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
.hero__usp svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.hero__image { display: none; position: relative; }

/* ===== PREMIUM HERO IMAGE EFFECT ===== */
.premium-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--r-xl);
  padding: 4px; /* Thin gold border space */
  z-index: 1;
  background: linear-gradient(135deg, var(--c-accent-light), var(--c-accent-dark));
  box-shadow: 0 20px 50px rgba(12,27,46,0.3);
  transition: transform 0.4s ease;
}

/* Glowing animated backdrop */
.premium-image-backdrop {
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  background: linear-gradient(45deg, var(--c-accent-dark), var(--c-accent-light), var(--c-primary-light), var(--c-accent));
  background-size: 300% 300%;
  border-radius: calc(var(--r-xl) + 10px);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
  animation: gradientShift 6s ease infinite, pulseGlow 4s ease-in-out infinite;
}

/* The actual image */
.premium-image-main {
  width: 100%;
  height: auto;
  border-radius: calc(var(--r-xl) - 4px);
  display: block;
  position: relative;
  z-index: 2;
  animation: floatImage 6s ease-in-out infinite;
  object-fit: cover;
  /* Add subtle inner glow */
  box-shadow: inset 0 0 20px rgba(255,255,255,0.2);
}

/* Float animation is applied to the image wrapper */
.premium-image-container {
  animation: floatImage 6s ease-in-out infinite;
}

/* Shine effect over the image on hover */
.premium-image-wrapper::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border-radius: calc(var(--r-xl) - 4px);
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.4) 25%, transparent 30%);
  background-size: 300% 300%;
  background-position: 150% 150%;
  z-index: 3;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.premium-image-container:hover .premium-image-wrapper {
  transform: scale(1.02) translateY(-5px);
}
.premium-image-container:hover .premium-image-wrapper::after {
  background-position: -50% -50%;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; filter: blur(15px); }
  50% { opacity: 0.85; filter: blur(25px); transform: scale(1.02); }
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== HIGHLIGHTS ===== */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
}

.highlight-card {
  text-align: center;
  padding: var(--s-lg) var(--s-md);
  background: var(--c-card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--c-border-light);
  transition: box-shadow 0.3s, transform 0.3s;
}
.highlight-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.highlight-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--s-sm);
  background: rgba(26,60,94,0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}
.highlight-card__icon svg { width: 22px; height: 22px; }

.highlight-card__value {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 2px;
}

.highlight-card__label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}

/* ===== AMENITIES ===== */
.amenities__category { margin-bottom: var(--s-2xl); }
.amenities__category:last-child { margin-bottom: 0; }

.amenities__category-title {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-md);
  padding-bottom: var(--s-sm);
  border-bottom: 2px solid var(--c-accent);
  display: inline-block;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-md);
  background: var(--c-card-bg);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s;
}
.amenity-item:hover { box-shadow: var(--shadow-sm); }

.amenity-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(26,60,94,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}
.amenity-item__icon svg { width: 20px; height: 20px; }

.amenity-item__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
}

/* ===== FLOOR PLANS ===== */
.floor-plans__tabs {
  display: flex;
  gap: var(--s-sm);
  margin-bottom: var(--s-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.floor-plans__tabs::-webkit-scrollbar { display: none; }

.floor-plans__tab {
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--c-border);
  color: var(--c-text-secondary);
  background: var(--c-white);
  white-space: nowrap;
  transition: all 0.2s;
}
.floor-plans__tab--active,
.floor-plans__tab:hover {
  border-color: var(--c-primary);
  background: var(--c-primary);
  color: var(--c-white);
}

.floor-plans__panel { display: none; }
.floor-plans__panel--active { display: block; }

.floor-plans__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: start;
}

.floor-plans__image {
  aspect-ratio: 4/3;
  background: var(--c-off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  color: var(--c-text-muted);
  font-size: 0.85rem;
}
.floor-plans__image svg { width: 40px; height: 40px; opacity: 0.35; }

.floor-plans__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.floor-plans__detail {
  display: flex;
  justify-content: space-between;
  padding: var(--s-md) 0;
  border-bottom: 1px solid var(--c-border-light);
}

.floor-plans__detail-label {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.floor-plans__detail-value {
  font-weight: 600;
  color: var(--c-primary);
  font-size: 0.9rem;
}

/* ===== PRICING ===== */
.pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
  margin-bottom: var(--s-xl);
}

.pricing-card {
  background: var(--c-card-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card--featured {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pricing-card--featured::after {
  content: 'Popular';
  position: absolute;
  top: 12px; right: -28px;
  background: var(--c-accent);
  color: var(--c-primary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.pricing-card__header {
  padding: var(--s-lg);
  background: var(--c-primary);
  color: var(--c-white);
}
.pricing-card--featured .pricing-card__header {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
}

.pricing-card__config {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--s-xs);
}

.pricing-card__price {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-accent);
}

.pricing-card__body { padding: var(--s-lg); }

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  padding: var(--s-sm) 0;
  font-size: 0.9rem;
  color: var(--c-text-secondary);
}
.pricing-card__feature svg {
  width: 16px; height: 16px;
  color: var(--c-accent);
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  padding: var(--s-md);
  background: var(--c-off-white);
  border-radius: var(--r-md);
  line-height: 1.7;
}

.pricing__offers {
  margin-top: var(--s-xl);
  padding: var(--s-lg);
  background: linear-gradient(135deg, rgba(200,169,81,0.08), rgba(200,169,81,0.02));
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: var(--r-lg);
}

.pricing__offers-title {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-md);
}

.pricing__offer-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  margin-bottom: var(--s-sm);
  font-size: 0.9rem;
  color: var(--c-text-secondary);
}
.pricing__offer-item svg {
  width: 16px; height: 16px;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== LOCATION ===== */
.location__map {
  aspect-ratio: 16/9;
  background: var(--c-off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  color: var(--c-text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--s-xl);
}
.location__map svg { width: 48px; height: 48px; opacity: 0.3; }

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}

.location-item {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-md);
  background: var(--c-card-bg);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s;
}
.location-item:hover { box-shadow: var(--shadow-sm); }

.location-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-circle);
  background: rgba(26,60,94,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}
.location-item__icon svg { width: 18px; height: 18px; }

.location-item__info { flex: 1; }

.location-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text);
  margin-bottom: 2px;
}

.location-item__distance {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* ===== DEVELOPER ===== */
.developer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
}

.developer__logo {
  width: 160px;
  height: 80px;
  background: var(--c-off-white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 0.8rem;
  margin-bottom: var(--s-md);
  border: 1px solid var(--c-border-light);
}

.developer__name {
  font-family: var(--f-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-sm);
}

.developer__desc {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s-lg);
}

.developer__stats {
  display: flex;
  gap: var(--s-xl);
  flex-wrap: wrap;
}

.developer__stat { text-align: center; }

.developer__stat-value {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-accent);
}

.developer__stat-label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.developer__projects {
  margin-top: var(--s-xl);
}

.developer__projects-title {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-md);
}

.developer__projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
}

.developer__project-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-off-white);
  border: 1px solid var(--c-border-light);
}

.developer__project-img {
  aspect-ratio: 16/10;
  background: var(--c-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 0.75rem;
}

.developer__project-name {
  padding: var(--s-sm) var(--s-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text);
}

/* ===== MARKETED BY ===== */
.marketed-by {
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.marketed-by__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-md);
  padding: 4px 14px;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-full);
}

.marketed-by__logo {
  width: 140px;
  height: 60px;
  background: var(--c-off-white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 0.75rem;
  margin: 0 auto var(--s-md);
  border: 1px solid var(--c-border-light);
}

.marketed-by__name {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--s-sm);
}

.marketed-by__desc {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  margin-bottom: var(--s-md);
  line-height: 1.6;
}

.marketed-by__contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  font-size: 0.85rem;
  color: var(--c-text-secondary);
}

.marketed-by__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
}
.marketed-by__contact-item svg { width: 16px; height: 16px; color: var(--c-primary); }

/* ===== TRUST / RERA ===== */
.trust__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}

.trust-item {
  padding: var(--s-lg);
  background: var(--c-card-bg);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-accent);
}

.trust-item__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  margin-bottom: var(--s-xs);
}

.trust-item__value {
  font-weight: 600;
  color: var(--c-primary);
  font-size: 0.95rem;
  word-break: break-word;
}

.trust__disclaimer {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  padding: var(--s-lg);
  background: var(--c-off-white);
  border-radius: var(--r-md);
}

/* ===== LEAD FORM ===== */
.lead-form-section {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
}
.lead-form-section::before { display: none; }

.lead-form {
  max-width: 500px;
  margin: 0 auto;
}

.lead-form__group { margin-bottom: var(--s-md); }

.lead-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lead-form__input,
.lead-form__select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.lead-form__input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form__input:focus,
.lead-form__select:focus {
  border-color: var(--c-accent);
  background: rgba(255,255,255,0.12);
}

.lead-form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.lead-form__select option {
  color: var(--c-text);
  background: var(--c-white);
}

.lead-form__input--error { border-color: var(--c-error) !important; }

.lead-form__error {
  font-size: 0.75rem;
  color: #ff6b6b;
  margin-top: var(--s-xs);
  display: none;
}
.lead-form__error--visible { display: block; }

.lead-form__optional {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.lead-form__submit { margin-top: var(--s-lg); }

/* Form success state */
.lead-form__success {
  display: none;
  text-align: center;
  padding: var(--s-2xl) var(--s-lg);
}
.lead-form__success--visible { display: block; }

.lead-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-circle);
  background: rgba(46,204,113,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-md);
  color: var(--c-success);
}
.lead-form__success-icon svg { width: 32px; height: 32px; }

.lead-form__success-title {
  font-family: var(--f-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--s-sm);
}

.lead-form__success-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ===== SOCIAL PROOF / TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}

.testimonial-card {
  background: var(--c-card-bg);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__quote {
  color: var(--c-accent);
  margin-bottom: var(--s-md);
  opacity: 0.3;
}
.testimonial-card__quote svg { width: 32px; height: 32px; }

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s-md);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-circle);
  background: var(--c-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* Placeholder state for testimonials */
.testimonial-card--placeholder {
  border: 2px dashed var(--c-border);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: var(--c-text-muted);
  font-size: 0.85rem;
  text-align: center;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s-lg) 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  transition: color 0.2s;
  gap: var(--s-md);
}
.faq-item__question:hover { color: var(--c-primary); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--c-accent);
}

.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-text {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  padding-bottom: var(--s-lg);
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before { display: none; }

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,169,81,0.08), transparent 70%);
  pointer-events: none;
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta__title {
  font-family: var(--f-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--s-md);
}

.final-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto var(--s-xl);
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  align-items: center;
  margin-bottom: var(--s-xl);
}

.final-cta__contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.final-cta__contact-item {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}
.final-cta__contact-item svg { width: 16px; height: 16px; }

.final-cta__disclaimer {
  margin-top: var(--s-xl);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--s-3xl) 0 var(--s-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  margin-bottom: var(--s-2xl);
}

.footer__col-title {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--s-md);
}

.footer__text {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: var(--s-md);
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--c-accent); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: 0.85rem;
  margin-bottom: var(--s-sm);
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  color: var(--c-accent);
  flex-shrink: 0;
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: var(--s-lg);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  align-items: center;
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 800px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP STICKY ===== */
.whatsapp-sticky {
  position: fixed;
  bottom: 80px;
  right: var(--s-md);
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: var(--r-circle);
  background: var(--c-whatsapp);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-sticky:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  animation: none;
}
.whatsapp-sticky svg { width: 28px; height: 28px; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 950;
  background: rgba(250,247,240,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -2px 16px rgba(26,60,94,0.08);
  padding: var(--s-sm) var(--s-md);
  display: flex;
  gap: var(--s-sm);
}
.mobile-cta-bar .btn {
  flex: 1;
  padding: 12px;
  font-size: 0.78rem;
  border-radius: var(--r-md);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal--open .modal__content { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: var(--s-md);
  right: var(--s-md);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  padding: 4px;
  line-height: 1;
  z-index: 1;
}
.modal__close:hover { color: var(--c-white); }

.modal__title {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--s-sm);
}

.modal__subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--s-xl);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE: 480px+ ===== */
@media (min-width: 480px) {
  .highlights__grid { grid-template-columns: repeat(3, 1fr); }
  .amenities__grid  { grid-template-columns: repeat(3, 1fr); }
  .hero__ctas       { flex-direction: row; flex-wrap: wrap; }
}

/* ===== RESPONSIVE: 768px+ (Tablet) ===== */
@media (min-width: 768px) {
  .container   { padding: 0 var(--s-xl); }
  .section     { padding: var(--s-4xl) 0; }

  .section-title { font-size: 2.25rem; }

  .hero__title { font-size: 2.75rem; }
  .hero__price { font-size: 2rem; }

  .highlights__grid       { grid-template-columns: repeat(4, 1fr); }
  .why-grid               { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid         { grid-template-columns: repeat(3, 1fr); }
  .floor-plans__content   { grid-template-columns: 1fr 1fr; }
  .pricing__cards          { grid-template-columns: repeat(2, 1fr); }
  .location__grid          { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid      { grid-template-columns: repeat(2, 1fr); }
  .footer__grid            { grid-template-columns: repeat(2, 1fr); }
  .trust__items            { grid-template-columns: repeat(2, 1fr); }

  .final-cta__title   { font-size: 2.5rem; }
  .final-cta__buttons { flex-direction: row; justify-content: center; }
  .final-cta__contact { flex-direction: row; gap: var(--s-xl); }

  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  .whatsapp-sticky { bottom: var(--s-xl); }
  .mobile-cta-bar  { display: none; }
}

/* ===== RESPONSIVE: 1024px+ (Desktop) ===== */
@media (min-width: 1024px) {
  .header__nav       { display: block; }
  .header__cta       { display: inline-flex; }
  .header__menu-btn  { display: none; }

  .hero {
    padding: 200px 0 100px 0; /* Ensures content stays below the tall fixed header */
    display: flex;
    align-items: center;
  }
  .hero .container {
    display: block; /* Removed grid since video is background */
    max-width: 800px; /* Keep text constrained over the video */
    margin: 0;
    min-height: auto;
    padding-top: 0;
  }
  .hero__image { display: block; }
  .hero__title { font-size: 3rem; }

  .why-grid                 { grid-template-columns: repeat(3, 1fr); }
  .amenities__grid           { grid-template-columns: repeat(4, 1fr); }
  .location__grid            { grid-template-columns: repeat(3, 1fr); }
  .developer__inner         { grid-template-columns: 1fr 1fr; }
  .developer__projects-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid        { grid-template-columns: repeat(3, 1fr); }
  .footer__grid              { grid-template-columns: repeat(4, 1fr); }
}

/* ===== RESPONSIVE: 1280px+ (Large Desktop) ===== */
@media (min-width: 1280px) {
  .hero__title { font-size: 3.25rem; }
  .highlights__grid { grid-template-columns: repeat(6, 1fr); }
}

/* ===== PRINT ===== */
@media print {
  .header, .whatsapp-sticky, .mobile-cta-bar, .modal { display: none !important; }
  .section { page-break-inside: avoid; }
  body { font-size: 12pt; color: #000; }
  .hero { min-height: auto; background: #f0f0f0 !important; }
}

/* ===== HERO VIDEO BACKGROUND ===== */
.hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26,60,94,0.92) 0%, rgba(26,60,94,0.6) 100%);
  z-index: 1;
}
.hero {
  position: relative;
  overflow: hidden;
  /* ensure contents are above bg */
}
.hero > .container {
  position: relative;
  z-index: 2;
}
/* ===== LOCATION BENTO ===== */
.location-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media(min-width: 768px) {
  .location-bento { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.loc-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--c-border-light);
  box-shadow: 0 10px 30px rgba(12,27,46,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.loc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(12,27,46,0.08);
  border-color: rgba(200,169,81,0.3);
}
.loc-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-primary);
  font-family: var(--f-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-bg);
}
.loc-card-title svg {
  width: 28px;
  height: 28px;
  color: var(--c-accent);
}
.loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.loc-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.loc-name {
  font-weight: 500;
  color: var(--c-text);
  font-size: 1rem;
}
.loc-dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(200, 169, 81, 0.4);
  margin: 0 1rem;
  opacity: 0.7;
  min-width: 20px;
}
.loc-dist {
  font-weight: 700;
  color: var(--c-accent-dark);
  font-size: 0.95rem;
  background: linear-gradient(135deg, rgba(200, 169, 81, 0.1) 0%, rgba(200, 169, 81, 0.2) 100%);
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
}
/* ===== TRANSIT HUB BACKGROUND IMAGE ===== */
.loc-card--transit {
  background-image: linear-gradient(rgba(15,42,69,0.85), rgba(15,42,69,0.9)), url('../assets/f16e0a65654431.5afbd93572b5a.png');
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  border: none;
}
.loc-card--transit .loc-card-title {
  color: var(--c-white);
  border-bottom-color: rgba(255,255,255,0.1);
}
.loc-card--transit .loc-name {
  color: var(--c-white);
}
.loc-card--transit .loc-dist {
  color: var(--c-primary-dark);
  background: var(--c-accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.loc-card--transit .loc-dots {
  border-bottom-color: rgba(255,255,255,0.3);
}
/* ===== HEALTHCARE BACKGROUND IMAGE ===== */
.loc-card--healthcare {
  background-image: linear-gradient(rgba(15,42,69,0.85), rgba(15,42,69,0.9)), url('../assets/4ba655253488485.6a6a24cb9879e.png');
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  border: none;
}
.loc-card--healthcare .loc-card-title {
  color: var(--c-white);
  border-bottom-color: rgba(255,255,255,0.1);
}
.loc-card--healthcare .loc-name {
  color: var(--c-white);
}
.loc-card--healthcare .loc-dist {
  color: var(--c-primary-dark);
  background: var(--c-accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.loc-card--healthcare .loc-dots {
  border-bottom-color: rgba(255,255,255,0.3);
}
/* ===== EDUCATION BACKGROUND IMAGE ===== */
.loc-card--education {
  background-image: linear-gradient(rgba(15,42,69,0.85), rgba(15,42,69,0.9)), url('../assets/73de50144812531.62a300615af72.png');
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  border: none;
}
.loc-card--education .loc-card-title {
  color: var(--c-white);
  border-bottom-color: rgba(255,255,255,0.1);
}
.loc-card--education .loc-name {
  color: var(--c-white);
}
.loc-card--education .loc-dist {
  color: var(--c-primary-dark);
  background: var(--c-accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.loc-card--education .loc-dots {
  border-bottom-color: rgba(255,255,255,0.3);
}
/* ===== LANDMARK BACKGROUND IMAGE ===== */
.loc-card--landmark {
  background-image: linear-gradient(rgba(15,42,69,0.85), rgba(15,42,69,0.9)), url('../assets/saguna.png');
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  border: none;
}
.loc-card--landmark .loc-card-title {
  color: var(--c-white);
  border-bottom-color: rgba(255,255,255,0.1);
}
.loc-card--landmark .loc-name {
  color: var(--c-white);
}
.loc-card--landmark .loc-dist {
  color: var(--c-primary-dark);
  background: var(--c-accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.loc-card--landmark .loc-dots {
  border-bottom-color: rgba(255,255,255,0.3);
}
/* ===== SPECIAL AMENITIES (BROCHURE STYLE) ===== */
.amenities-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.amenity-hero-card {
  background: var(--c-white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--r-xl);
  text-align: center;
  border: 1px solid var(--c-border-light);
  box-shadow: 0 10px 30px rgba(12,27,46,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
}
.amenity-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 169, 81, 0.15);
  border-color: rgba(200, 169, 81, 0.4);
}
.amenity-hero-card svg {
  width: 48px;
  height: 48px;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
}
.amenity-hero-card h3 {
  font-family: var(--f-heading);
  color: var(--c-primary-dark);
  font-size: 1.2rem;
  line-height: 1.4;
}

.amenities-glance-box {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.amenities-glance-box::before {
  content: 'SPECIAL AMENITIES';
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--f-heading);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(200, 169, 81, 0.04);
  line-height: 0.8;
  pointer-events: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: -2px;
}
.glance-title {
  color: var(--c-primary);
  font-family: var(--f-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.amenities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) {
  .amenities-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .amenities-list { grid-template-columns: repeat(3, 1fr); }
}
.amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--c-text-dark);
  font-weight: 500;
  line-height: 1.4;
}
.amenities-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 8px rgba(200,169,81,0.5);
}
/* ===== AMENITY HERO BACKGROUND IMAGES ===== */
.amenity-hero-card--pool {
  background-image: linear-gradient(rgba(12,27,46,0.6), rgba(12,27,46,0.85)), url('../assets/pool.png');
  background-size: cover;
  background-position: center;
  border: none;
}
.amenity-hero-card--gym {
  background-image: linear-gradient(rgba(12,27,46,0.6), rgba(12,27,46,0.85)), url('../assets/gym.png');
  background-size: cover;
  background-position: center;
  border: none;
}

.amenity-hero-card--pool h3,
.amenity-hero-card--gym h3 {
  color: var(--c-white);
}
.amenity-hero-card--lobby {
  background-image: linear-gradient(rgba(12,27,46,0.6), rgba(12,27,46,0.85)), url('../assets/lobby.png');
  background-size: cover;
  background-position: center;
  border: none;
}
.amenity-hero-card--garden {
  background-image: linear-gradient(rgba(12,27,46,0.6), rgba(12,27,46,0.85)), url('../assets/garden.png');
  background-size: cover;
  background-position: center;
  border: none;
}

.amenity-hero-card--lobby h3,
.amenity-hero-card--garden h3 {
  color: var(--c-white);
}
/* ===== AMENITIES GLANCE VIDEO BACKGROUND ===== */
.amenities-glance-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.amenities-glance-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12,27,46,0.85) 0%, rgba(12,27,46,0.95) 100%);
  z-index: 1;
}
.amenities-glance-box {
  border: none;
}
.amenities-glance-box::before {
  z-index: 2;
  color: rgba(200, 169, 81, 0.08); /* slightly brighter watermark on dark bg */
}
.glance-title {
  color: var(--c-white);
  z-index: 3;
}
.amenities-list {
  z-index: 3;
}
.amenities-list li {
  color: rgba(255, 255, 255, 0.95);
}
/* Hide the Special Amenities watermark as requested */
.amenities-glance-box::before {
  display: none !important;
}
/* ===== WHY CHOOSE: CONNECTIVITY BACKGROUND ===== */
.card--connectivity {
  background-image: linear-gradient(rgba(12,27,46,0.7), rgba(12,27,46,0.9)), url('../assets/airport.jpg');
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--c-white);
}
.card--connectivity .card__title {
  color: var(--c-white);
}
.card--connectivity .card__text {
  color: rgba(255, 255, 255, 0.9);
}
.card--connectivity .card__icon {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
/* ===== WHY CHOOSE: SCHOOLS BACKGROUND ===== */
.card--schools {
  background-image: linear-gradient(rgba(12,27,46,0.7), rgba(12,27,46,0.9)), url('../assets/school.jpg');
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--c-white);
}
.card--schools .card__title {
  color: var(--c-white);
}
.card--schools .card__text {
  color: rgba(255, 255, 255, 0.9);
}
.card--schools .card__icon {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
/* ===== WHY CHOOSE: COMMERCIAL BACKGROUND ===== */
.card--commercial {
  background-image: linear-gradient(rgba(12,27,46,0.7), rgba(12,27,46,0.9)), url('../assets/saguna.png');
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--c-white);
}
.card--commercial .card__title {
  color: var(--c-white);
}
.card--commercial .card__text {
  color: rgba(255, 255, 255, 0.9);
}
.card--commercial .card__icon {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
/* ===== WHY CHOOSE: HEALTHCARE BACKGROUND ===== */
.card--healthcare {
  background-image: linear-gradient(rgba(12,27,46,0.7), rgba(12,27,46,0.9)), url('../assets/aiims.jfif');
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--c-white);
}
.card--healthcare .card__title {
  color: var(--c-white);
}
.card--healthcare .card__text {
  color: rgba(255, 255, 255, 0.9);
}
.card--healthcare .card__icon {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
/* ===== WHY CHOOSE: LOCATION BACKGROUND ===== */
.card--location {
  background-image: linear-gradient(rgba(12,27,46,0.7), rgba(12,27,46,0.9)), url('../assets/location.png');
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--c-white);
}
.card--location .card__title {
  color: var(--c-white);
}
.card--location .card__text {
  color: rgba(255, 255, 255, 0.9);
}
.card--location .card__icon {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
/* ===== WHY CHOOSE: INVEST BACKGROUND ===== */
.card--invest {
  background-image: linear-gradient(rgba(12,27,46,0.7), rgba(12,27,46,0.9)), url('../assets/whychoose.jpg');
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--c-white);
}
.card--invest .card__title {
  color: var(--c-white);
}
.card--invest .card__text {
  color: rgba(255, 255, 255, 0.9);
}
.card--invest .card__icon {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
/* ===== PROJECT HIGHLIGHTS BACKGROUNDS ===== */
.highlight-card--area,
.highlight-card--config,
.highlight-card--price,
.highlight-card--amenities,
.highlight-card--space,
.highlight-card--towers {
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--c-white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight-card--area { background-image: linear-gradient(rgba(12,27,46,0.75), rgba(12,27,46,0.85)), url('../assets/f16e0a65654431.5afbd93572b5a.png'); }
.highlight-card--config { background-image: linear-gradient(rgba(12,27,46,0.75), rgba(12,27,46,0.85)), url('../assets/lobby.png'); }
.highlight-card--price { background-image: linear-gradient(rgba(12,27,46,0.75), rgba(12,27,46,0.85)), url('../assets/whychoose.jpg'); }
.highlight-card--amenities { background-image: linear-gradient(rgba(12,27,46,0.75), rgba(12,27,46,0.85)), url('../assets/pool.png'); }
.highlight-card--space { background-image: linear-gradient(rgba(12,27,46,0.75), rgba(12,27,46,0.85)), url('../assets/garden.png'); }
.highlight-card--towers { background-image: linear-gradient(rgba(12,27,46,0.75), rgba(12,27,46,0.85)), url('../assets/use.jpg'); }

.highlight-card--area:hover,
.highlight-card--config:hover,
.highlight-card--price:hover,
.highlight-card--amenities:hover,
.highlight-card--space:hover,
.highlight-card--towers:hover {
  box-shadow: 0 10px 25px rgba(200, 169, 81, 0.3);
  transform: translateY(-4px);
}

.highlight-card--area .highlight-card__value,
.highlight-card--config .highlight-card__value,
.highlight-card--price .highlight-card__value,
.highlight-card--amenities .highlight-card__value,
.highlight-card--space .highlight-card__value,
.highlight-card--towers .highlight-card__value {
  color: var(--c-white);
}

.highlight-card--area .highlight-card__label,
.highlight-card--config .highlight-card__label,
.highlight-card--price .highlight-card__label,
.highlight-card--amenities .highlight-card__label,
.highlight-card--space .highlight-card__label,
.highlight-card--towers .highlight-card__label {
  color: rgba(255,255,255,0.8);
}

.highlight-card--area .highlight-card__icon,
.highlight-card--config .highlight-card__icon,
.highlight-card--price .highlight-card__icon,
.highlight-card--amenities .highlight-card__icon,
.highlight-card--space .highlight-card__icon,
.highlight-card--towers .highlight-card__icon {
  background: var(--c-accent);
  color: var(--c-primary-dark);
}
/* ===== CINEMATIC FLAT PLANNING (AWWWARDS STYLE) ===== */
.flat-planning {
  background: var(--c-primary-dark);
  position: relative;
  overflow: visible; /* To allow sticky to work across the section */
}

.fp-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 1024px) {
  .fp-container {
    flex-direction: row;
  }
}

/* Sticky Video Section */
.fp-visual {
  position: relative;
  width: 100%;
  height: 50vh;
  z-index: 10;
}
@media (min-width: 1024px) {
  .fp-visual {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
  }
}

.fp-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fp-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
.fp-vid.fp-vid-active {
  opacity: 1;
  z-index: 1;
}

/* High-tech Analytical Overlays */
.fp-tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
}

.fp-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--c-accent);
  box-shadow: 0 0 15px var(--c-accent), 0 0 30px var(--c-accent);
  opacity: 0.5;
  z-index: 3;
  animation: scan 4s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { top: -10%; }
  100% { top: 110%; }
}

.fp-visual-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 4;
}

.fp-badge {
  background: rgba(12,27,46,0.8);
  color: var(--c-accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(200, 169, 81, 0.4);
  backdrop-filter: blur(5px);
}

/* Scrolling Content */
.fp-content {
  width: 100%;
  padding: 4rem 5%;
  position: relative;
  z-index: 11;
}
@media (min-width: 1024px) {
  .fp-content {
    width: 50%;
    padding: 10vh 5% 10vh 5%;
  }
}

.fp-steps {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.fp-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2.5rem;
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
  transition: transform 0.4s, background 0.4s, border-color 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fp-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200, 169, 81, 0.5);
  transform: translateX(10px);
}

.fp-step-num {
  font-family: var(--f-heading);
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 1rem;
  transition: -webkit-text-stroke 0.4s, color 0.4s;
}

.fp-step:hover .fp-step-num {
  -webkit-text-stroke: 1px var(--c-accent);
  color: rgba(200, 169, 81, 0.1);
}

.fp-step-title {
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.fp-step-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}
/* ===== FP TABS ===== */
.fp-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem;
  border-radius: 50px;
  width: max-content;
  border: 1px solid rgba(255,255,255,0.1);
}

.fp-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fp-tab:hover {
  color: var(--c-white);
}

.fp-tab.active {
  background: var(--c-accent);
  color: var(--c-primary-dark);
  box-shadow: 0 4px 15px rgba(200, 169, 81, 0.4);
}