/* ==========================================================================
   GODREJ SOUKYA ROAD VILLAS - LUXURY DESIGN SYSTEM
   Modern, SEO-Friendly Real Estate Landing Page
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0b110e;
  --bg-secondary: #121a15;
  --bg-surface: #18231c;
  --bg-surface-elevated: #202d24;
  --bg-cream: #faf8f5;
  --bg-cream-alt: #f1ede4;
  --text-cream-dark: #1e2420;
  
  --gold-100: #fbf0d9;
  --gold-200: #f4dcab;
  --gold-300: #e5bf71;
  --gold-400: #cfa14c;
  --gold-500: #b88632;
  --gold-gradient: linear-gradient(135deg, #f6dfa9 0%, #c99742 50%, #8e631d 100%);
  --gold-glow: rgba(201, 151, 66, 0.25);
  
  --text-primary: #ffffff;
  --text-secondary: #d8e2dc;
  --text-muted: #95a59c;
  --text-light: #f3f4f6;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(201, 151, 66, 0.35);
  --accent-gold: hsl(43, 60%, 55%);
  --accent-gold-hover: #b89628;
  
  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 30px rgba(201, 151, 66, 0.28);
  
  /* Layout */
  --container-max: 1380px;
  --header-height: 74px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography Utilities */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-300);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 680px;
  margin-bottom: 48px;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent-gold);
  color: #0b110e;
  border: 1px solid var(--accent-gold);
  padding: 15px 35px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 35px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(201, 151, 66, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(201, 151, 66, 0.15);
  border-color: var(--gold-300);
  color: var(--gold-200);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.84rem;
}

/* Hero Centered & Metrics from Sobha One Hoskote */
.oneworld-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, hsl(45, 55%, 58%) 0%, hsl(45, 65%, 68%) 100%);
  color: #0b110e;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.hero-metrics {
  display: flex;
  gap: 20px;
  margin: 35px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.metric-card {
  background: rgba(18, 26, 21, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  padding: 18px 28px;
  text-align: center;
  min-width: 140px;
  border-radius: 6px;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Modal Popup Overlay identical to Sobha One Hoskote */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: #121a15;
  border: 1px solid var(--border-gold);
  width: 90%;
  max-width: 550px;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  border-radius: 8px;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: rgba(11, 17, 14, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  height: 64px;
  background: rgba(11, 17, 14, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border-gold);
}

.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
  width: 100%;
  padding-left: clamp(16px, 2.2vw, 36px);
  padding-right: clamp(24px, 3.2vw, 48px);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 44px;
  flex-shrink: 0;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.site-header.scrolled .logo-wrapper {
  height: 38px;
}

.logo-wrapper:hover {
  filter: drop-shadow(0 4px 18px rgba(201, 151, 66, 0.45));
}

.logo-wrapper img {
  height: 100%;
  width: auto;
  max-width: 215px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(6px, 0.95vw, 15px);
  flex-shrink: 1;
  margin-left: auto;
  margin-right: clamp(16px, 2vw, 32px);
}

.nav-link {
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-300);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-200);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-actions .btn {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  padding: 7px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f7e7ce;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 5px;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.phone-badge svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

.phone-badge span {
  white-space: nowrap !important;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.phone-badge:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 30%, rgba(201, 151, 66, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 15% 70%, rgba(33, 56, 42, 0.35) 0%, transparent 50%),
              var(--bg-primary);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.88) contrast(1.05);
}

.hero-bg-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, rgba(11, 17, 14, 0.85) 30%, rgba(11, 17, 14, 0.2) 75%, var(--bg-primary) 100%);
  z-index: 2;
}

.hero-bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%);
  z-index: 2;
}

.hero-content-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-text-side {
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(201, 151, 66, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-200);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-headline em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-price-strip {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
}

.price-lead {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.price-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
}

.hero-pill svg, .hero-pill i {
  color: var(--gold-300);
  width: 16px;
  height: 16px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   LEAD CAPTURE FORM (Hero Banner Card & Global Contact Section)
   ========================================================================== */
.lead-card {
  background: rgba(24, 35, 28, 0.88);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.lead-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.lead-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.lead-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.lead-card-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: rgba(11, 17, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.94rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-300);
  background: rgba(11, 17, 14, 0.95);
  box-shadow: 0 0 0 3px rgba(201, 151, 66, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.phone-input-wrap {
  display: flex;
  gap: 8px;
}

.phone-select-code {
  width: 95px;
  flex-shrink: 0;
  padding: 12px 8px;
  background: rgba(11, 17, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  color: var(--gold-200);
  font-weight: 600;
  font-size: 0.92rem;
  outline: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.phone-select-code:focus {
  border-color: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(201, 151, 66, 0.2);
}

.phone-select-code option {
  background: #111a14;
  color: #ffffff;
}

.phone-input-wrap .form-control {
  flex: 1;
}

.form-consent-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.form-consent-wrap input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold-400);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-consent-wrap label {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
  cursor: pointer;
}

.form-consent-wrap label a {
  color: var(--gold-300);
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  font-size: 0.95rem;
}

/* ==========================================================================
   STATS / METRICS STRIP
   ========================================================================== */
.stats-strip-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
  position: relative;
  z-index: 20;
}

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

.stat-card {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-300);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ==========================================================================
   ABOUT / PROJECT OVERVIEW SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual-side {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

.about-main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-main-img:hover img {
  transform: scale(1.04);
}

.about-float-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 260px;
}

.about-float-badge .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 151, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
}

.about-float-badge h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.about-float-badge p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-content-side p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-feature-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: #ffffff;
  font-weight: 500;
}

.checklist-item svg {
  color: var(--gold-300);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   SIGNATURE HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.highlight-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.highlight-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.highlight-card:hover::after {
  transform: scaleX(1);
}

.highlight-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.35;
}

.highlight-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   CONFIGURATIONS & PRICING TABLE
   ========================================================================== */
.pricing-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 10%, rgba(201, 151, 66, 0.08) 0%, transparent 70%), var(--bg-primary);
  position: relative;
}

