/* ===========================
   ROOT & VARIABLES
   =========================== */
:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-pale: #f5ede3;
  --navy: #1a2e44;
  --navy-light: #2d4a6a;
  --cream: #faf8f5;
  --cream-dark: #f2ede6;
  --white: #ffffff;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-light: #888;
  --border: rgba(184, 149, 106, 0.2);
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', serif;
  --font-title: 'Cinzel', serif;
  --font-body: 'DM Sans', sans-serif;
  --navbar-height: 100px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 100px 0; }

/* ===========================
   PRELOADER
   =========================== */
.preloader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
  animation: expandLine 1.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulse { 0%,100%{opacity:0.4;transform:scale(0.95)} 50%{opacity:1;transform:scale(1)} }
@keyframes expandLine { 0%,100%{transform:scaleX(0.3)} 50%{transform:scaleX(1)} }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(15, 29, 44, 0.85) 0%, rgba(15, 29, 44, 0.4) 70%, transparent 100%);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.navbar.scrolled::before {
  opacity: 1;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem;
}
.nav-left, .nav-right {
  display: flex; align-items: center; gap: clamp(0.8rem, 1.1vw, 1.4rem);
  flex: 1;
  min-width: 0;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: clamp(0.78rem, 0.85vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  font-size: clamp(0.78rem, 0.85vw, 0.92rem);
  padding: 10px 22px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta:hover { background: var(--navy) !important; transform: translateY(-1px); }
.nav-cta::after { display: none; }
.nav-brand {
  flex-shrink: 0;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 1.85vw, 1.7rem);
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.3s ease;
}
.navbar.scrolled .nav-brand { color: var(--navy); }
.nav-brand .brand-letter { color: var(--gold); }
.nav-brand .brand-text {
  letter-spacing: 0;
  margin-left: -1px;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(380px, 90vw); height: 100vh;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-inner {
  padding: 100px 2.5rem 3rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.mobile-link {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-cta { margin-top: 1rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,149,106,0.3); }
.btn-primary.full-width { width: 100%; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--white); }

/* ===========================
   SECTION COMMON
   =========================== */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px; height: 1px; background: var(--gold);
  display: inline-block;
}
.center .section-tag { justify-content: center; }
.center .section-tag::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-header.center { text-align: center; margin-bottom: 60px; }

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.in { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-delay-1.in { transition-delay: 0.1s; }
.reveal-delay-2.in { transition-delay: 0.2s; }
.reveal-delay-3.in { transition-delay: 0.35s; }
.reveal-delay-4.in { transition-delay: 0.5s; }
.reveal-delay-5.in { transition-delay: 0.65s; }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-start;
  overflow: hidden;
  padding-bottom: 24px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 17, 30, 0.82) 0%,
    rgba(10, 24, 40, 0.58) 58%,
    rgba(16, 34, 56, 0.42) 100%
  );
}
.hero-inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: calc(var(--navbar-height) + 32px) 2rem 0;
  width: 100%;
}
.hero-content {
  min-width: 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6.5vw, 5.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-title em { font-style: italic; color: #f0d2ae; display: block; margin-bottom: -4px; }
.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.badge {
  display: inline-block;
  background: rgba(10, 20, 32, 0.52);
  border: 1px solid rgba(240, 210, 174, 0.55);
  color: #fff;
  padding: 5px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-price { margin-bottom: 18px; }
.price-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  margin-bottom: 6px;
}
.price-value {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}
.price-value sup { font-size: 0.5em; vertical-align: super; }
.hero-actions {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  position: relative;
  z-index: 4;
}
.hero-actions .btn-primary {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  padding: 12px 28px;
  font-size: 0.78rem;
}
.hero-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 12px 0;
}
.rera-note {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
}
.hero-form-wrap {
  flex-shrink: 0;
}
.hero-form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}
.hero-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-form-card > p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 22px;
}
.hero-form-card .field-group { margin-bottom: 18px; }
.hero-form-card .field-group input { padding: 14px 16px; font-size: 0.9rem; }
.hero-form-card .checkbox-label { margin-bottom: 18px; }
.hero-form-card .checkbox-label span { font-size: 0.76rem; }
.hero-form-card .btn-primary { padding: 14px; font-size: 0.8rem; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.5)} 50%{opacity:1;transform:scaleY(1)} }

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
  background: var(--navy);
  padding: 40px 0;
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 48px;
  text-align: center;
  flex: 1; min-width: 140px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ===========================
   OVERVIEW SECTION
   =========================== */
