/* ============================================================
   360 NORTH - Oberoi Realty
   Luxury Landing Page Stylesheet
   ============================================================ */

/* -------------------- CSS VARIABLES -------------------- */
:root {
  /* Colors - Luxury Palette */
  --navy-deep: #0A1628;
  --navy-black: #000814;
  --gold-champagne: #C5A572;
  --gold-antique: #8B7355;
  --gold-muted: #A89968;
  --gold-dark: #5a4d30;
  --ivory-warm: #F5F1E8;
  --cream-soft: #D4CCB8;
  --border-subtle: #1a2a42;
  --whatsapp-green: #25D366;

  /* Typography */
 --font-display: 'Cormorant Garamond', serif; /* luxury headings */
--font-body: 'Argentum Sans Light', 'Argentum Sans', sans-serif; /* main readability */
--font-label: 'Argentum Sans Light', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vh, 120px);

  /* Transitions */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxe: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* -------------------- RESET -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--cream-soft);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  letter-spacing: 0.3px; /* readability boost */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain overlay for texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ivory-warm);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 1rem 0;
}

a { color: var(--gold-champagne); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--ivory-warm); }

img { max-width: 100%; height: auto; display: block; }

/* -------------------- UTILITY CLASSES -------------------- */
.label-caps {
   font-family: 'Argentum Sans Light', sans-serif;
  letter-spacing: 2.5px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 500;
}

.label-caps--muted { color: var(--gold-muted); }

.section { padding: var(--section-padding) 0; position: relative; }
.section--dark { background: var(--navy-black); }

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-antique), transparent);
}
.divider-ornament__dot {
  width: 6px;
  height: 6px;
  background: var(--gold-champagne);
  transform: rotate(45deg);
}

/* -------------------- BUTTONS -------------------- */
.btn-luxe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition-luxe);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-luxe--primary {
  background: var(--gold-champagne);
  color: var(--navy-deep);
}
.btn-luxe--primary:hover {
  background: var(--ivory-warm);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(197, 165, 114, 0.5);
}

.btn-luxe--outline {
  background: transparent;
  color: var(--gold-champagne);
  border: 1px solid var(--gold-champagne);
}
.btn-luxe--outline:hover {
  background: var(--gold-champagne);
  color: var(--navy-deep);
}

.btn-luxe--block { width: 100%; }

.btn-luxe .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn-luxe:hover .arrow { transform: translateX(4px); }

/* -------------------- HEADER -------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition-smooth);
  background: transparent;
}
.site-header--scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory-warm);
  font-family: var(--font-display);
}
.site-logo__brand {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold-muted);
  font-family: var(--font-label);
  text-transform: uppercase;
  line-height: 1;
}
.site-logo__project {
  font-size: 24px;
  line-height: 1;
  margin-top: 4px;
  font-style: italic;
}
.site-logo__divider {
  width: 1px;
  height: 40px;
  background: var(--gold-antique);
  opacity: 0.5;
}

.site-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.site-nav a {
  color: var(--cream-soft);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-champagne);
  transition: width 0.3s ease;
}
.site-nav a:hover { color: var(--gold-champagne); }
.site-nav a:hover::after { width: 100%; }
.site-nav a,
.btn-luxe {
  font-family: 'Argentum Sans Light', sans-serif;
  font-weight: 400;
  letter-spacing: 2px; /* pehle 3px tha, ab readable */
}

.site-header__actions { display: flex; gap: 16px; align-items: center; }
.site-header__actions .btn-luxe { padding: 12px 24px; font-size: 10px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ivory-warm);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* -------------------- HERO -------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(10, 22, 40, 0.85) 30%, rgba(10, 22, 40, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.4) 0%, rgba(0, 8, 20, 0.9) 100%),
    url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__content { position: relative; z-index: 2; max-width: 900px; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-champagne);
}