.pricing-table-container {
  overflow-x: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th {
  background: var(--bg-surface-elevated);
  padding: 22px 28px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-200);
  border-bottom: 1px solid var(--border-gold);
}

.pricing-table td {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.02rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.pricing-table tr:hover td {
  background: rgba(201, 151, 66, 0.05);
}

.pricing-table tr.featured-row td {
  background: rgba(201, 151, 66, 0.08);
}

.pricing-table .config-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.15rem;
}

.pricing-table .config-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(201, 151, 66, 0.2);
  color: var(--gold-200);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
}

.pricing-table .price-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-300);
}

/* ==========================================================================
   AMENITIES SHOWCASE
   ========================================================================== */
.amenities-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.amenity-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition-smooth);
}

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

.amenity-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(201, 151, 66, 0.12);
  border: 1px solid rgba(201, 151, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  transition: all var(--transition-fast);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--gold-gradient);
  color: #121814;
}

.amenity-icon-box svg {
  width: 28px;
  height: 28px;
}

.amenity-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.amenity-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MASTER PLAN & FLOOR PLANS (INTERACTIVE TABS)
   ========================================================================== */
.plans-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 26px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold-gradient);
  color: #121814;
  border-color: transparent;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.tab-content-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content-panel.active {
  display: block;
}

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

.plan-display-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.plan-preview-box {
  position: relative;
  background: #0d1611;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.plan-preview-box img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.plan-preview-box:hover img {
  transform: scale(1.02);
}

.plan-overlay-cta {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 14, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.plan-preview-box:hover .plan-overlay-cta {
  opacity: 1;
}

.plan-meta-strip {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-gold);
  flex-wrap: wrap;
  gap: 16px;
}

.plan-meta-info h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.plan-meta-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   GALLERY SECTION (MASONRY)
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

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

.gallery-card.span-2 {
  grid-column: span 2;
}

.gallery-card.span-2 img {
  height: 380px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 17, 14, 0.85) 0%, rgba(11, 17, 14, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.82rem;
  color: var(--gold-200);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   LOCATION & CONNECTIVITY SECTION
   ========================================================================== */
.location-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.map-embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  height: 480px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: contrast(1.05) saturate(1.1);
}

.landmarks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landmark-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.landmark-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-surface-elevated);
  transform: translateX(4px);
}

.landmark-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #ffffff;
}

.landmark-name svg {
  color: var(--gold-300);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.landmark-time {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-200);
  padding: 4px 12px;
  background: rgba(201, 151, 66, 0.14);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold-300);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 22px;
}

/* ==========================================================================
   PRIMARY CONTACT LEAD CAPTURE SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: radial-gradient(circle at 70% 50%, rgba(201, 151, 66, 0.12) 0%, transparent 60%),
              var(--bg-primary);
  position: relative;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.contact-info-side .section-title {
  margin-bottom: 20px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.contact-info-card .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 151, 66, 0.12);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h5 {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-info-card a:hover {
  color: var(--gold-200);
}

/* ==========================================================================
   FOOTER & REGULATORY SECTION
   ========================================================================== */
.site-footer {
  background: #070b09;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.rera-compliance-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 151, 66, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
}

.rera-compliance-box h5 {
  color: var(--gold-200);
  font-size: 0.94rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.rera-compliance-box p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.disclaimer-text {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #6a7c73;
  margin-bottom: 28px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
}

/* ==========================================================================
   MODAL / POPUP DIALOGS (LIGHT DISMISS & ACCESSIBLE)
   ========================================================================== */
dialog.custom-modal {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  color: #ffffff;
  padding: 0;
  max-width: 520px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0, 0, 0, 0.85);
  margin: auto;
}

dialog.custom-modal::backdrop {
  background: rgba(7, 11, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-inner {
  padding: 34px 28px;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gold-gradient);
  color: #121814;
}

/* Success Confirmation Toast / Modal */
.success-state {
  text-align: center;
  padding: 20px 10px;
}

.success-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 151, 66, 0.18);
  border: 2px solid var(--gold-300);
  color: var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-circle svg {
  width: 36px;
  height: 36px;
}

.success-state h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.success-state p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ==========================================================================
   STICKY MOBILE ACTIONS & FLOATING BUTTONS
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 17, 14, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 14px;
  z-index: 999;
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}

.mobile-sticky-grid .btn {
  padding: 10px 6px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  gap: 6px;
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 980;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--gold-gradient);
  color: #121814;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-bg-media {
    width: 100%;
    opacity: 0.25;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  
  .about-grid, .location-grid, .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1300px) {
  .logo-wrapper {
    height: 40px;
  }

  .nav-menu {
    gap: 6px;
    margin-right: 14px;
  }
  
  .nav-link {
    font-size: 0.78rem;
    padding: 3px 0;
  }
  
  .phone-badge {
    padding: 5px 9px;
    font-size: 0.80rem;
    gap: 5px;
  }
  
  .header-actions .btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1140px) {
  :root {
    --header-height: 68px;
  }
  
  .hamburger-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-surface-elevated);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    margin-left: 0;
    margin-right: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .logo-wrapper {
    height: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }
  
  .logo-wrapper {
    height: 64px;
  }
  
  .header-actions .btn {
    display: none;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-card.span-2 {
    grid-column: span 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 60px;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.1rem;
  }
  
  .price-lead {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table th, .pricing-table td {
    padding: 16px 14px;
    font-size: 0.88rem;
  }
}
