/* =============================================
   NAMBIAR DISTRICT 25 – PHASE 3 | THE CRÈME COLLECTION
   Shared Stylesheet
   ============================================= */

:root {
  --navy: #0f1b2d;
  --navy-light: #1a2d4a;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-pale: #f5edd8;
  --white: #ffffff;
  --off-white: #f9f6f0;
  --cream: #f9f6f0;
  --gray-light: #f2efe9;
  --gray: #9a9a9a;
  --dark: #1c1c1c;
  --text: #2d2d2d;
  --text-light: #555;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);
  --transition: all 0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Raleway', 'Montserrat', Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,27,45,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  height: 60px;
  background: rgba(15,27,45,1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand-logo {
  height: 38px;
  width: auto;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text .brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-call:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }
.btn-call svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #b8943a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.84rem; }
.btn-full { width: 100%; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.96) 0%, rgba(15,27,45,0.88) 50%, rgba(15,27,45,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5rem 2rem;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.9rem 0.75rem 0.8rem;
  border: 0.5px solid rgba(201,168,76,0.3);
  border-radius: 6px;
}
.hero-stat .value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   LEAD FORM CARD
   ============================================= */
.form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 4px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  border-top: 3px solid var(--gold);
}
.form-card-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.form-card-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.form-group { margin-bottom: 0.7rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-disclaimer {
  font-size: 0.66rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--gold);
}
.stats-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-item .stat-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.section-dark { background: var(--navy); }
.section-navy-light { background: var(--navy-light); }
.section-off-white { background: var(--off-white); }
.section-gold-pale { background: var(--gold-pale); }
.container { max-width: 1320px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
/* Eyebrow label — gold small-caps above section headings */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold); }
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-subtitle.light { color: rgba(249,246,240,0.72); }
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
}