.hero__headline {
  font-size: clamp(42px, 8vw, 104px);
  color: var(--ivory-warm);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.05;
  font-style: italic;
}

.hero__headline em {
  color: var(--gold-champagne);
  font-style: italic;
  font-weight: 400;
}

.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--cream-soft);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero__sub strong {
  color: var(--gold-champagne);
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 0.9em;
}

.hero__ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__trust {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-muted);
  text-transform: uppercase;
}
.hero__trust span {
  margin: 0 14px;
  color: var(--gold-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-champagne), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 1; }
}

/* -------------------- ESSENCE / STATS -------------------- */
.essence { background: var(--navy-deep); }

.essence__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.essence__copy h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 20px 0 30px;
  font-style: italic;
}
.essence__copy p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--cream-soft);
}

.essence__visual {
  aspect-ratio: 4/5;
  background: linear-gradient(rgba(10,22,40,0.3), rgba(10,22,40,0.3)),
              url('../IMG_1812.JPG') center/cover;
  position: relative;
}
.essence__visual::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold-antique);
  pointer-events: none;
}

/* Stat Strip */
.stat-strip {
  margin-top: 100px;
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.stat-strip__item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border-subtle);
}
.stat-strip__item:last-child { border-right: none; }

.stat-strip__value {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold-champagne);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-strip__label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* -------------------- LOCATION -------------------- */
.location { background: var(--navy-black); }

.location__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location__visual {
  aspect-ratio: 5/4;
  background: radial-gradient(circle at 50% 50%, rgba(197,165,114,0.1) 0%, transparent 70%),
              url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=900&q=80') center/cover;
  position: relative;
  border: 1px solid var(--border-subtle);
}
.location__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,8,20,0.6) 100%);
}

.location__pin {
  position: absolute;
  top: 45%;
  left: 48%;
  width: 50px; height: 50px;
  border: 2px solid var(--gold-champagne);
  border-radius: 50%;
  animation: pinPulse 2s ease-out infinite;
  z-index: 2;
}
.location__pin::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: var(--gold-champagne);
  border-radius: 50%;
}
@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(197,165,114,0.6); }
  100% { box-shadow: 0 0 0 30px rgba(197,165,114,0); }
}

.location h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin: 20px 0 30px;
  font-style: italic;
}

.location__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.location__list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
  color: var(--cream-soft);
}
.location__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-champagne);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.location__list strong {
  color: var(--ivory-warm);
  font-weight: 500;
  margin-right: auto;
}
.location__list .time {
  color: var(--gold-champagne);
  font-family: var(--font-display);
  font-size: 18px;
}

/* -------------------- RESIDENCES -------------------- */
.residences { background: var(--navy-deep); position: relative; }

.residences__heading { text-align: center; margin-bottom: 80px; }
.residences__heading h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-top: 20px;
  font-style: italic;
}

.residences__usp {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--gold-champagne);
  color: var(--gold-champagne);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 30px;
  background: linear-gradient(90deg, transparent, rgba(197,165,114,0.08), transparent);
}

.residences__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.residence-card {
  background: var(--navy-black);
  border: 1px solid var(--border-subtle);
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s var(--transition-luxe);
  overflow: hidden;
}
.residence-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(197,165,114,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.residence-card:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-8px);
}
.residence-card:hover::before { opacity: 1; }

.residence-card__label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-muted);
  text-transform: uppercase;
}

.residence-card__size {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold-champagne);
  font-weight: 300;
  line-height: 1;
  margin: 16px 0 6px;
}
.residence-card__size span { font-size: 24px; color: var(--gold-muted); }

.residence-card__title {
  font-size: 28px;
  color: var(--ivory-warm);
  margin: 8px 0 30px;
  font-style: italic;
}

.residence-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.residence-card__features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--cream-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}
.residence-card__features li::before {
  content: '→';
  color: var(--gold-champagne);
  font-size: 14px;
}

