/* ========================================
   YASHADA EARTHSONG — Nature-Immersive
   ======================================== */

:root {
  --deep-forest: #0D2B1A;
  --forest-dark: #082012;
  --emerald: #2D8A4E;
  --emerald-light: #3DAF5E;
  --sage: #8AB87A;
  --gold: #C5A55A;
  --gold-light: #dfc27a;
  --white: #FFFFFF;
  --cream: #F7F5F0;
  --gray-300: #ccc5ba;
  --gray-400: #999080;
  --gray-500: #665e50;
  --gray-600: #444038;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 60px rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-600);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--deep-forest);
  line-height: 1.2;
}

.section-title .accent { color: var(--gold); }
.section-title.white { color: var(--white); }

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep-forest);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 90, 0.35);
}

.btn-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-glass-full {
  background: rgba(13,43,26,0.08);
  border: 1px solid rgba(13,43,26,0.2);
  color: var(--deep-forest);
  width: 100%;
  text-align: center;
}
.btn-glass-full:hover {
  background: var(--deep-forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-glass-inverse {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 14px 36px;
}
.btn-glass-inverse:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-large { padding: 18px 48px; font-size: 16px; }

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== NAV LOGO ===== */
.nav-logo-fixed {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-fixed img {
  height: 66px;
  width: auto;
  display: block;
}

/* ===== PILL NAV ===== */
.nav-pill {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(13,43,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  transition: background var(--transition);
  max-width: calc(100vw - 32px);
}

.nav-pill-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-pill-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 40px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-pill-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-pill-cta {
  background: var(--gold) !important;
  color: var(--deep-forest) !important;
  font-weight: 600;
}
.nav-pill-cta:hover {
  background: var(--gold-light) !important;
}

.nav-pill-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-pill-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13,43,26,0.85) 0%, rgba(13,43,26,0.4) 60%, rgba(13,43,26,0.1) 100%);
}

.hero-content {
  flex: 1.4;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  padding: 0 24px;
}

.hero-form-card {
  flex: 1;
  max-width: 420px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(197,165,90,0.15);
}

.hero-form-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 2px;
}