/* =============================================
   CARDS & GRIDS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.usp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.usp-card:hover::before { transform: scaleX(1); }
.usp-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.usp-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.usp-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.usp-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 4px;
  overflow: hidden;
}
.pricing-table thead {
  background: var(--navy);
  color: var(--white);
}
.pricing-table thead th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.pricing-table tbody tr {
  border-bottom: 1px solid #f0ebe0;
  transition: var(--transition);
}
.pricing-table tbody tr:hover { background: var(--gold-pale); }
.pricing-table tbody td {
  padding: 1.1rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text);
}
.pricing-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.pricing-table tbody td.price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

/* Floor Plan Cards */
.floorplan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}
.floorplan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.floorplan-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--gray-light);
  padding: 1rem;
}
.floorplan-info {
  padding: 1.4rem;
  border-top: 2px solid var(--gold);
}
.floorplan-type {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.floorplan-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.floorplan-spec {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--gray-light);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* Amenity List */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.85rem;
  color: var(--text);
  transition: var(--transition);
}
.amenity-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(4px);
}
.amenity-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Video Cards */
.video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.video-label {
  padding: 1rem 1.2rem;
  background: var(--navy-light);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Location Map */
.map-wrapper {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Connectivity Cards */
.connectivity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: var(--transition);
}
.connectivity-card:hover { box-shadow: var(--shadow); }
.connectivity-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.connectivity-card h4 span { color: var(--gold); font-size: 1.2rem; }
.connectivity-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
}
.connectivity-list li:last-child { border-bottom: none; }
.connectivity-list li .distance {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  background: var(--gold-pale);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h3 {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.faq-toggle {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: var(--transition);
}
.faq-answer {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  padding-top: 0.8rem;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--navy);
  padding: 6rem 2rem;
}
.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.85);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-detail-text .label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-detail-text .value {
  font-size: 0.92rem;
  color: var(--white);
  margin-top: 0.1rem;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.contact-form-wrap h3 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.contact-form-wrap p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

/* =============================================
   FLOATING CTAs (Call Only)
   ============================================= */
.floating-ctas {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;           /* sit above sticky bar */
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.fab:hover { transform: scale(1.1); }
.fab-whatsapp { display: none; }        /* WhatsApp removed per design */
.fab-call { background: var(--gold); }
.fab svg { width: 24px; height: 24px; }
.fab-call svg { stroke: var(--navy); }

/* =============================================
   STICKY BOTTOM CTA BAR
   ============================================= */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  display: flex;
  height: 52px;
  box-shadow: 0 -3px 20px rgba(0,0,0,0.22);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.sticky-btn svg { flex-shrink: 0; }
.sticky-call {
  background: var(--navy);
  color: var(--gold);
  border-right: 1px solid rgba(201,168,76,0.25);
}
.sticky-call:hover { background: #162338; color: var(--gold); }
.sticky-visit {
  background: var(--gold);
  color: var(--navy);
}
.sticky-visit:hover { background: #b8943a; color: var(--navy); }
body { padding-bottom: 52px; }          /* prevent content hiding under sticky bar */

/* =============================================
   IMAGE LIGHTBOX
   ============================================= */
#lightboxOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#lightboxOverlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-close {
  position: fixed;
  top: 1.2rem; right: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
  z-index: 10000;
}
.lightbox-close:hover { color: var(--gold); }
.zoomable { cursor: zoom-in !important; }

/* =============================================
   FORM VALIDATION FEEDBACK
   ============================================= */
.form-error {
  color: #c0392b;
  font-size: 0.72rem;
  margin-top: 0.3rem;
  display: none;
  font-family: var(--font-sans);
}
.form-group.error .form-error { display: block; }
.form-group.error input,
.form-group.error select { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }
.phone-hint {
  font-size: 0.68rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* =============================================
   FOOTER – 2 COLUMN LAYOUT
   ============================================= */
/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #070f1a;
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.8fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-links-group {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-content: start;
}
.footer-brand h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.footer-brand .phase-tag {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  white-space: nowrap;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-rera {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}
.footer-rera strong { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */
.page-hero {
  padding: 160px 2rem 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Image Grid */
.image-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
  border-radius: 4px;
  overflow: hidden;
}
.mosaic-img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-img:first-child { grid-row: 1 / 3; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
  font-style: italic;
}
.testimonial-author { font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.testimonial-role { font-size: 0.75rem; color: var(--gold); margin-top: 0.1rem; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.5rem; font-size: 0.85rem; }

/* =============================================
   UTILITY
   ============================================= */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  /* .hero-inner: single column, no override needed */
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links-group { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  /* hero-inner: already block layout */
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .image-mosaic { grid-template-columns: 1fr; grid-template-rows: 240px 200px 200px; }
  .mosaic-img:first-child { grid-row: auto; }
  .hero-bg::after {
    background: rgba(15,27,45,0.93);   /* solid overlay on mobile – kills any bg text */
  }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-group { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { gap: 1rem; }
  .stat-item .stat-value { font-size: 1.4rem; }
  .pricing-table { font-size: 0.82rem; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 0.8rem 0.8rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .sticky-btn { font-size: 0.72rem; gap: 0.3rem; }
  .floating-ctas { bottom: 4.5rem; }
}

/* =============================================
   PAGE HERO – PROPER OVERLAY SYSTEM
   ============================================= */
/* Pages with a background image get a strong overlay */
.page-hero-img {
  background-color: var(--navy);
}
.page-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;    /* picks up the inline background-image */
  background-size: cover;
  background-position: center 30%;
  filter: blur(0px);
  z-index: 0;
  opacity: 0.18;
}
.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(15,27,45,0.96) 0%, rgba(15,27,45,0.90) 100%);
  z-index: 0;
}

/* Floor Plan page hero – purely CSS, no image */
.page-hero-fp {
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2d4a 50%, #0a1520 100%);
  padding: 120px 2rem 60px;
}
.page-hero-fp::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  z-index: 0;
}
.page-hero-fp .page-hero-content { z-index: 1; }
.page-hero-fp h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero-fp p   { font-size: 1.05rem; }
.page-hero-content { position: relative; z-index: 1; }

/* =============================================
   FLOORPLAN TYPE – SANS FONT
   ============================================= */
.floorplan-type {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

/* =============================================
   PRICING TABLE – MOBILE RESPONSIVE
   ============================================= */
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.table-scroll-wrap .pricing-table {
  min-width: 560px;
  box-shadow: none;
}
/* Mobile card layout for pricing */
@media (max-width: 540px) {
  .table-scroll-wrap { overflow-x: auto; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 0.7rem 0.75rem; font-size: 0.8rem; }
  .pricing-table tbody td.price { font-size: 1rem; }
}

/* =============================================
   AMENITIES – MOBILE COMPACT
   ============================================= */
@media (max-width: 600px) {
  .amenity-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .amenity-item {
    padding: 0.6rem 0.7rem;
    font-size: 0.78rem;
    gap: 0.4rem;
  }
  .amenity-item::before { font-size: 0.6rem; }
  /* Collapsible amenity categories on mobile */
  .amenity-category { margin-bottom: 1rem; }
  .amenity-cat-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    color: var(--white);
    padding: 0.85rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    border: none;
    width: 100%;
    text-align: left;
  }
  .amenity-cat-toggle .cat-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s;
    color: var(--gold);
  }
  .amenity-cat-toggle.open .cat-arrow { transform: rotate(180deg); }
  .amenity-cat-body { display: none; }
  .amenity-cat-body.open { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}
@media (min-width: 601px) {
  .amenity-cat-toggle { display: none; }
  .amenity-cat-body { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0.9rem; }
}

/* =============================================
   ALL CONTENT IMAGES – ZOOMABLE CURSOR
   ============================================= */
.zoomable { cursor: zoom-in !important; }

/* =============================================
   VIDEO SECTION ON HOME PAGE
   ============================================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .videos-grid { grid-template-columns: 1fr; }
}

/* =============================================
   NAV – RESPONSIVE HIDE ON VERY SMALL
   ============================================= */
@media (max-width: 480px) {
  .btn-call { font-size: 0.7rem; padding: 0.5rem 0.9rem; }
}

/* =============================================
   HERO – SINGLE COLUMN (form removed)
   ============================================= */
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: block;
}
.hero-text { max-width: 760px; }

/* =============================================
   IMAGE CAROUSEL
   ============================================= */
.img-carousel-section { line-height: 0; overflow: hidden; }
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(260px, 55vw, 640px);
  background: var(--navy);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,27,45,0.65);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: var(--gold); color: var(--navy); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 600px) {
  .carousel-btn { width: 36px; height: 36px; font-size: 1.4rem; }
  .carousel-prev { left: 0.5rem; }
  .carousel-next { right: 0.5rem; }
}

/* =============================================
   LEAD MODAL
   ============================================= */
.lead-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lead-modal.active { display: flex; }
.lead-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,30,0.82);
  backdrop-filter: blur(4px);
}
.lead-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border-top: 3px solid var(--gold);
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--gray);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.lead-modal-close:hover { background: var(--gray-light); color: var(--navy); }
.lead-modal-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.lead-modal-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.lead-modal-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}
.lead-modal-header { margin-bottom: 1.2rem; }
@media (max-width: 500px) {
  .lead-modal-box { padding: 1.5rem 1.2rem 1.2rem; }
  .lead-modal-title { font-size: 1.4rem; }
}

