/* ============================================
   SANTIAGO GENESIS — Main Stylesheet
   Theme: Light Cream + Gold
   ============================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e0bc5e;
  --gold-dark: #a88a30;
  --gold-glow: rgba(201, 168, 76, 0.12);
  --gold-glow-strong: rgba(201, 168, 76, 0.25);

  --cream: #faf8f5;
  --cream-2: #f5f2ec;
  --cream-3: #efeae2;
  --surface: #ffffff;
  --white: #ffffff;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(201, 168, 76, 0.3);

  --text-primary: #1a1a2e;
  --text-secondary: #5a5a72;
  --text-muted: #88889a;
  --text-dim: #b0b0c0;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);

  --max-width: 1200px;
  --section-padding: 100px 24px;
  --nav-height: 72px;
}

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  user-select: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 12px 0;
  transition: var(--transition-base);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img { height: 36px; width: auto; border-radius: 6px; }



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

.nav-link {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover, .nav-link:focus-visible { color: var(--gold); }
.nav-link:hover::after, .nav-link:focus-visible::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: #1a1a2e;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}

.navbar.scrolled .nav-hamburger span { background: var(--text-primary); }

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-group {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-cta-mobile {
  padding: 6px 14px;
  font-size: 10px;
  gap: 6px;
}



/* ============================================
   HERO — SPLIT LAYOUT (25% Text | 75% Slider)
   ============================================ */
.hero {
  padding-top: var(--nav-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  align-items: center;
}

.hero-text { max-width: 100%; }

/* ---- HERO TEXT (dark on cream) ---- */

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}

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

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

.hero-subtitle {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--gold);
  font-style: italic;
  display: inline-block;
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.5vw, 17px);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-stat {
  flex: 1;
  text-align: center;
}

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

.hero-stat-plus {
  font-size: 18px;
  color: var(--gold);
  vertical-align: top;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--gold-dark);
  border-radius: 50px;
  color: var(--gold-dark);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(168, 138, 48, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-rera {
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 24px;
  letter-spacing: 0.05em;
}

.hero-rera strong { color: var(--text-primary); }

/* ---- HERO SLIDER (Right 75%) ---- */

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-3);
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.7s ease;
  background: var(--cream-3);
}

.hero-slider img.active { opacity: 1; }

.hero-slider .hero-slide-prev {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.35);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .hero-slide-next {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.35);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .hero-slide-prev:hover,
.hero-slider .hero-slide-next:hover {
  background: var(--gold);
  color: #1a1a2e;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider .hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slider .hero-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider .hero-slider-dots span.active {
  background: var(--gold);
  width: 22px;
  border-radius: 6px;
}

.hero-slider .hero-slider-dots span:hover { background: var(--gold); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #1a1a2e;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-ghost:hover {
  background: rgba(168, 138, 48, 0.1);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #1a1a2e;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================
   FEATURE SHOWCASE SLIDER
   ============================================ */
#showcase {
  display: grid;
  grid-template-columns: 65% 35%;
  min-height: 500px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-slider {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--cream-3);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.showcase-slide.active { opacity: 1; z-index: 1; }

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-arrow:hover { background: var(--gold); color: #1a1a2e; transform: translateY(-50%) scale(1.05); }

.showcase-left { left: 20px; }
.showcase-right { right: 20px; }

.showcase-copy {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.showcase-copy p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.showcase-copy .section-eyebrow { color: var(--gold); }

.showcase-btn {
  width: fit-content;
  background: var(--gold);
  color: #1a1a2e;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition-base);
}

.showcase-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-padding); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
}

/* ============================================
   PROJECT OVERVIEW
   ============================================ */
.overview {
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.overview::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.03) 50%, rgba(201,168,76,0.06) 100%);
  pointer-events: none;
}

.overview-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 100px 5%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.overview-image {
  flex: 1;
  position: relative;
}

.overview-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.overview-image-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.overview-image-wrap:hover img {
  transform: scale(1.04);
}

.overview-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

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

.overview-content {
  flex: 1;
}

.overview-eyebrow {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.overview-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.overview-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.overview-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 2px solid rgba(201,168,76,0.15);
  border-bottom: 2px solid rgba(201,168,76,0.15);
}

.overview-stat {
  flex: 1;
  text-align: center;
}