.hero-form-card-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(45, 138, 78, 0.2);
  border: 1px solid rgba(45, 138, 78, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--emerald-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-title .accent { color: var(--gold); }

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-glass {
  display: inline-flex;
  gap: 24px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  margin-bottom: 24px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-item .hero-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.hero-price {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.hero-price strong {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
}

.hero-rera {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== OVERVIEW ===== */
.overview {
  padding: 0;
  background: var(--cream);
}

.overview-image-wrap {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.overview-image-wrap img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.overview-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px 40px;
  background: linear-gradient(transparent, rgba(13,43,26,0.85) 30%);
  color: var(--white);
}

.overview-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.overview-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.overview-title .gold { color: var(--gold); }

.overview-glass p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.overview-glass p strong { color: var(--gold-light); }

.overview-stats-row {
  display: flex;
  gap: 28px;
  margin: 20px 0;
}

.overview-stat-item {
  text-align: center;
}

.overview-stat-item .overview-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.overview-stat-item .overview-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}

/* ===== SCOPE ===== */
.scope {
  background: var(--deep-forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scope-blobs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.scope-blob {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(45,138,78,0.2), rgba(13,43,26,0.4));
  border: 1px solid rgba(197,165,90,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.scope-blob-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.scope-blob-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.scope-blob p {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.scope-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.scope-desc strong {
  color: var(--gold-light);
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  background: var(--cream);
}

.highlights-flow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-flow-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  transition: all var(--transition);
}

.highlight-flow-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.highlight-flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-flow-icon svg { width: 24px; height: 24px; fill: var(--white); }

.highlight-flow-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--deep-forest);
  margin-bottom: 2px;
}

.highlight-flow-item p {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== AMENITIES ===== */
.amenities {
  background: var(--deep-forest);
  padding-bottom: 60px;
}

.amenities-scroll-wrap {
  overflow-x: auto;
  padding: 0 24px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,0.1);
}

.amenities-scroll-wrap::-webkit-scrollbar {
  height: 4px;
}
.amenities-scroll-wrap::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.amenities-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.amenities-scroll {
  display: flex;
  gap: 16px;
  width: max-content;
}

.amenity-scroll-card {
  width: 140px;
  flex-shrink: 0;
  padding: 24px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
}

.amenity-scroll-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.amenity-scroll-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.amenity-scroll-icon svg { width: 22px; height: 22px; fill: var(--white); }

.amenity-scroll-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.amenities-more {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--cream);
}

.pricing-stack {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(13,43,26,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-glass:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured-glass {
  border: 2px solid var(--gold);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  background: var(--gold);
  color: var(--deep-forest);
  font-size: 11px;
  font-weight: 600;
  border-radius: 0 0 50px 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.pricing-glass-body {
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.pricing-glass-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--deep-forest);
}

.pricing-glass-desc {
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
  min-height: 2.4em;
}

.pricing-glass-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin: 4px 0;
}

.pricing-glass-rupee {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.pricing-glass-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--deep-forest);
  line-height: 1;
}

.pricing-glass-lacs {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-glass-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 4px 0 8px;
}

.pricing-glass-features li {
  font-size: 13px;
  color: var(--gray-500);
  padding-left: 20px;
  position: relative;
}

.pricing-glass-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-glass-body .btn,
.pricing-glass-body .btn-glass-full {
  margin-top: auto;
  width: 100%;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--deep-forest);
  padding-bottom: 80px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-masonry-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-masonry-wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-masonry-item:hover img {
  transform: scale(1.08);
}

.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,43,26,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-masonry-item:hover .gallery-masonry-overlay {
  opacity: 1;
}

.gallery-masonry-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.gallery-masonry-hidden {
  display: none;
}

.gallery-masonry.expanded .gallery-masonry-hidden {
  display: block;
}

.gallery-actions {
  text-align: center;
  margin-top: 32px;
}

/* ===== GALLERY MOBILE SLIDER ===== */
.gallery-slider-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
}

@media (max-width: 768px) {
  .gallery-slider-nav {
    display: flex;
  }
}

.gallery-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.gallery-slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gallery-slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== LOCATION ===== */
.location {
  background: var(--cream);
}

.location .section-eyebrow { color: var(--emerald); }
.location .section-title { color: var(--deep-forest); }
.location .section-desc { color: var(--gray-500); }

.location-full {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.location-map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map-frame iframe {
  display: block;
  width: 100%;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.location-chip:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.location-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(45,138,78,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-chip-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--emerald);
}

.location-chip div {
  display: flex;
  flex-direction: column;
}

.location-chip strong {
  font-size: 13px;
  color: var(--deep-forest);
}

.location-chip span {
  font-size: 11px;
  color: var(--gray-400);
}

/* ===== ABOUT BUILDER ===== */
.about-builder {
  background: var(--cream);
}

.builder-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.builder-visual {
  display: flex;
  justify-content: center;
}

.builder-orb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(45,138,78,0.15), rgba(13,43,26,0.1));
  border: 2px solid rgba(197,165,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.builder-orb img {
  max-width: 100%;
  max-height: 100%;
}

.builder-info p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.builder-info strong { color: var(--deep-forest); }

.builder-stats-row {
  display: flex;
  gap: 36px;
  margin-top: 24px;
}

.builder-stat-item {
  text-align: center;
}

.builder-stat-item .builder-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

.builder-stat-item .builder-stat-label {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--cream);
}

.cta-glass-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 48px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(13,43,26,0.1);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-title em { color: var(--gold); font-style: normal; }

.cta-text {
  font-size: 15px;
  color: var(--gray-400);
  margin-bottom: 28px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
}

.contact-glass {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(13,43,26,0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-glass-left p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--emerald);
}

.contact-actions-glass {
  display: flex;
  gap: 12px;
}

.form-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-field {
  margin-bottom: 14px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-600);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold);
}

.form-field input::placeholder {
  color: var(--gray-400);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.form-success p { color: var(--gray-400); }

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
}

.faq-stack {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-organic {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  border: 1px solid var(--gray-300);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-organic.active {
  border-color: var(--gold);
}

.faq-organic .faq-q {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: var(--deep-forest);
  user-select: none;
}

.faq-organic.active .faq-q {
  color: var(--gold);
}

.faq-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--deep-forest);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-organic.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-organic .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
}

.faq-organic.active .faq-a {
  max-height: 300px;
  padding: 0 24px 18px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep-forest);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo-img {
  height: 81px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

/* ===== FOOTER RERA ===== */
.rera-brand-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.rera-badge {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.rera-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rera-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rera-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,43,26,0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.popup-overlay.active { display: flex; }

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gray-400);
  border-radius: 50%;
  transition: all var(--transition);
}