/* =============================================
   PRICING CARDS – CARD-BASED LAYOUT
   ============================================= */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.pricing-cards-dark .pricing-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,76,0.25);
  color: var(--white);
}
.pricing-cards-dark .pc-config { color: var(--white); }
.pricing-cards-dark .pc-row .pc-label { color: rgba(255,255,255,0.5); }
.pricing-cards-dark .pc-row .pc-val { color: rgba(255,255,255,0.9); }
.pricing-cards-dark .pc-tag { color: rgba(255,255,255,0.5); }
.pricing-cards-dark .pc-divider { border-color: rgba(255,255,255,0.12); }

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.pricing-card-featured {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.18);
}
.pricing-card-gold {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--white);
}
.pricing-card-gold .pc-config { color: rgba(255,255,255,0.9); }
.pricing-card-gold .pc-row .pc-label { color: rgba(255,255,255,0.5); }
.pricing-card-gold .pc-row .pc-val { color: rgba(255,255,255,0.9); }
.pricing-card-gold .pc-tag { color: rgba(255,255,255,0.5); }
.pricing-card-gold .pc-divider { border-color: rgba(255,255,255,0.15); }
.pricing-card-gold .pc-btn { background: var(--gold); color: var(--navy); }
.pricing-card-gold .pc-btn:hover { background: var(--gold-light); }

