﻿:root {
  --charcoal: #1A1B1E;
  --charcoal-mid: #334155;
  --charcoal-light: #64748b;
  --cream: #FDFBF7;
  --warm-white: #ffffff;
  --bg-base: #FDFBF7;
  --bg-alt: #F4F1EA;
  --gold: #A37B34;
  --gold-light: #CFA451;
  --gold-pale: #fef3c7;
  --dsr-red: #dc2626;
  --muted: #646873;
  --border-light: rgba(26, 27, 30, 0.08);
  --border-dark: rgba(26, 27, 30, 0.04);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-blur: blur(20px);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none !important;
  background-image: none; /* Enforce zero gradients */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--charcoal);
  margin-bottom: 16px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

section {
  padding: 96px 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

section#hero {
  opacity: 1;
  transform: none; /* Hero always visible */
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 8px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.btn-primary, .btn-outline, .btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 0.5px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--charcoal);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* HEADER */
#site-header {
  height: auto;
  position: fixed;
  width: 100%;
  top: 20px;
  left: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

#site-header.scrolled {
  top: 10px;
}

#site-header.scrolled nav {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

#site-header nav {
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(163, 123, 52, 0.15);
  border-radius: 100px;
  padding: 12px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.logo-dsr {
  color: var(--dsr-red);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.18em;
}

.logo-sep {
  width: 0.5px;
  height: 20px;
  background: var(--border-dark);
}

.logo-project {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

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

.nav-cta {
  border: 0.5px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* Global scroll offset - accounts for fixed floating nav */
section {
  scroll-margin-top: 100px;
}

/* HERO */
#hero {
  height: 100vh;
  background: var(--bg-base);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.hero-bg-slider::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(253, 251, 247, 0.9) 0%, rgba(253, 251, 247, 0.5) 50%, rgba(253, 251, 247, 0.2) 100%);
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s linear;
  transform: scale(1.05);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  padding: 80px 64px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-form-wrapper {
  flex: 0 0 400px;
}

.hero-inner h1 {
  color: var(--charcoal);
  margin-top: 24px;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-inner h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: var(--charcoal-mid);
  max-width: 600px;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
  background: var(--warm-white);
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 32px 64px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--charcoal);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold-light);
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 8px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .section-eyebrow { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.hero-content h1               { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero-content .hero-sub        { animation: fadeUp 0.7s ease both; animation-delay: 0.45s; }
.hero-content .hero-ctas       { animation: fadeUp 0.7s ease both; animation-delay: 0.65s; }
.hero-form-wrapper             { animation: fadeUp 0.7s ease both; animation-delay: 0.85s; }

/* SCROLLING GALLERY */
.scrolling-gallery-section {
  width: 100%;
  overflow: hidden;
  background: var(--bg-alt);
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
}

.scrolling-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
  gap: 24px;
  padding: 0 12px;
  will-change: transform;
}

.scrolling-track:hover {
  animation-play-state: paused;
}

.scrolling-track img {
  height: 300px;
  width: auto;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* SITE PLAN */
#siteplan {
  background: var(--warm-white);
}

.siteplan-container {
  display: flex;
  gap: 64px;
}

.siteplan-map {
  width: 65%;
  border: 0.5px solid var(--border-light);
  background: #F4F0E8;
  position: relative;
}

.siteplan-legend {
  width: 35%;
}

.tower-fp {
  cursor: pointer;
  transition: var(--transition);
}

.tower-fp rect:first-child {
  transition: stroke 0.3s;
}

.tower-fp:hover rect:first-child {
  stroke: var(--warm-white);
}

.legend-group {
  margin-bottom: 32px;
}

.legend-group h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
}

.swatch {
  display: block;
  width: 16px;
  height: 16px;
}

.swatch-line {
  display: block;
  width: 16px;
  height: 0;
}

.legend-note {
  border-left: 0.5px solid var(--gold);
  padding-left: 16px;
  margin-top: 48px;
  font-size: 12px;
}

/* TOWERS */
#towers {
  background: var(--bg-base);
  color: var(--charcoal);
}

#towers h2, #towers h3 {
  color: var(--charcoal);
}

.towers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-top: 48px;
}

.tower-card {
  background: var(--warm-white);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
}

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