.overview { background: var(--white); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.img-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-frame img { width: 100%; height: 520px; object-fit: cover; transition: transform 0.8s ease; }
.img-frame:hover img { transform: scale(1.04); }
.img-accent {
  position: absolute; top: -15px; left: -15px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
  pointer-events: none;
}
.overview-content { padding-left: 20px; }
.overview-text {
  color: var(--text-mid);
  font-size: 1rem; line-height: 1.85;
  margin-bottom: 1.2rem;
}
.overview-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0;
}
.feature-pill {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 6px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-radius: 100px;
  background: var(--cream);
  transition: background 0.3s, border-color 0.3s;
}
.feature-pill:hover { background: var(--gold-pale); border-color: var(--gold); }

/* ===========================
   HIGHLIGHTS SECTION
   =========================== */
.highlights {
  background: var(--cream);
  position: relative; overflow: hidden;
}
.highlights-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-title);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 400;
  color: rgba(184,149,106,0.04);
  letter-spacing: 0.3em;
  white-space: nowrap;
  pointer-events: none; user-select: none;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  transition-delay: calc(var(--i, 0) * 0.07s);
  cursor: default;
}
.highlight-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-num {
  font-family: var(--font-title);
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 16px;
}
.highlight-icon { font-size: 1.6rem; margin-bottom: 16px; color: var(--gold); }
.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500;
  color: var(--navy); margin-bottom: 10px;
}
.highlight-card p { font-size: 0.85rem; line-height: 1.7; color: var(--text-mid); }

/* ===========================
   FLOOR PLANS SECTION
   =========================== */
.floor-plans { background: var(--white); }
.plan-tabs {
  display: flex; justify-content: center;
  gap: 0; margin-bottom: 48px;
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; width: fit-content; margin-left: auto; margin-right: auto;
}
.plan-tab {
  padding: 12px 28px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid);
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: background 0.3s ease, color 0.3s ease;
}
.plan-tab:last-child { border-right: none; }
.plan-tab.active { background: var(--gold); color: var(--white); }
.plan-tab:hover:not(.active) { background: var(--cream); }

.plan-pane { display: none; }
.plan-pane.active { display: block; animation: fadeUp 0.5s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

.plan-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 60px; align-items: center;
}
.plan-blur-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.plan-img {
  width: 100%; display: block;
  filter: blur(8px); transform: scale(1.04);
  transition: filter 0.4s;
}
.plan-blur-wrap:hover .plan-img { filter: blur(10px); }
.plan-blur-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  background: rgba(26,46,68,0.3);
  color: var(--white);
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.3s;
}
.plan-blur-wrap:hover .plan-blur-overlay { background: rgba(26,46,68,0.5); }

.plan-name {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--navy); margin-bottom: 28px;
}
.plan-details {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.price-from {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light);
  display: block; margin-bottom: 8px;
}
.price-big {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  color: var(--gold); margin-bottom: 32px; line-height: 1;
}
.price-big sup { font-size: 0.4em; vertical-align: super; }
.plan-specs { margin-bottom: 36px; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.spec-label { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--text-light); text-transform: uppercase; }
.spec-value { font-size: 0.9rem; font-weight: 500; color: var(--navy); text-align: right; }

/* ===========================
   AMENITIES SECTION
   =========================== */
.amenities { background: var(--cream); overflow: hidden; }

.amenities-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 48px;
}
.amenity-pill {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.amenity-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.amenities-track-wrapper {
  overflow: hidden;
  margin: 0 -2rem;
  position: relative;
}
.amenities-track-wrapper::before,
.amenities-track-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.amenities-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.amenities-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.amenities-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 20px 40px;
  will-change: transform;
}
.amenity-card { width: 260px; flex-shrink: 0; }
.amenity-img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.amenity-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.amenity-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,46,68,0.5));
  transition: opacity 0.3s;
}
.amenity-card:hover .amenity-img-wrap img { transform: scale(1.08); }
.amenity-label {
  text-align: center; margin-top: 12px;
  font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-mid);
  font-weight: 500;
}

/* ===========================
   LOCATION SECTION
   =========================== */