.pc-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-bottom-left-radius: 6px;
}
.pc-type-code {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.pc-config {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.pc-price {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pc-tag {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.pc-divider {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 0.9rem;
}
.pc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.45rem;
}
.pc-label {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.pc-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}
.pc-btn {
  display: block;
  margin-top: auto;
  padding-top: 1.1rem;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-radius: 3px;
  margin-top: 1rem;
  transition: var(--transition);
}
.pc-btn:hover { background: var(--gold); color: var(--navy); }
.pc-btn-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.pc-btn-light:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

@media (max-width: 600px) {
  .pricing-cards { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .pc-price { font-size: 1.45rem; }
  .pc-config { font-size: 0.88rem; }
  .hero-stats { gap: 0.5rem; }
  .hero-stat .value { font-size: 1.45rem; }
  .hero-stat .label { font-size: 0.6rem; }
}
@media (max-width: 360px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   IMAGE CAROUSEL
   ============================================= */
.img-carousel-section { line-height: 0; overflow: hidden; }
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(260px, 55vw, 640px);
  background: var(--navy);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,27,45,0.65);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: var(--gold); color: var(--navy); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 600px) {
  .carousel-btn { width: 36px; height: 36px; font-size: 1.4rem; }
  .carousel-prev { left: 0.5rem; }
  .carousel-next { right: 0.5rem; }
}

/* =============================================
   LEAD MODAL
   ============================================= */
.lead-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lead-modal.active { display: flex; }
.lead-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,30,0.82);
  backdrop-filter: blur(4px);
}
.lead-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border-top: 3px solid var(--gold);
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--gray);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.lead-modal-close:hover { background: var(--gray-light); color: var(--navy); }
.lead-modal-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.lead-modal-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.lead-modal-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}
.lead-modal-header { margin-bottom: 1.2rem; }
@media (max-width: 500px) {
  .lead-modal-box { padding: 1.5rem 1.2rem 1.2rem; }
  .lead-modal-title { font-size: 1.4rem; }
}

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.pricing-cards-dark .pricing-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,76,0.25);
}
.pricing-cards-dark .pc-config { color: var(--white); }
.pricing-cards-dark .pc-row .pc-label { color: rgba(255,255,255,0.5); }
.pricing-cards-dark .pc-row .pc-val   { color: rgba(255,255,255,0.9); }
.pricing-cards-dark .pc-tag           { color: rgba(255,255,255,0.5); }
.pricing-cards-dark .pc-divider       { border-color: rgba(255,255,255,0.12); }
.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.pricing-card-featured { border-color: var(--gold); box-shadow: 0 6px 24px rgba(201,168,76,0.18); }
.pricing-card-gold { background: var(--navy); border-color: var(--gold); }
.pricing-card-gold .pc-config { color: rgba(255,255,255,0.9); }
.pricing-card-gold .pc-row .pc-label { color: rgba(255,255,255,0.5); }
.pricing-card-gold .pc-row .pc-val   { color: rgba(255,255,255,0.9); }
.pricing-card-gold .pc-tag   { color: rgba(255,255,255,0.5); }
.pricing-card-gold .pc-divider { border-color: rgba(255,255,255,0.15); }
.pricing-card-gold .pc-btn   { background: var(--gold); color: var(--navy); }
.pricing-card-gold .pc-btn:hover { background: var(--gold-light); }
.pc-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-bottom-left-radius: 6px;
}
.pc-type-code {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.25rem;
}
.pc-config {
  font-family: var(--font-sans); font-size: 1rem;
  font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.pc-price {
  font-family: var(--font-serif); font-size: 1.85rem;
  font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 0.2rem;
}
.pc-tag {
  font-size: 0.68rem; color: var(--text-light);
  letter-spacing: 0.06em; margin-bottom: 0.9rem;
}
.pc-divider {
  border: none; border-top: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 0.9rem;
}
.pc-row {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 0.45rem;
}
.pc-label { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.04em; }
.pc-val   { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.pc-btn {
  display: block; text-align: center;
  background: var(--navy); color: var(--white);
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7rem 1rem; border-radius: 3px;
  margin-top: 1rem; transition: var(--transition);
}
.pc-btn:hover { background: var(--gold); color: var(--navy); }
.pc-btn-light {
  background: rgba(255,255,255,0.1); color: var(--white);
  