.residence-card__plan {
  aspect-ratio: 4/3;
  background: var(--navy-deep);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.residence-card__plan::after {
  content: 'UNLOCK FLOOR PLAN';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-champagne);
  font-size: 11px;
  letter-spacing: 3px;
  font-family: var(--font-label);
  font-weight: 600;
}
.residence-card__plan svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

/* -------------------- CLUBHOUSE -------------------- */
.clubhouse { background: var(--navy-black); }

.clubhouse__visual {
  aspect-ratio: 21/9;
  background: linear-gradient(rgba(0,8,20,0.5), rgba(0,8,20,0.5)),
              url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1600&q=80') center/cover;
  margin-bottom: 80px;
  position: relative;
}
.clubhouse__visual::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold-antique);
}

.clubhouse__heading { text-align: center; margin-bottom: 80px; }
.clubhouse__heading h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-style: italic;
  margin-top: 20px;
}
.clubhouse__heading .sub {
  color: var(--gold-muted);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  margin-top: 16px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.amenity {
  background: var(--navy-black);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}
.amenity:hover {
  background: var(--navy-deep);
  transform: scale(1.02);
}
.amenity svg {
  width: 40px; height: 40px;
  margin: 0 auto 18px;
  color: var(--gold-champagne);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}
.amenity__name {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory-warm);
  font-family: var(--font-label);
  font-weight: 500;
}

/* -------------------- TRUST (WHY OBEROI) -------------------- */
.trust { background: var(--navy-deep); }

.trust__heading { text-align: center; margin-bottom: 80px; }
.trust__heading h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-style: italic;
  margin-top: 20px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.pillar {
  padding: 50px 20px;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
}
.pillar:hover {
  border-color: var(--gold-antique);
  background: var(--navy-black);
}
.pillar__number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold-champagne);
  line-height: 1;
  font-weight: 300;
}
.pillar__label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cream-soft);
  margin-top: 18px;
  text-transform: uppercase;
}

/* -------------------- GALLERY -------------------- */
.gallery { background: var(--navy-black); }

.gallery__heading { text-align: center; margin-bottom: 60px; }
.gallery__heading h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-style: italic;
  margin-top: 20px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-luxe);
  filter: brightness(0.9);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(197,165,114,0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery__item:hover::after { opacity: 1; }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* -------------------- LEAD FORM -------------------- */
.lead-form { background: var(--navy-deep); }

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-form__copy h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-style: italic;
  margin: 20px 0 28px;
}

.lead-form__copy p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--cream-soft);
}

.lead-form__trust {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lead-form__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--cream-soft);
  font-size: 14px;
}
.lead-form__trust-item svg {
  width: 20px; height: 20px;
  color: var(--gold-champagne);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.lead-form__card {
  background: var(--navy-black);
  border: 1px solid var(--border-subtle);
  padding: 50px 48px;
  position: relative;
}
.lead-form__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold-champagne);
  border-left: 1px solid var(--gold-champagne);
}
.lead-form__card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--gold-champagne);
  border-right: 1px solid var(--gold-champagne);
}

.form-group { margin-bottom: 24px; position: relative; }

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-label .req { color: var(--gold-champagne); }

.form-control,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--ivory-warm);
  padding: 12px 0;
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
  border-radius: 0;
  outline: none;
}
.form-control:focus,
.form-select:focus {
  border-bottom-color: var(--gold-champagne);
  box-shadow: none;
  background: transparent;
  color: var(--ivory-warm);
  outline: none;
}
.form-control::placeholder { color: var(--gold-dark); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23C5A572' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px;
  padding-right: 24px;
}
.form-select option {
  background: var(--navy-black);
  color: var(--ivory-warm);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Phone input with country code */
.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}
.phone-input-wrapper:focus-within { border-bottom-color: var(--gold-champagne); }