.tower-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.tower-type {
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.tower-size {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.tower-footer {
  margin-top: auto;
  font-size: 12px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.tower-card--exclusive {
  border-left: 2px solid var(--dsr-red);
}

.tower-card--exclusive .tower-eyebrow {
  color: var(--dsr-red);
}

.tower-card--gold {
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tower-card--gold p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.price-card {
  border: 0.5px solid var(--border-light);
  padding: 40px;
  background: var(--warm-white);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-cta {
  width: 100%;
  margin-top: auto;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 24px;
}

.price-card--featured {
  border-color: var(--gold);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--warm-white);
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 12px;
  letter-spacing: 0.1em;
}

.price-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-size {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.price-size span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.price-details {
  list-style: none;
  margin-bottom: 32px;
  border-top: 0.5px solid var(--border-light);
  padding-top: 24px;
}

.price-details li {
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.price-details span {
  color: var(--charcoal);
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 8px;
}

.price-note {
  font-size: 11px;
  color: var(--muted);
}

.charges-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  border: 0.5px solid var(--border-light);
  padding: 24px 32px;
  background: var(--warm-white);
  margin-bottom: 32px;
}

.charges-strip p {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

.rera-link {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--gold);
  margin-top: 16px;
}

/* FLOORPLANS */
#floorplans {
  background: var(--warm-white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.fp-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 0.5px solid var(--border-light);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.fp-tab {
  padding: 16px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.fp-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.fp-panel.hidden {
  display: none;
}

/* Two-column layout */
.fp-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left: image */
.fp-image-col {
  border: 0.5px solid var(--border-light);
  background: var(--cream);
  overflow: hidden;
}

.fp-image-col img {
  width: 100%;
  height: auto;
  display: block;
}

/* Right: description */
.fp-desc-col {
  padding: 8px 0;
}

.fp-tower-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.fp-label-exclusive { color: var(--dsr-red); }
.fp-label-studio    { color: #5A94B8; }

.fp-desc-col h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.fp-desc-intro {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  border-left: 2px solid var(--border-light);
  padding-left: 16px;
}

/* Unit rows */
.fp-unit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  border-top: 0.5px solid var(--border-light);
  padding-top: 24px;
}

.fp-unit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fp-unit-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fp-badge-3bhk { background: var(--charcoal); color: var(--warm-white); }
.fp-badge-4bhk { background: var(--dsr-red);  color: var(--warm-white); }
.fp-badge-1bhk { background: #5A94B8;          color: var(--warm-white); }

.fp-unit-size {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 4px;
}

.fp-unit-size small {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.fp-unit-carpet,
.fp-unit-facing {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Highlights stats row */
.fp-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid var(--border-light);
  margin-bottom: 8px;
}

.fp-highlight-item {
  padding: 16px 12px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 0.5px solid var(--border-light);
}

.fp-highlight-item:last-child { border-right: none; }

.fp-highlight-item span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.fp-enquire-btn {
  display: inline-flex;
  margin-top: 28px;
  font-size: 11px;
  padding: 12px 24px;
}

.fp-enquire-exclusive { border-color: var(--dsr-red); color: var(--dsr-red); }
.fp-enquire-exclusive:hover { background: var(--dsr-red); color: var(--warm-white); }
.fp-enquire-studio { border-color: #5A94B8; color: #5A94B8; }
.fp-enquire-studio:hover { background: #5A94B8; color: var(--warm-white); }

/* Old SVG container kept for backwards compat */
.fp-svg-container {
  border: 0.5px solid var(--border-light);
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}

.fp-svg-container img,
.fp-image-col img {
  max-width: 100%;
}

.fp-unit { cursor: pointer; transition: opacity 0.3s; }
.fp-unit:hover { opacity: 0.8; }

/* Mobile responsive */
@media (max-width: 1024px) {
  .fp-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fp-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-highlight-item:nth-child(2) { border-right: none; }
  .fp-highlight-item:nth-child(1),
  .fp-highlight-item:nth-child(2) { border-bottom: 0.5px solid var(--border-light); }
}

@media (max-width: 480px) {
  .fp-tabs { gap: 16px; }
  .fp-tab  { font-size: 11px; padding: 12px 0; }
}


/* AMENITIES */
#amenities {
  background: var(--cream);
}

.amenities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.amenities-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.8;
  color: var(--gold-pale);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--border-light);
  border-left: 0.5px solid var(--border-light);
}

.amenity-tile {
  padding: 32px 24px;
  border-right: 0.5px solid var(--border-light);
  border-bottom: 0.5px solid var(--border-light);
  transition: 0.2s;
  background: var(--warm-white);
}

.amenity-tile:hover {
  background: var(--cream);
  border-color: var(--gold);
}

.amenity-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin-bottom: 24px;
}

.amenity-tile h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.amenity-tile p {
  font-size: 12px;
  line-height: 1.5;
}

.amenities-footer {
  text-align: center;
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* LOCATION */
#location {
  background: var(--bg-base);
  color: var(--charcoal);
}

#location h2, #location h3 {
  color: var(--charcoal);
}

.location-container {
  display: flex;
  gap: 64px;
}

.location-map {
  width: 50%;
  border: 1px solid var(--border-light);
}

.location-content {
  width: 50%;
}

.location-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.location-table tr {
  border-bottom: 1px solid var(--border-light);
}

.location-table td {
  padding: 20px 0;
}

.location-landmark {
  font-size: 13px;
  color: var(--muted);
}

.location-distance {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  text-align: right;
}

/* DEVELOPER */
#developer {
  background: var(--warm-white);
}

.dev-container {
  display: flex;
  gap: 64px;
}

.dev-left, .dev-right {
  width: 50%;
}

.dev-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.dev-stat {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.dev-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.dev-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.dev-entities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.dev-entity {
  border: 0.5px solid var(--border-light);
  padding: 16px;
  font-size: 12px;
  text-align: center;
}

.dev-entity.wide {
  grid-column: span 3;
}

.dev-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dev-badge {
  border: 0.5px solid var(--border-light);
  padding: 5px 12px;
  font-size: 10px;
  color: var(--muted);
  border-radius: 100px !important; /* Exception for pill shape */
}

/* FAQ */
#faq {
  background: var(--cream);
}

.faq-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.faq-form-wrapper {
  flex: 0 0 400px;
  position: sticky;
  top: 100px;
}

.faq-container {
  flex: 1;
}

.faq-list {
  margin-top: 48px;
}

/* LEAD FORM STYLING */
.lead-form {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08) !important;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form h3 {
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  margin-bottom: 4px;
}

.lead-form p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.lead-form input {
  width: 100%;
  padding: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  color: var(--charcoal);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form input::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.lead-form button {
  margin-top: 8px;
  width: 100%;
}

.lead-form--light {
  background: var(--warm-white);
  border-color: var(--border-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lead-form--light h3 {
  color: var(--charcoal);
}

.lead-form--light p {
  color: var(--muted);
}

.lead-form--light input {
  background: var(--cream);
  border-color: var(--border-light);
  color: var(--charcoal);
}

.lead-form--light input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.faq-item {
  border-bottom: 0.5px solid var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--charcoal);
}

.faq-chevron {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: var(--gold);
}

.faq-answer {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer[hidden] {
  display: none;
}

/* CONTACT CTA */
#contact {
  background: var(--gold);
  padding: 80px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#contact h2 {
  color: var(--charcoal);
  margin-bottom: 8px;
}

#contact h2 em {
  font-style: italic;
}

.contact-sub {
  color: rgba(28, 26, 23, 0.6);
  font-size: 15px;
}

.contact-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.contact-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--charcoal);
}

.contact-email {
  font-size: 13px;
  color: rgba(28, 26, 23, 0.55);
}

/* FOOTER */
footer {
  background: var(--bg-alt);
  color: var(--charcoal);
  padding: 60px 64px 30px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo .logo-project {
  font-size: 16px;
}

footer address {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 13px;
}

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

.rera-footer {
  margin-top: 24px;
  font-size: 11px;
  color: var(--gold);
}

.footer-nav a {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

/* TOOLTIP */
.global-tooltip {
  position: absolute;
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 9999;
  border: 0.5px solid var(--gold);
}

.global-tooltip.active {
  opacity: 1;
}

.global-tooltip strong {
  color: var(--gold);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

/* RESPONSIVE */
/* 13.3" laptop / small desktop (1280–1366px) */
@media (max-width: 1366px) {
  section { padding: 72px 48px; }
  .hero-inner { padding: 64px 48px; }
  h1 { font-size: clamp(48px, 6vw, 80px); }
  h2 { font-size: clamp(32px, 4vw, 52px); }
  .fp-layout { gap: 32px; }
  .location-container, .dev-container, .faq-layout { gap: 48px; }
  #contact { padding: 64px 48px; }
  footer { padding: 48px 48px 24px; }
}
@media (max-width: 1024px) {
  section { padding: 72px 48px; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 48px; }
  .hero-form-wrapper { flex: none; width: 100%; }
  .faq-layout { flex-direction: column; gap: 48px; }
  .faq-form-wrapper { flex: none; width: 100%; position: relative; top: 0; }
  .siteplan-container { flex-direction: column; }
  .siteplan-map, .siteplan-legend { width: 100%; }
  .dev-container { flex-direction: column; }
  .dev-left, .dev-right { width: 100%; }
  .location-container { flex-direction: column; }
  .location-map, .location-content { width: 100%; }
}

@media (max-width: 768px) {
  #site-header {
    padding: 0 12px;
    top: 8px;
  }
  #site-header nav {
    padding: 10px 16px;
    height: 52px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  #site-header nav .nav-links { display: none; }
  /* Show phone as icon button, hide text */
  #site-header nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .nav-hamburger { display: flex; }
  #site-header.nav-open nav { 
    background: var(--bg-base);
    border-radius: 20px 20px 0 0;
    overflow: visible;
    height: auto;
  }
  #site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-base);
    padding: 16px 24px 24px;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(163,123,52,0.15);
    border-top: none;
    gap: 16px;
    z-index: 999;
  }
  .towers-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .charges-strip { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); border-left: none; border-top: none; }
  .amenity-tile { border-left: 0.5px solid var(--border-light); border-top: 0.5px solid var(--border-light); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  /* Section scroll offset for mobile nav height */
  section {
    scroll-margin-top: 80px;
  }

  #hero { height: auto; min-height: 100dvh; min-height: 100vh; }
  .hero-inner { padding: 96px 24px 48px; }
  section { padding: 64px 24px; }
  #contact { flex-direction: column; align-items: flex-start; gap: 32px; }
  .contact-right { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 0.5px solid var(--border-dark); }
  .stat-item:nth-child(even) { border-right: none; }
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
}

/* PRINT */
@media print {
  #site-header, #hero, #amenities, #contact, footer, .skip-link { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  * { color: #000 !important; background: transparent !important; }
  #pricing { page-break-before: always; }
}
/* WHATSAPP */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1000;
  transition: transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}

/* DESIGN & NEIGHBORHOOD */
.design-grid, .neighborhood-grid {
  margin-top: 48px;
}

.design-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}

.design-content ul li strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.neigh-card {
  transition: all 0.3s ease;
}

.neigh-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

@media (max-width: 1024px) {
  .design-grid, .neighborhood-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .design-image img {
    height: 300px !important;
  }
}

/* FORM UPDATES */
.phone-group {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border-light);
  background: var(--bg-alt);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 16px;
  height: 52px;
}

.country-code {
  width: 85px;
  min-width: 85px;
  padding: 0 8px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.phone-group input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}

.hide-desktop { display: none !important; }

@media (max-width: 1024px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: flex !important; }
  .hero-ctas.hide-desktop {
    order: 3;
    padding-bottom: 48px;
    background: var(--bg-base);
  }
}



/* ============================================
   ENQUIRY MODAL
   ============================================ */
#enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#enquiry-modal[hidden] {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 27, 30, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-box {
  position: relative;
  background: var(--warm-white);
  border: 0.5px solid var(--border-light);
  padding: 48px 40px 36px;
  width: 100%;
  max-width: 460px;
  z-index: 1;
  animation: modalIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--muted);
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--charcoal); }

.modal-box h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.modal-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-rera {
  font-size: 10px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
  opacity: 0.6;
}

.lead-form--modal input,
.lead-form--modal select,
.lead-form--modal button {
  margin-bottom: 12px;
}