.location { background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.location-points { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.location-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.location-point:hover { transform: translateX(4px); border-color: var(--gold-light); }
.point-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.location-point span { font-size: 0.9rem; line-height: 1.6; color: var(--text-mid); }
.location-map { margin-top: 0; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden; height: 480px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery { background: var(--cream); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(26,46,68,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  color: var(--white); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 20px;
}

/* ===========================
   CONTACT / DEVELOPER SECTION
   =========================== */
.contact { background: var(--navy); }
.contact .section-tag { color: var(--gold-light); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.developer-text { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1rem; }
.developer-stats {
  display: flex; gap: 40px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.dev-stat { display: flex; flex-direction: column; }
.dev-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.dev-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--navy); margin-bottom: 8px;
}
.contact-form-card > p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px; }

.field-group { position: relative; margin-bottom: 24px; }
.field-group input {
  width: 100%; padding: 16px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 8px; font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.field-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,106,0.1); }
.field-group label {
  position: absolute; left: 16px; top: 16px;
  font-size: 0.85rem; color: var(--text-light);
  pointer-events: none;
  transition: all 0.2s ease;
  background: var(--cream);
  padding: 0 4px;
}
.field-group input:not(:placeholder-shown) + label,
.field-group input:focus + label {
  top: -8px; font-size: 0.72rem;
  color: var(--gold); letter-spacing: 0.08em;
}
.checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; margin-bottom: 24px;
}
.checkbox-label input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.checkbox-label span { font-size: 0.78rem; line-height: 1.6; color: var(--text-mid); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: #0f1d2c; padding: 60px 0 40px; }
.footer-top {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  text-align: center; margin-bottom: 40px;
}
.footer .brand-letter { color: var(--gold); font-family: var(--font-title); font-size: 2rem; }
.footer .brand-text { color: rgba(255,255,255,0.8); font-family: var(--font-title); font-size: 1.8rem; letter-spacing: 0.1em; }
.footer-brand { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 12px; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-divider { max-width: 1200px; margin: 0 auto; height: 1px; background: rgba(255,255,255,0.06); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 32px 2rem 0;
  text-align: center;
}
.footer-rera {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.footer-disclaimer {
  font-size: 0.75rem; line-height: 1.8;
  color: rgba(255,255,255,0.3); max-width: 800px;
  margin: 0 auto 20px; text-align: center;
}
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ===========================
   FLOATING CTAs
   =========================== */
.floating-ctas {
  position: fixed; bottom: 32px; right: 32px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 900;
}
.float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.float-btn.whatsapp { background: #25D366; color: white; }
.float-btn.call { background: var(--navy); color: white; }
.float-btn.enquire { background: var(--gold); color: white; }

/* ===========================
   MODAL
   =========================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(26,46,68,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  width: 100%; max-width: 460px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh; overflow-y: auto;
}
.modal-backdrop.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream); color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--gold-pale); color: var(--gold); }
.modal-header { margin-bottom: 32px; }
.modal-tag {
  display: block; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--navy); margin-bottom: 8px;
}
.modal-header h3 em { font-style: italic; color: var(--gold); }
.modal-header p { font-size: 0.85rem; color: var(--text-light); }

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy); color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { color: #4ade80; flex-shrink: 0; }

body.modal-open,
body.menu-open {
  overflow: hidden;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1280px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .overview-image { display: none; }
  .overview-content { padding-left: 0; }
  .plan-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map { margin-top: 0; }
  .amenity-card { width: 240px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { order: 2; }
  .hero-content { order: 1; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .highlight-card { padding: 24px 16px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .stats-strip { padding: 24px 0; }
  .stat-item { padding: 12px 20px; }
  .stat-number { font-size: 2rem; }
  .stat-divider { height: 30px; }
  .plan-tabs { width: 100%; }
  .plan-tab { flex: 1; padding: 10px 12px; font-size: 0.7rem; }
  .plan-details { padding: 20px 16px; }
  .spec-value { text-align: left; }
  .hero { min-height: 100svh; padding-bottom: 16px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: calc(var(--navbar-height) + 20px) 1.5rem 0;
  }
  .hero-form-wrap { order: 2; }
  .hero-content { order: 1; }
  .hero-title { font-size: clamp(2.5rem, 8.5vw, 4rem); margin-bottom: 8px; }
  .hero-subtitle { font-size: 0.82rem; margin-bottom: 12px; }
  .hero-eyebrow { font-size: 0.65rem; margin-bottom: 10px; }
  .hero-badges { margin-bottom: 12px; gap: 6px; }
  .badge { font-size: 0.68rem; padding: 5px 12px; }
  .hero-price { margin-bottom: 12px; }
  .price-value { font-size: clamp(1.9rem, 6.5vw, 2.8rem); }
  .hero-actions { gap: 14px; margin-bottom: 10px; }
  .hero-form-card { padding: 24px 20px; }
  .floating-ctas { bottom: 16px; right: 16px; gap: 8px; }
  .float-btn span { display: none; }
  .float-btn { padding: 12px; width: 48px; height: 48px; justify-content: center; }
  .modal-box { padding: 36px 24px; }
  .contact-form-card { padding: 32px 24px; }
  .hero-scroll-hint { display: none; }
  .developer-stats { gap: 24px; }
  .amenities-track { padding: 10px 20px; }
  .amenity-card { width: 210px; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .hero-inner { padding: calc(var(--navbar-height) + 16px) 1rem 0; gap: 1.2rem; }
  .hero-form-card { padding: 20px 18px; }
  .hero-form-card h3 { font-size: 1.25rem; }
  .hero-form-card > p { margin-bottom: 16px; font-size: 0.78rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-badges { flex-direction: column; }
  .stats-container { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .amenity-card { width: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}