.popup-close:hover { background: var(--cream); color: var(--deep-forest); }

.popup-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 4px;
}

.popup-sub {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.popup-success { display: none; text-align: center; padding: 20px; }

.popup-success .check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.popup-success strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.popup-success p { color: var(--gray-400); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ===== MOBILE STICKY ===== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--deep-forest);
  padding: 10px 16px;
  gap: 10px;
  border-top: 2px solid var(--gold);
}

.mobile-sticky a {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sticky-call {
  background: var(--gold);
  color: var(--deep-forest);
}

.sticky-call svg { width: 18px; height: 18px; flex-shrink: 0; }

.sticky-wa {
  background: #25D366;
  color: var(--white);
}

.sticky-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== FIELD ERROR ===== */
.field-error {
  border-color: #ef4444 !important;
}

/* ===== RESPONSIVE ===== */
/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 24px 60px;
  max-width: 780px;
  margin: 0 auto;
  background: var(--cream);
  min-height: 100vh;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--deep-forest);
  margin-bottom: 8px;
}
.legal-page .effective-date {
  font-size: 13px;
  color: var(--emerald);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--deep-forest);
  margin: 36px 0 14px;
}
.legal-page h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--deep-forest);
  margin: 24px 0 10px;
}
.legal-page p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}
.legal-page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-page li {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 4px;
}
.legal-page strong {
  color: var(--deep-forest);
}

