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

:root {
  --gold: #C6A355;
  --gold-light: #DBBF72;
  --gold-dark: #A8872D;
  --charcoal: #1A1A1A;
  --charcoal-light: #2A2A2A;
  --ivory: #F5F0E8;
  --ivory-dark: #E8E0D0;
  --cream: #FAF7F0;
  --text-dark: #1A1A1A;
  --text-muted: #6B6358;
  --text-light: #9A9088;
  --forest: #2D4A3E;
  --sage: #8FA888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════ UTILITY ═══════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(198, 163, 85, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img { height: 44px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important;
  padding: 10px 24px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  cursor: pointer;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav overlay */
@media (max-width: 768px) {
  .nav-links.show {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
  }
  .nav-links.show a {
    font-size: 18px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.85);
  }
  .nav-links.show a:hover { color: var(--gold-light); }
  .nav-links.show .nav-cta {
    padding: 14px 36px !important;
    font-size: 14px !important;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero-slide.active img { transform: scale(1); }

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(198, 163, 85, 0.12);
  border: 1px solid rgba(198, 163, 85, 0.3);
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
  animation: fadeUp 1s 0.2s both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-badge span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  animation: fadeUp 1s 0.4s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  animation: fadeUp 1s 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 44px;
  animation: fadeUp 1s 0.8s both;
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  animation: fadeUp 1s 1s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(198,163,85,0.3); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.4s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

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

/* ═══════════ HIGHLIGHTS BAR ═══════════ */
.highlights-bar {
  background: var(--charcoal);
  padding: 0;
  position: relative;
  z-index: 10;
}
.highlights-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.highlight-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(198,163,85,0.05); }
.highlight-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  filter: grayscale(0.3);
}
.highlight-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-light);
}
.highlight-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ═══════════ ABOUT ═══════════ */
.about {
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
.about-rera {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-rera-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}
.about-rera span {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.about-rera strong { color: var(--gold-light); font-weight: 500; }

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--ivory);
  transition: all 0.3s;
}
.about-feature:hover { background: var(--ivory-dark); }
.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 16px;
}
.about-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.about-feature p {
  font-size: 12px !important;
  color: var(--text-light) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ═══════════ PRICE TABLE ═══════════ */
.pricing {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing .section-title { color: #fff; }
.pricing .section-subtitle { color: rgba(255,255,255,0.5); }

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.price-card {
  background: var(--charcoal-light);
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: all 0.5s;
  border: 1px solid transparent;
}
.price-card:hover {
  border-color: rgba(198,163,85,0.3);
  transform: translateY(-4px);
  z-index: 2;
}
.price-card.featured {
  border-color: var(--gold);
  background: rgba(198,163,85,0.05);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 5px 16px;
}

.price-type {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
.price-config {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.price-area {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 200;
  color: var(--gold-light);
  line-height: 1;
}
.price-area-unit {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  display: block;
  margin-top: 4px;
}
.price-divider {
  width: 40px;
  height: 1px;
  background: rgba(198,163,85,0.3);
  margin: 24px auto;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}
.price-onwards {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.price-features {
  list-style: none;
  margin-top: 28px;
  text-align: left;
}
.price-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
}

.price-card-cta {
  display: block;
  margin-top: 28px;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(198,163,85,0.3);
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.price-card-cta:hover { background: var(--gold); color: var(--charcoal); }

/* ═══════════ FLOOR PLANS ═══════════ */
.floor-plans { background: var(--cream); }

.fp-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  margin-top: 48px;
  background: var(--ivory);
  padding: 4px;
  width: fit-content;
}
.fp-tab {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}
.fp-tab.active {
  background: var(--charcoal);
  color: var(--gold-light);
}

.fp-content {
  display: none;
}
.fp-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.fp-image {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--ivory-dark);
  position: relative;
}
.fp-image img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s;
}
.fp-image:hover img { transform: scale(1.02); }
.fp-image-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--charcoal);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}

.fp-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}
.fp-details .fp-size {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.fp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fp-spec {
  padding: 20px;
  background: var(--ivory);
}
.fp-spec-val {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.fp-spec-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ═══════════ GALLERY ═══════════ */
.gallery {
  background: var(--ivory);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 8px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

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

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.amenity-card {
  padding: 40px 28px;
  background: #fff;
  border: 1px solid var(--ivory-dark);
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.amenity-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.amenity-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.amenity-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════ LOCATION ═══════════ */
.location { background: var(--charcoal); }
.location .section-title { color: #fff; }
.location .section-subtitle { color: rgba(255,255,255,0.5); }

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

.location-map {
  border: 1px solid rgba(198,163,85,0.2);
  overflow: hidden;
}
.location-map img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.location-advantages { }
.loc-adv-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.loc-adv-dist {
  min-width: 64px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  font-weight: 500;
}
.loc-adv-dist small {
  font-size: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}
.loc-adv-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.loc-adv-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ═══════════ MASTER PLAN ═══════════ */
.masterplan { background: var(--ivory); }
.masterplan-wrap {
  margin-top: 48px;
  position: relative;
}
.masterplan-wrap img {
  width: 100%;
  height: auto;
  border: 1px solid var(--ivory-dark);
}
.masterplan-stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--ivory-dark);
}
.masterplan-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--charcoal);
}
.masterplan-stat-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ═══════════ CTA SECTION ═══════════ */
.cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A241A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(198,163,85,0.08) 0%, transparent 60%);
}
.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }
.cta-section .section-title {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 16px;
}
.cta-section .section-subtitle {
  margin: 0 auto 40px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-form input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus { border-color: var(--gold); }

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
}
.cta-whatsapp:hover { background: #20BA5B; transform: translateY(-2px); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #111;
  padding: 56px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { height: 40px; }
.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
}
.footer-contact a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  max-width: 800px;
}
.footer-rera {
  font-size: 12px;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

/* ═══════════ FLOATING MOBILE BUTTONS ═══════════ */
.floating-btns {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: row;
}
.floating-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
}
.floating-btn-call {
  background: var(--charcoal);
}
.floating-btn-wa {
  background: #25D366;
}
.floating-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ═══════════ CTA FORM FIX ═══════════ */
.cta-form .btn-primary {
  white-space: nowrap;
  min-width: fit-content;
  padding: 16px 32px;
  flex-shrink: 0;
}