.overview-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.overview-stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.overview-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.15);
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities { background: var(--surface); border-top: 1px solid var(--border); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.amenity-card.amenity-hidden { display: none; }
.amenities-grid.expanded .amenity-card.amenity-hidden { display: block; }

.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px;
  transition: transform var(--transition-base);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.amenity-card:hover .amenity-icon { transform: scale(1.15) rotate(-5deg); }

.amenity-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.amenity-card:hover h3 { color: var(--gold); }

.amenities-toggle { text-align: center; margin-top: 30px; }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--cream-2); border-top: 1px solid var(--border); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border-color: rgba(201, 168, 76, 0.25);
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%);
  box-shadow: 0 4px 24px rgba(201,168,76,0.08);
}

.pricing-featured:hover { border-color: rgba(201, 168, 76, 0.4); }

.pricing-img { height: 200px; overflow: hidden; position: relative; }

.blur-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.blur-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transition: filter 0.4s ease;
}

.blur-overlay:hover img { filter: blur(4px); }

.blur-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  background: rgba(0,0,0,0.45);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.blur-label small {
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 400;
  opacity: 0.7;
  margin-top: 6px;
}

.pricing-body { padding: 28px 24px; }

.pricing-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 14px;
}

.pricing-type {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-rupee {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
}

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

.pricing-lacs {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}



/* ============================================
   TOKEN SECTION — removed
   ============================================ */

/* ============================================
   SPECIFICATIONS
   ============================================ */
.specs {
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
}

.specs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.spec-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.spec-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.12);
}

.spec-card:hover::after {
  opacity: 1;
}

.spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 10px;
  transition: transform var(--transition-base), background var(--transition-base);
}

.spec-card:hover .spec-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.1));
}

.spec-icon svg {
  width: 100%;
  height: 100%;
}

.spec-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.spec-card ul { display: flex; flex-direction: column; gap: 10px; }

.spec-card li {
  color: var(--text-secondary);
  font-size: 13px;
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.spec-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-card li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--cream-2); border-top: 1px solid var(--border); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.gallery-grid.expanded { max-height: 2000px; }

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

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

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

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

.gallery-hidden { display: none; }

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

.gallery-toggle { text-align: center; margin-top: 24px; }

/* ============================================
   LOCATION
   ============================================ */
.location { background: var(--surface); border-top: 1px solid var(--border); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.location-map img { width: 100%; height: 100%; object-fit: cover; }

.location-map .blur-overlay img {
  filter: blur(3px);
}

.location-map .blur-overlay:hover img {
  filter: blur(0px);
}

.location-info { display: flex; flex-direction: column; gap: 28px; }

.loc-category {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: var(--transition-base);
}

.loc-category:hover { border-color: var(--border-hover); }

.loc-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition-fast);
}

.loc-category-header:hover { background: rgba(201,168,76,0.06); }

.loc-category-header h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.loc-arrow {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.loc-category-header.active .loc-arrow { transform: rotate(45deg); }

.loc-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-items.open {
  max-height: 300px;
  padding: 0 20px 16px;
}

.loc-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.loc-items li:last-child { border-bottom: none; }

.loc-items li span:last-child {
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--cream-2); border-top: 1px solid var(--border); }