.phone-input-wrapper .country-select {
  width: auto;
  min-width: 110px;
  border: none;
  padding-right: 18px;
  background-position: right 0 center;
  font-size: 15px;
  color: var(--gold-champagne);
}

.phone-input-wrapper .phone-input {
  flex: 1;
  border: none;
}

.phone-input-wrapper .form-control,
.phone-input-wrapper .form-select { border-bottom: none; }

.form-error {
  color: #ff7a8a;
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 1px;
  display: none;
}
.form-error.show { display: block; }

.form-status {
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  display: none;
  border-left: 3px solid;
}
.form-status.show { display: block; }
.form-status--success {
  background: rgba(197, 165, 114, 0.08);
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
}
.form-status--error {
  background: rgba(255, 122, 138, 0.06);
  border-color: #ff7a8a;
  color: #ff7a8a;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.lead-form__card button[type="submit"] {
  margin-top: 8px;
}

.lead-form__card .privacy {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 1.5px;
}

/* -------------------- FAQ -------------------- */
.faq { background: var(--navy-black); }

.faq__heading { text-align: center; margin-bottom: 60px; }
.faq__heading h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-style: italic;
  margin-top: 20px;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item__q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ivory-warm);
  text-align: left;
  padding: 28px 0;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}
.faq-item__q:hover { color: var(--gold-champagne); }
.faq-item__q span.icon {
  color: var(--gold-champagne);
  transition: transform 0.4s var(--transition-luxe);
  font-size: 24px;
  font-family: var(--font-body);
  font-weight: 300;
}
.faq-item.open .faq-item__q span.icon { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition-luxe);
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.9;
}
.faq-item__a-inner { padding: 0 0 28px; }

/* -------------------- FOOTER -------------------- */
.site-footer {
  background: var(--navy-black);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.site-footer__brand .site-logo__project { font-size: 32px; }
.site-footer__tagline {
  color: var(--cream-soft);
  font-size: 14px;
  line-height: 1.8;
  max-width: 380px;
  margin-top: 20px;
}

.site-footer h4 {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-champagne);
  text-transform: uppercase;
  font-family: var(--font-label);
  margin-bottom: 24px;
}

.site-footer__contact p {
  margin: 0 0 12px;
  color: var(--cream-soft);
  font-size: 14px;
}
.site-footer__contact a { color: var(--cream-soft); }
.site-footer__contact a:hover { color: var(--gold-champagne); }

.rera-block {
  background: var(--navy-deep);
  padding: 20px;
  border: 1px solid var(--border-subtle);
  display: inline-block;
}
.rera-block .label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-muted);
}
.rera-block .code {
  font-family: var(--font-display);
  color: var(--gold-champagne);
  font-size: 15px;
  margin-top: 8px;
}

.site-footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold-dark);
  font-size: 12px;
}
.site-footer__bottom a { color: var(--gold-muted); }
.site-footer__bottom a:hover { color: var(--gold-champagne); }

.disclaimer {
  margin-top: 40px;
  padding: 24px;
  background: var(--navy-deep);
  border-left: 2px solid var(--gold-dark);
  color: var(--gold-dark);
  font-size: 11px;
  line-height: 1.7;
}