/* ═══════════ RESPONSIVE ═══════════ */

/* iPad / Tablet landscape */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .highlights-inner { grid-template-columns: repeat(3, 1fr); }
  .highlight-item:nth-child(n+4) { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px 240px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .fp-tabs { flex-wrap: wrap; }
}

/* iPad portrait */
@media (max-width: 834px) {
  .price-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .price-card { padding: 32px 20px; }
  .price-type { font-size: 22px; }
  .price-area { font-size: 28px; }
  .cta-form { flex-direction: column; max-width: 480px; }
  .cta-form .btn-primary { width: 100%; justify-content: center; }
  .hero-stats { gap: 32px; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-value { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .section-pad { padding: 64px 0; }
  .section-title { font-size: clamp(26px, 6vw, 36px); }
  .highlights-inner { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(n+5) { display: none; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card.featured::before { font-size: 8px; padding: 4px 12px; }
  .fp-content.active { grid-template-columns: 1fr; gap: 28px; }
  .fp-tabs { flex-wrap: wrap; width: 100%; }
  .fp-tab { flex: 1; min-width: 140px; text-align: center; font-size: 11px; padding: 10px 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5, 180px); gap: 6px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .amenity-card { padding: 28px 16px; }
  .about-features { grid-template-columns: 1fr; }
  .location-grid { gap: 32px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-form { flex-direction: column; max-width: 100%; }
  .cta-form .btn-primary { width: 100%; justify-content: center; }
  .masterplan-stats { flex-wrap: wrap; gap: 20px; }
  .masterplan-stat-val { font-size: 26px; }

  /* Floating buttons */
  .floating-btns { display: flex; }
  body { padding-bottom: 56px; }
  .footer { padding-bottom: 72px; }
  .hero-scroll { display: none; }
  .seo-text { columns: 1 !important; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 34px; }
  .hero-tagline { font-size: 16px; }
  .hero-badge span { font-size: 9px; letter-spacing: 2px; }
  .hero-stats { gap: 16px; }
  .hero-stat-value { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }
  .highlights-inner { grid-template-columns: 1fr 1fr; }
  .highlight-item { padding: 24px 12px; }
  .highlight-val { font-size: 18px; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 16px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item, .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; height: 200px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .amenity-card { padding: 20px 12px; }
  .amenity-icon { font-size: 28px; }
  .amenity-card h4 { font-size: 13px; }
  .amenity-card p { font-size: 11px; }
  .price-card { padding: 28px 16px; }
  .fp-tab { min-width: 100%; }
  .about-image-wrap img { height: 300px; }
  .about-image-accent { display: none; }
  .loc-adv-item { gap: 14px; }
  .loc-adv-dist { min-width: 48px; font-size: 18px; }
}

/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ SUB-PAGE STYLES ═══════════ */
.subpage-hero {
  background: var(--charcoal);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}
.subpage-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.subpage-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}
.subpage-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--ivory); }
.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.content-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.content-section p, .content-section li {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.content-section ul { padding-left: 20px; }
.content-section a { color: var(--gold-dark); text-decoration: none; }
.content-section a:hover { text-decoration: underline; }
.content-section strong { color: var(--charcoal); }

.seo-internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--ivory-dark);
}
.seo-internal-links a {
  font-size: 13px;
  color: var(--charcoal);
  padding: 6px 18px;
  border: 1px solid var(--ivory-dark);
  text-decoration: none;
  transition: all 0.3s;
}
.seo-internal-links a:hover { border-color: var(--gold); color: var(--gold-dark); }

.faq-item {
  border-bottom: 1px solid var(--ivory-dark);
  padding: 24px 0;
}
.faq-q {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--gold); transition: 0.3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 16px; }

@media (max-width: 768px) {
  .subpage-hero { padding: 120px 0 60px; }
  .seo-internal-links { gap: 8px; }
}

/* ═══════════ DESKTOP FLOATING WHATSAPP ═══════════ */
.floating-wa-desktop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.floating-wa-desktop:hover { transform: translateY(-3px); }

.floating-wa-desktop a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px 14px 22px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s;
}
.floating-wa-desktop a:hover {
  background: #20BA5B;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.floating-wa-desktop svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* Pulse animation ring */
.floating-wa-desktop::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 54px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.5s infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Hide on mobile (mobile has the bottom bar instead) */
@media (max-width: 768px) {
  .floating-wa-desktop { display: none; }
}