.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-fast);
  user-select: none;
}

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

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-q.active .faq-icon { transform: rotate(45deg); }

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

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a a { color: var(--gold); text-decoration: underline; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-3) 0%, rgba(201,168,76,0.08) 50%, var(--cream-3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-content { max-width: 640px; margin: 0 auto; }

.cta-eyebrow {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.cta-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--surface); border-top: 1px solid var(--border); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-copy .section-eyebrow { margin-bottom: 12px; }
.contact-copy .section-title { margin-bottom: 16px; }
.contact-copy > p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.contact-item:hover { color: var(--gold); }

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.panel-kicker {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.contact-success .check { font-size: 40px; color: var(--gold); margin-bottom: 12px; }
.contact-success h3 { font-family: var(--font-serif); font-size: 22px; color: var(--gold); margin-bottom: 8px; }
.contact-success p { color: var(--text-muted); font-size: 13px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1a2e;
  border-top: none;
  padding: 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  display: block;
}

.footer-logo {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer-rera-info { text-align: right; }

.footer-rera-info p {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin-bottom: 4px;
}

.footer-rera-info a { transition: opacity var(--transition-fast); }
.footer-rera-info a:hover { opacity: 1 !important; }

.footer-disclaimer {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  line-height: 1.7;
  padding: 16px 24px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================
   POPUP MODAL
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.popup-box {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
  padding: 4px;
}

.popup-close:hover { color: var(--text-primary); }

.popup-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.popup-sub {
  color: #6a6a7e;
  font-size: 13px;
  margin-bottom: 24px;
}

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

.popup-success .check {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.popup-success p {
  color: #6a6a7e;
  font-size: 13px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  color: #6a6a7e;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,0.12); }

.form-group input.field-error,
.form-group select.field-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.12);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235a5a72' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option { background: var(--surface); color: var(--text-primary); }

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: var(--transition-base);
  color: #fff;
}

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

.whatsapp-float svg { width: 26px; height: 26px; }

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

.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1100px) {
  .overview-inner { gap: 48px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-split { gap: 40px; }
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 4 / 3; }
}

@media (max-width: 1024px) {
  .overview-inner { flex-direction: column; gap: 48px; padding: 60px 5%; }
  .overview-image { order: -1; }
  .overview-stats { gap: 8px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-group { display: flex; }
  .nav-cta-mobile { display: inline-flex; }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    gap: 12px;
    z-index: 999;
    padding: 80px 24px;
    overflow-y: auto;
  }

  .nav-links.open .nav-link {
    font-size: 20px;
    font-family: var(--font-serif);
    color: var(--text-primary);
    padding: 12px 0;
  }

  .nav-links.open .nav-link:hover { color: var(--gold); }

  .hero { min-height: auto; padding-top: var(--nav-height); }
  .hero-content { grid-template-columns: 1fr; gap: 28px; padding: 24px 20px; }
  .hero-text { max-width: 100%; order: 1; }
  .hero-slider { aspect-ratio: 16 / 10; border-radius: var(--radius-md); order: -1; }
  .hero-slider img { object-fit: cover; }
  .hero-slider .hero-slide-prev,
  .hero-slider .hero-slide-next { width: 34px; height: 34px; font-size: 22px; }
  .hero-slider .hero-slide-prev { left: 8px; }
  .hero-slider .hero-slide-next { right: 8px; }
  .hero-slider .hero-slider-dots { bottom: 12px; }
  .hero-slider .hero-slider-dots span { width: 8px; height: 8px; }
  .hero-slider .hero-slider-dots span.active { width: 20px; }
  .hero-stats { gap: 0; }
  .hero-stat-num { font-size: 26px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  :root { --section-padding: 64px 20px; }

  .section-header { margin-bottom: 40px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .amenity-card { padding: 24px 16px; }
  .amenity-card h3 { font-size: 14px; }
  .amenity-icon { width: 40px; height: 40px; padding: 8px; }

  .specs-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; max-height: 500px; }
  .gallery-grid.expanded { max-height: 3000px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .overview-inner { gap: 32px; padding: 48px 5%; }
  .overview-stats { flex-wrap: wrap; gap: 8px; padding: 16px 0; }
  .overview-stat { flex: 1 1 45%; }
  .overview-stat-divider { display: none; }
  .overview-badge { font-size: 8px; padding: 6px 10px; top: 10px; left: 10px; }
  .overview-badge svg { width: 12px; height: 12px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 0; }
  .hero-stat-num { font-size: 24px; }
  .hero-slider { aspect-ratio: 16 / 9; }

  .pricing-card { margin: 0; }
  .pricing-body { padding: 24px 20px; }
  .pricing-num { font-size: 36px; }
  .pricing-img { height: 160px; }

  .whatsapp-float { bottom: 16px; right: 16px; width: 46px; height: 46px; }
  .whatsapp-float svg { width: 22px; height: 22px; }

  .popup-box { padding: 28px 20px; }
  .cta-banner { padding: 64px 20px; }
  .spec-card { padding: 24px 20px; }

  .faq-q { padding: 16px 20px; font-size: 13px; }
  .faq-a.open { padding: 0 20px 16px; }

  .showcase-slider { min-height: 260px; }

  .footer-top { flex-direction: column; text-align: center; }
  .footer-rera-info { text-align: center; }
  .contact-actions { flex-direction: column; }
  .contact-form { padding: 24px 20px; }
  .contact-form .panel-kicker { font-size: 18px; }
  .form-group input, .form-group select { padding: 10px 12px; font-size: 13px; }
  .section-title { font-size: clamp(26px, 7vw, 32px); }
}

@media (max-width: 400px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .hero-title { font-size: clamp(32px, 10vw, 38px); }
}