/* -------------------- WELCOME POPUP -------------------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup {
  background: var(--navy-deep);
  border: 1px solid var(--gold-antique);
  max-width: 480px;
  width: 100%;
  padding: 50px 44px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.5s var(--transition-luxe);
}
.popup-overlay.active .popup { transform: translateY(0); }

.popup::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 50px; height: 50px;
  border-top: 1px solid var(--gold-champagne);
  border-left: 1px solid var(--gold-champagne);
}
.popup::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 50px; height: 50px;
  border-bottom: 1px solid var(--gold-champagne);
  border-right: 1px solid var(--gold-champagne);
}

.popup__close {
  position: absolute;
  top: 16px; right: 20px;
  background: transparent;
  border: none;
  color: var(--gold-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}
.popup__close:hover { color: var(--gold-champagne); }

.popup__label {
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

.popup__title {
  font-size: 36px;
  text-align: center;
  margin: 0 0 14px;
  font-style: italic;
  color: var(--ivory-warm);
}

.popup__sub {
  text-align: center;
  font-size: 14px;
  color: var(--cream-soft);
  margin-bottom: 36px;
  line-height: 1.7;
}

.popup .divider-ornament { margin: 20px 0 32px; }

.popup__skip {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
}
.popup__skip:hover { color: var(--gold-muted); }

/* -------------------- FLOATING CTAs -------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-green);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float svg { width: 28px; height: 28px; }

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy-black);
  border-top: 1px solid var(--gold-antique);
  padding: 10px;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.mobile-bottom-bar a {
  padding: 14px 10px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-label);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold-champagne);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

/* -------------------- REVEAL ANIMATIONS -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-luxe), transform 0.8s var(--transition-luxe);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 991.98px) {
  .site-nav { display: none; }
  .menu-toggle { display: block; }

  .essence__grid,
  .location__grid,
  .lead-form__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .residences__grid,
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }

  .stat-strip { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stat-strip__item:nth-child(2) { border-right: none; }
  .stat-strip__item:nth-child(1),
  .stat-strip__item:nth-child(2) { border-bottom: 1px solid var(--border-subtle); padding-bottom: 40px; }
  .stat-strip__item:nth-child(3),
  .stat-strip__item:nth-child(4) { padding-top: 40px; }
}

@media (max-width: 767.98px) {
  .hero { min-height: 85vh; padding-top: 100px; }
  .hero__ctas .btn-luxe { width: 100%; }

  .residences__grid,
  .pillar-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery__item--wide { grid-column: span 1; }

  .lead-form__card { padding: 36px 24px; }
  .popup { padding: 36px 24px; }
  .popup__title { font-size: 28px; }

  .mobile-bottom-bar { display: grid; }
  .whatsapp-float { bottom: 80px; }

  body { padding-bottom: 72px; }

  .site-header__actions .btn-luxe { display: none; }

  .stat-strip__value { font-size: 40px; }
  .residence-card__size { font-size: 56px; }

  .site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* -------------------- MOBILE MENU -------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-black);
  z-index: 999;
  padding: 100px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-luxe);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--ivory-warm);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-label);
}
.mobile-menu a:hover { color: var(--gold-champagne); }
.mobile-menu .btn-luxe { margin-top: 40px; }

/* -------------------- THANK YOU PAGE -------------------- */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
}

.ty-check {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold-champagne);
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tyPulse 2.5s ease-out;
}
@keyframes tyPulse {
  0% { transform: scale(0); opacity: 0; box-shadow: 0 0 0 0 rgba(197,165,114,0.5); }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 40px rgba(197,165,114,0); }
}
.ty-check svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-champagne);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: tyDraw 1.2s ease-out 0.4s forwards;
}
@keyframes tyDraw { to { stroke-dashoffset: 0; } }

.thank-you__title {
  font-size: clamp(48px, 8vw, 88px);
  font-style: italic;
  margin: 0 0 20px;
}
.thank-you__sub {
  font-size: 17px;
  color: var(--cream-soft);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 60px;
}
.ty-step {
  padding: 40px 28px;
  border: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
}
.ty-step__num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold-champagne);
  margin-bottom: 14px;
}
.ty-step__title {
  font-size: 15px;
  color: var(--ivory-warm);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-style: italic;
}
.ty-step__desc {
  font-size: 13px;
  color: var(--gold-muted);
  letter-spacing: 1px;
}

@media (max-width: 767.98px) {
  .ty-steps { grid-template-columns: 1fr; }
}

/* -------------------- PRINT STYLES -------------------- */
@media print {
  body::before { display: none; }
  .site-header, .whatsapp-float, .mobile-bottom-bar, .scroll-progress { display: none !important; }
}