@media (max-width: 1024px) {
  .hero-title { font-size: 60px; }
  .pricing-stack { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 28px; }

  /* Logo */
  .nav-logo-fixed img { height: 54px; }

  /* Nav */
  .nav-pill {
    top: 12px;
    padding: 6px 14px;
    border-radius: 40px;
  }

  .nav-pill-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    background: rgba(13,43,26,0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
  }

  .nav-pill-links.open { display: flex; }

  .nav-pill-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nav-pill-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 90px 0 40px; }
  .hero-layout { flex-direction: column; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 14px; }
  .hero-desc { font-size: 14px; margin-bottom: 24px; }
  .hero-stats-glass {
    gap: 16px;
    padding: 12px 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-stat-item .hero-stat-num { font-size: 20px; }
  .hero-actions { margin-bottom: 24px; }
  .hero-price strong { font-size: 22px; }
  .hero-form-card { max-width: 100%; }

  /* Overview */
  .overview-image-wrap img { height: auto; min-height: 400px; }
  .overview-glass {
    position: relative;
    background: var(--deep-forest);
    padding: 32px 24px;
  }
  .overview-title { font-size: 28px; }
  .overview-stats-row { gap: 16px; flex-wrap: wrap; }

  /* Scope */
  .scope-blobs { flex-direction: column; gap: 16px; }
  .scope-blob { width: 160px; height: 160px; }
  .scope-blob-num { font-size: 40px; }

  /* Highlights */
  .highlight-flow-item { padding: 16px 18px; }
  .highlight-flow-item h3 { font-size: 16px; }

  /* Amenities */
  .amenities-scroll-wrap { padding: 0 16px 12px; }
  .amenity-scroll-card { width: 120px; padding: 18px 12px; }

  /* Pricing */
  .pricing-stack { grid-template-columns: 1fr; gap: 14px; padding: 0 16px; }
  .pricing-glass-body { padding: 28px 20px; gap: 14px; }
  .pricing-glass-body h3 { font-size: 22px; }
  .pricing-glass-desc { font-size: 12px; }
  .pricing-glass-num { font-size: 28px; }
  .pricing-glass-rupee { font-size: 16px; }
  .pricing-glass-features { gap: 8px; }
  .pricing-glass-features li { font-size: 13px; }
  .pricing-badge { font-size: 10px; padding: 3px 14px; }

  /* Gallery — horizontal carousel */
  .gallery-masonry {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 0 16px;
    max-width: 100%;
  }
  .gallery-masonry::-webkit-scrollbar { display: none; }
  .gallery-masonry-item {
    flex: 0 0 82%;
    scroll-snap-align: start;
    aspect-ratio: 16/9;
    margin-right: 10px;
  }
  .gallery-masonry-wide {
    flex: 0 0 82%;
    aspect-ratio: 16/9;
  }
  .gallery-masonry-item:last-child { margin-right: 0; }

  /* Location */
  .location-map-frame iframe { height: 280px; }
  .location-chips { gap: 8px; }
  .location-chip { padding: 8px 14px; }

  /* Builder */
  .builder-split { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .builder-orb { width: 160px; height: 160px; margin: 0 auto; }
  .builder-stats-row { justify-content: center; gap: 24px; }

  /* CTA */
  .cta-glass-card { padding: 36px 24px; }
  .cta-title { font-size: 28px; }

  /* Contact */
  .contact-glass {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  .contact-actions-glass { flex-direction: column; }

  /* Legal pages */
  .legal-page { padding: 120px 20px 40px; }
  .legal-page h1 { font-size: 28px; }
  .legal-page h2 { font-size: 20px; margin: 28px 0 12px; }
  .legal-page h3 { font-size: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { max-width: 100%; }
  .rera-number { font-size: 16px; }

  /* Popup */
  .popup-box { padding: 28px 20px; }

  /* Mobile sticky */
  .mobile-sticky { display: flex; }
}

/* ===== SMALL PHONES (480px) ===== */
@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }
  .section-title { font-size: 22px; }
  .section-desc { font-size: 14px; }
  .container { padding: 0 16px; }

  /* Logo */
  .nav-logo-fixed img { height: 48px; }

  /* Nav */
  .nav-pill {
    top: 10px;
    padding: 5px 10px;
    border-radius: 30px;
  }
  .nav-pill-links { top: 56px; left: 10px; right: 10px; }
  .nav-pill-link { padding: 10px; font-size: 14px; }
  .nav-pill-toggle { width: 32px; height: 32px; gap: 4px; }
  .nav-pill-toggle span { width: 18px; }

  /* Hero */
  .hero { padding: 70px 0 24px; }
  .hero-layout { gap: 24px; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 13px; letter-spacing: 1px; }
  .hero-desc { font-size: 13px; margin-bottom: 18px; }
  .hero-stats-glass {
    gap: 12px;
    padding: 10px 16px;
    border-radius: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-stat-item .hero-stat-num { font-size: 18px; }
  .hero-stat-item .hero-stat-label { font-size: 9px; letter-spacing: 0.5px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { padding: 12px 22px; font-size: 14px; }
  .hero-price { font-size: 15px; }
  .hero-price strong { font-size: 20px; }
  .hero-tag { font-size: 11px; padding: 4px 12px; margin-bottom: 14px; }
  .hero-form-card { padding: 24px 20px; }
  .hero-form-card-title { font-size: 20px; }
  .hero-form-card-sub { font-size: 12px; margin-bottom: 16px; }

  /* Overview */
  .overview-image-wrap img { min-height: 200px; }
  .overview-glass { padding: 20px 16px; }
  .overview-title { font-size: 24px; }
  .overview-glass p { font-size: 14px; }
  .overview-stats-row { gap: 12px; }
  .overview-stat-item .overview-stat-num { font-size: 20px; }
  .overview-stat-item .overview-stat-label { font-size: 9px; }

  /* Scope */
  .scope-blobs { gap: 12px; }
  .scope-blob { width: 130px; height: 130px; padding: 16px; }
  .scope-blob-num { font-size: 32px; }
  .scope-blob-label { font-size: 11px; }
  .scope-blob p { font-size: 10px; }
  .scope-desc { font-size: 14px; line-height: 1.6; padding: 0 16px; }

  /* Highlights */
  .highlights-flow { padding: 0 16px; gap: 10px; }
  .highlight-flow-item { padding: 14px 16px; gap: 14px; }
  .highlight-flow-icon { width: 44px; height: 44px; }
  .highlight-flow-icon svg { width: 20px; height: 20px; }
  .highlight-flow-item h3 { font-size: 15px; }
  .highlight-flow-item p { font-size: 12px; }

  /* Amenities */
  .amenities-scroll-wrap { padding: 0 12px 8px; }
  .amenity-scroll-card { width: 100px; padding: 14px 10px; }
  .amenity-scroll-icon { width: 40px; height: 40px; border-radius: 10px; }
  .amenity-scroll-icon svg { width: 18px; height: 18px; }
  .amenity-scroll-card h3 { font-size: 11px; }

  /* Pricing */
  .pricing-stack { padding: 0 12px; gap: 12px; }
  .pricing-glass-body { padding: 24px 16px; gap: 12px; }
  .pricing-glass-body h3 { font-size: 20px; }
  .pricing-glass-desc { font-size: 12px; }
  .pricing-glass-num { font-size: 24px; }
  .pricing-glass-rupee { font-size: 14px; }
  .pricing-glass-features { gap: 6px; }
  .pricing-glass-features li { font-size: 12px; }
  .pricing-badge { font-size: 10px; padding: 3px 10px; }

  /* Gallery */
  .gallery-masonry { padding: 0 12px; }
  .gallery-masonry-item { flex: 0 0 90%; margin-right: 8px; }
  .gallery-masonry-wide { flex: 0 0 90%; }

  .gallery-slider-nav { padding: 12px 0; gap: 8px; }
  .gallery-slider-btn { width: 36px; height: 36px; font-size: 18px; }
  .gallery-slider-dot { width: 6px; height: 6px; }
  .gallery-slider-dot.active { width: 20px; }

  .gallery-actions { margin-top: 24px; }
  .gallery-actions .btn { padding: 12px 28px; font-size: 14px; }

  /* Location */
  .location-full { padding: 0 16px; }
  .location-map-frame iframe { height: 200px; }
  .location-chips { gap: 6px; }
  .location-chip { padding: 6px 12px; gap: 8px; }
  .location-chip-icon { width: 28px; height: 28px; }
  .location-chip-icon svg { width: 14px; height: 14px; }
  .location-chip strong { font-size: 12px; }
  .location-chip span { font-size: 10px; }

  /* Builder */
  .builder-split { gap: 16px; }
  .builder-orb { width: 130px; height: 130px; padding: 30px; }
  .builder-info p { font-size: 14px; }
  .builder-stats-row { gap: 16px; }
  .builder-stat-item .builder-stat-num { font-size: 22px; }
  .builder-stat-item .builder-stat-label { font-size: 10px; }

  /* CTA */
  .cta-glass-card { padding: 28px 20px; }
  .cta-title { font-size: 24px; }
  .cta-text { font-size: 14px; }
  .cta-eyebrow { font-size: 12px; }
  .cta-section .btn-large { padding: 14px 36px; font-size: 14px; }

  /* Contact */
  .contact-glass { padding: 24px 16px; gap: 20px; }
  .contact-glass-left p { font-size: 14px; }
  .contact-info-item { font-size: 13px; }
  .contact-actions-glass { flex-direction: column; gap: 8px; }
  .form-card { padding: 20px 16px; }
  .form-field input,
  .form-field select { padding: 12px 14px; font-size: 13px; }

  /* Legal pages */
  .legal-page { padding: 100px 16px 30px; }
  .legal-page h1 { font-size: 24px; }
  .legal-page h2 { font-size: 18px; }
  .legal-page h3 { font-size: 15px; }
  .legal-page p { font-size: 13px; }
  .legal-page li { font-size: 13px; }

  /* FAQ */
  .faq-stack { padding: 0 16px; }
  .faq-organic .faq-q { padding: 14px 18px; font-size: 14px; }
  .faq-organic .faq-a { font-size: 13px; }

  /* Wave dividers */
  .wave-divider svg { height: 40px; }

  /* Footer */
  .footer { padding: 28px 0 16px; }
  .footer-grid { gap: 20px; }
  .footer-logo-img { height: 63px; }
  .footer-brand p { font-size: 12px; }
  .footer-links h4 { font-size: 12px; margin-bottom: 10px; }
  .footer-links a { font-size: 12px; }
  .rera-number { font-size: 14px; }
  .footer-bottom p { font-size: 10px; }

  /* Popup */
  .popup-overlay { padding: 16px; }
  .popup-box { padding: 24px 16px; }
  .popup-title { font-size: 22px; }
  .popup-sub { font-size: 12px; }
  .popup-close { top: 10px; right: 10px; width: 30px; height: 30px; font-size: 18px; }

  /* WhatsApp float */
  .whatsapp-float { width: 48px; height: 48px; bottom: 66px; right: 14px; }
  .whatsapp-float svg { width: 22px; height: 22px; }

  /* Mobile sticky */
  .mobile-sticky { padding: 8px 12px; gap: 8px; }
  .mobile-sticky a { padding: 10px; font-size: 13px; }
  .sticky-call svg,
  .sticky-wa svg { width: 16px; height: 16px; }
}
