/* ============================================================
   SECRET AURAA – Premium Plotted Development | Nemmeli ECR
   CSS Design System | Version 1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E2C06E;
  --gold-dark:     #A07428;
  --gold-pale:     #F5ECD7;
  --dark:          #0D0D0D;
  --dark-rich:     #111318;
  --dark-card:     #1A1D24;
  --dark-border:   #2A2D35;
  --slate:         #6B7280;
  --slate-light:   #9CA3AF;
  --white:         #FFFFFF;
  --off-white:     #F9F7F2;
  --text-body:     #374151;

  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', 'Inter', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.18);
  --shadow-gold:   0 8px 40px rgba(201,168,76,.25);

  --transition:    all .35s cubic-bezier(.4,0,.2,1);
  --navbar-h:      80px;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--off-white);
  overflow-x: clip;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* ─── UTILITY ────────────────────────────────────────────── */
#overview{
  padding: 40px 0 0;
}
.section-pad    { padding: 90px 0 ; }
.section-pad-sm { padding: 60px 0; }
.container      { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 16px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(201,168,76,.06);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
}
.section-heading span { color: var(--gold); }
.section-heading.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 12px;
}
.section-sub.light { color: rgba(255,255,255,.70); }

.gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 18px 0 28px;
}
.gold-line.center { margin: 18px auto 28px; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(201,168,76,.45);
  color: var(--dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-white:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ─── PRELOADER ──────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: .1em;
  animation: pulse-gold 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 160px; height: 2px;
  background: rgba(201,168,76,.2);
  border-radius: 2px;
  margin: 16px auto 0;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: load-bar 1.8s ease-in-out forwards;
}
@keyframes load-bar { from { width: 0%; } to { width: 100%; } }
@keyframes pulse-gold {
  0%,100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: #04355E;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
  transition: var(--transition);
}
#navbar.scrolled {
  background: #04355E;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
#navbar .container {
  height: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Logo */
.nav-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,.05);
}

/* Nav Phone */
.nav-phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.nav-phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #c2922e 0%, #fefaca 50%, #d7982a 100%);
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 50px;
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 15px rgba(201,168,76,.3);
  animation: pulse-cta 2s infinite; /* Restored animation */
}
.nav-phone a::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: rgba(201,168,76,.3);
  animation: pulse-expand 2.5s ease-out infinite;
}
@keyframes pulse-expand {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.nav-phone a:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.nav-phone a i { font-size: .9rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  display:none  
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: var(--navbar-h); left: 0; right: 0;
  background: rgba(76, 21, 40, 0.98);
  backdrop-filter: blur(20px);
  transform: translateY(-110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 999;
  padding: 24px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); padding-left: 8px; }
.nav-mobile .nav-phone-mobile {
  margin-top: 20px;
  display: flex;
}
.nav-mobile .nav-phone-mobile a {
  border: none; display: inline-flex;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  width: auto;
  animation: none;
}
.nav-mobile .nav-phone-mobile a::before { display: none; }

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: rgba(10,10,14,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,.2);
  position: relative;
  z-index: 10;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 28px;
  border-right: 1px solid rgba(201,168,76,.18);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 32px; height: 32px;
  background: rgba(201,168,76,.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1.2;
}
.trust-text span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}

/* ─── HERO SECTION ───────────────────────────────────────── */
#hero {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  background: var(--dark);
}

/* Outer: image + overlaid content on desktop */
.hero-banner-outer {
  position: relative;
  width: 100%;
}

/* Image block */
/* .hero-img-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 0px);
  min-height: 560px;
} */
.hero-img-wrap img {
  width: 100%;
  padding-top: 80px;
  /* height: 100%; */
  /* object-fit: cover;
  object-position: center top;
  display: block; */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,5,10,.80) 0%,
    rgba(5,5,10,.55) 42%,
    rgba(5,5,10,.15) 72%,
    rgba(5,5,10,.05) 100%
  );
  z-index: 1;
}

/* Hero Copy — absolute over image on desktop */
.hero-content {
  position: absolute;
  top: 55%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 520px;
  padding-top: var(--navbar-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 14px;
}
.hero-title span { color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
  font-weight: 300;
  letter-spacing: .02em;
}
.hero-rera {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  margin-bottom: 30px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Form — absolute right on desktop */
.hero-form-wrap {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 10;
  width: 440px; /* Increased from 380px */
  padding-top: var(--navbar-h);
}
.hero-form-card {
  background: #04355E;
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px; /* Increased padding */
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 5px solid var(--gold); /* Added premium top border */
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(201,168,76,.05), transparent 70%);
  pointer-events: none;
}
.hero-form-card .form-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-form-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem; /* Increased from 1.5rem */
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}
.hero-form-card p {
  font-size: .78rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px; /* Slightly more padding */
  font-family: var(--font-body);
  font-size: .95rem; /* Slightly larger font */
  color: var(--dark);
  background: var(--off-white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; min-height: 72px; }
.form-submit {
  width: 100%;
  padding: 16px; /* Increased padding */
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 1rem; /* Slightly larger font */
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
/* .form-submit:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
} */
.form-disclaimer {
  font-size: .68rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ─── PROJECT OVERVIEW ───────────────────────────────────── */
#overview {
  position: relative;
  overflow: hidden;
}
/* ─── LOCATION ADVANTAGES ────────────────────────────────── */

.map-frame-premium {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,.2);
  height: 650px; /* Increased height */
}

.map-frame-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the taller aspect ratio looks good */
  display: block;
}

.map-perspective-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,10,14,.4));
  pointer-events: none;
}

.map-label-chip {
  position: absolute;
  bottom: 20px;
  left: 24px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-label-chip i { color: var(--gold); }

#location {
  background: #04355E;
  position: relative;
  overflow: visible !important;
}

#location .container {
  overflow: visible !important;
}

/* ─── LOCATION EXPLORER V6 ──────────────────────────────── */
.location-explorer {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.explorer-map-col {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  height: fit-content;
  z-index: 10;
}

.map-frame-v6 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201,168,76,.3);
  height: 480px; /* Perfectly balanced for stickiness */
  max-height: 80vh;
  background: var(--dark);
}

.map-frame-v6 img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.map-frame-v6:hover img { transform: scale(1.05); }

.map-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,24,0.6), transparent 50%);
  pointer-events: none;
}

.map-expand-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: var(--transition);
}
.map-expand-btn:hover { background: var(--white); transform: translateX(-50%) translateY(-5px); }

/* Tab Nav */
.explorer-tabs-nav {
  display: flex;
  justify-content: space-between;
  background: var(--off-white);
  padding: 10px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.05);
}

.explorer-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 10px;
  border-radius: var(--radius-md);
  color: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.explorer-tab-btn i { font-size: 1.25rem; }
.explorer-tab-btn span { font-size: .75rem; font-weight: 700; text-transform: uppercase; }

.explorer-tab-btn:hover { color: var(--gold-dark); background: rgba(201,168,76,0.05); }
.explorer-tab-btn.active {
  background: var(--white);
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
}

/* Tab Content */
.explorer-tab-content-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,.12);
  min-height: 600px; /* Increased to allow sticky scroll room */
  position: relative;
}

.explorer-tab-pane {
  display: none;
  animation: fadeInDown .5s ease forwards;
}

.explorer-tab-pane.active { display: block; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.tab-sub {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 35px;
}

.landmark-grid-v6 {
  display: flex;
  flex-direction: column;
  gap: 24px; /* More breathable for sticky feel */
}

.l-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 12px;
  transition: var(--transition);
}

.l-item:hover { background: #fdfaf3; border-color: var(--gold); transform: translateX(8px); }
.l-item span { font-weight: 500; color: var(--dark); font-size: 1rem; }
.l-item strong { color: var(--gold-dark); font-size: .85rem; font-weight: 700; background: rgba(201,168,76,.1); padding: 4px 12px; border-radius: 50px; }

.landmark-grid-v6.highlight .l-item { background: #fdfaf3; border: 1px solid rgba(201,168,76,0.2); }
.landmark-grid-v6.highlight .l-item strong { background: var(--gold); color: var(--dark); }

/* ─── MAP DASHBOARD V8 (LIGHT THEME) ───────────────────── */
.map-dashboard-light {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.map-col-v8 {
  height: 450px;
}

.map-wrapper-v8 {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.contact-card-v8 {
  padding: 20px 0;
}

.concise-info-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: var(--slate);
}

.info-box i {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.info-box a { color: var(--slate); text-decoration: none; font-weight: 600; }
.info-box a:hover { color: var(--gold-dark); }

.info-box.highlight-address {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 10px 40px rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.info-box.highlight-address::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gold);
}

.info-box.highlight-address:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(201,168,76,0.15);
}

.info-box.highlight-address strong {
  color: var(--gold-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-box.highlight-address span {
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.c-btns-v8 {
  display: flex;
  gap: 15px;
}

.c-btns-v8 .btn-gold { padding: 16px 32px; font-size: .85rem; }
.c-btns-v8 .btn-outline-dark { padding: 16px 32px; font-size: .85rem; }

@media (max-width: 991px) {
  .map-dashboard-light { grid-template-columns: 1fr; text-align: center; }
  .concise-info-grid { align-items: center; }
  .c-btns-v8 { justify-content: center; }
  .contact-col-v8 { order: 2; }
  .map-col-v8 { order: 1; min-height: 350px; }
}

.overview-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/overview-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  opacity: .05;
  z-index: 0;
}
.overview-parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(201,168,76,.03) 8px,
    rgba(201,168,76,.03) 9px
  );
}
.overview-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.overview-content { }
.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.stat-card {
      padding: 13px 7px;
      background: #04355E;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: var(--transition);
      text-align: center;
}
.stat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transform: translateY(-5px);
}
.stat-card .stat-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-card .stat-lbl {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: .03em;
}
.overview-highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overview-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.overview-highlight-item i {
  color: var(--gold);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.overview-img-wrap {
  position: relative;
}
.overview-img-wrap img {
  width: 100%;
  /* height: 520px; */
  object-fit: cover;
  /* border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); */
}
.overview-img-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,.15);
}
.overview-img-badge .badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
}
.overview-img-badge .badge-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
}
.overview-img-badge .badge-text span {
  font-size: .72rem;
  color: var(--slate);
}

/* ─── AMENITIES CAROUSEL ─────────────────────────────────── */
#amenities {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgb(13 13 13 / 87%), rgb(13 13 13 / 89%)),
    url(../images/gallery/secretgallery3.jpeg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
#amenities::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,.025) 40px,
    rgba(201,168,76,.025) 41px
  );
  pointer-events: none;
  z-index: 0;
}
#amenities .container { position: relative; z-index: 1; }
.amenities-header { text-align: center; margin-bottom: 64px; }

/* 3D Carousel */
.carousel-3d-wrapper {
  perspective: 2000px; /* Higher perspective for less distortion */
  height: 420px; /* Slightly more height for the shadow/scale */
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  overflow: visible;
}
.carousel-3d-scene {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-3d-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.amenity-card-3d {
  position: absolute;
  width: 330px;
  height: 430px;
  left: 50%;
  top: 50%;
  margin-left: -165px;
  margin-top: -215px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-rich);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.amenity-card-3d a {
  display: block;
  width: 100%;
  height: 100%;
}
.amenity-card-3d:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), 0 40px 80px rgba(0,0,0,0.6);
}
.amenity-card-3d.active-center {
  background: var(--gold); /* Subtle gold tint when active */
  background: #f1eee9;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), 0 30px 80px rgba(0,0,0,.5);
}
.amenity-card-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.amenity-card-3d:hover img {
  transform: scale(1.1);
}
.amenity-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .carousel-3d-wrapper, .carousel-controls { display: none; }
  .amenities-grid-mobile { display: grid; }
}
.amenities-grid-mobile { display: none !important; }
.amenity-card-flat {
  position: relative;
  background: var(--dark-rich);
  border-radius: var(--radius-md);
  height: 200px; /* Increased height */
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
}
.amenity-card-flat a {
  display: block;
  width: 100%;
  height: 100%;
}
.amenity-card-flat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.amenity-card-flat .amenity-overlay {
  font-size: 1.1rem;
  padding: 20px 10px;
}

/* ─── LOCATION ADVANTAGES - ACCORDION LAYOUT ────────────── */
#location {
  background: #04355E;
  color: #fff;
}

.location-explorer {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .location-explorer {
    grid-template-columns: 1fr;
  }
}

.explorer-map-col {
  position: sticky;
  top: 100px;
}

.map-frame-premium {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 4px solid var(--white);
}

.map-frame-premium img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}

.map-frame-premium:hover img {
  transform: scale(1.05);
}

.map-label-chip {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  color: var(--dark);
}

.map-label-chip i { color: var(--gold); }

.landmark-accord-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.landmark-accord-item .accordion-button {
  background: transparent !important;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 20px 24px;
  box-shadow: none !important;
  display: flex;
  gap: 12px;
  border: none !important;
}

.landmark-accord-item .accordion-button::after {
  filter: invert(1);
}

.landmark-accord-item .accordion-button i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.landmark-accord-item .accordion-button:not(.collapsed) {
  background: rgba(201, 168, 76, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.landmark-list-v4 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landmark-list-v4 li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.landmark-list-v4 li:last-child { border-bottom: none; }

.landmark-list-v4 li small {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
}

.landmark-list-v4.highlight li {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 991px) {
  .location-accord-wrap { grid-template-columns: 1fr; }
  .location-map-v4 { position: relative; top: 0; margin-bottom: 30px; }
}

@media (max-width: 600px) {
  .landmark-grid { grid-template-columns: 1fr; }
}

/* ─── WHY INVEST ─────────────────────────────────────────── */
#why-invest {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#why-invest::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
#why-invest::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}
.why-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: linear-gradient(145deg, #16181F, #12141A);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.why-icon {
  width: 58px; height: 58px;
  background: rgba(201,168,76,.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: rgba(201,168,76,.15);
  box-shadow: 0 0 20px rgba(201,168,76,.15);
}
.why-icon i { color: var(--gold); font-size: 1.4rem; }
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ─── GALLERY ────────────────────────────────────────────── */
#gallery-section {
  position: relative;
  background: var(--dark-rich);
  overflow: hidden;
  color: var(--white);
    position: relative;
      overflow: hidden;
      background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8)) center center / cover fixed, url(../images/gallery/secretgallery1.jpeg);
      background-position: center center;
      background-attachment: fixed;
}



.gallery-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/gallery/secretgallery1.jpeg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  opacity: .15;
  z-index: 0;
}
.gallery-parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(14,16,21,0.9), rgba(14,16,21,0.5)); */
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.gallery-slider-wrap {
  position: relative;
  z-index: 2;

  width: 95%;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  padding: 0 80px; /* Space for arrows outside */
}
.gallerySwiper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.gallerySwiper .swiper-slide {
  position: relative;
  aspect-ratio: 16 / 10;
}
.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-next, .gs-prev {
  background: linear-gradient(135deg, #c2922e 0%, #fefaca 50%, #d7982a 100%);
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  color: var(--dark) !important;
  margin-top: -27px !important;
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
  transition: var(--transition);
}
.gs-next { right: 0px !important; }
.gs-prev { left: 0px !important; }

.gs-next:hover, .gs-prev:hover {
  background: var(--dark) !important;
  color: linear-gradient(135deg, #c2922e 0%, #fefaca 50%, #d7982a 100%);
  transform: scale(1.1);
}
.gs-next::after, .gs-prev::after {
  font-size: 1.1rem !important;
  font-weight: 900 !important;
}
.gallerySwiper .swiper-pagination-bullet { width: 8px; height: 8px; background: var(--gold); }
.gallerySwiper .swiper-pagination-bullet-active { width: 24px; border-radius: 4px; }

/* ─── MASTER PLAN SECTION ─────────────────────────────────── */
#master-plan {
  background: #f1eee9;
  position: relative;
}

.master-plan-outer {
  width: 100%;
  margin: 0 auto;
}

.master-plan-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  transition: var(--transition);
}

.master-plan-frame:hover {
  transform: scale(1.02);
}

.master-plan-frame img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.plan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}

.master-plan-frame:hover .plan-overlay {
  opacity: 1;
}

.plan-btn {
  background: var(--white);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: var(--transition);
}

.master-plan-frame:hover .plan-btn {
  transform: translateY(0);
}

.plan-btn i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ─── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip-dark {
  background: linear-gradient(135deg, #0D0D0D 0%, #181818 100%);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.cta-strip-dark h2 { color: var(--white) !important; }
.cta-strip-dark p  { color: rgba(255,255,255,.55) !important; }
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.cta-strip p {
  font-size: .95rem;
  color: rgba(0,0,0,.65);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.cta-strip-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.btn-dark:hover { background: #1A1D26; transform: translateY(-2px); }

/* ─── LEAD CAPTURE / CONTACT SECTION ────────────────────── */
#contact {
  background: var(--dark-rich);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(201,168,76,.02) 12px,
    rgba(201,168,76,.02) 13px
  );
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-info {}
.contact-info-items { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.2);
}
.contact-info-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 3px;
}
.contact-info-text a,
.contact-info-text span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  display: block;
}
.contact-info-text a:hover { color: var(--gold); }

.contact-social { margin-top: 36px; }
.contact-social p {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.contact-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}
.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: rgba(255,255,255,.05);
  border-color: rgba(201,168,76,.15);
  color: var(--white);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}
.contact-form .form-group select option { background: #1A1D24; color: var(--white); }
.contact-form-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.contact-form-btns .form-submit { grid-column: span 2; }

/* ─── POPUP MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  position: relative;
  transform: scale(.92) translateY(20px);
  transition: transform .35s cubic-bezier(.34,1.4,.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--off-white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--dark); }
.modal-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.modal-box p {
  font-size: .82rem;
  color: var(--slate);
  margin-bottom: 22px;
}

/* ─── FLOATING CTA ───────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  border: none;
  text-decoration: none;
}
.float-cta-btn.whatsapp {
  background: #25D366;
  color: var(--white);
  width: 52px; height: 52px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
}
.float-cta-btn.whatsapp:hover { background: #1DAA54; transform: scale(1.1); }
.float-cta-btn.enquire {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
}
.float-cta-btn.enquire:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

/* ─── ABOUT DEVELOPER ────────────────────────────────────── */
.developer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.developer-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.developer-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dev-stat-item {
  background: var(--off-white);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(201,168,76,.15);
  transition: var(--transition);
}

.dev-stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.dev-stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.dev-stat-lbl {
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 991px) {
  .developer-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .developer-content .gold-line { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .developer-stats-grid { grid-template-columns: 1fr; }
  .dev-stat-num { font-size: 2.2rem; }
}

/* ─── FOOTER - PREMIUM TEAL STYLE ────────────────────────── */
.footer-teal {
  background: #f1eee9;
  color: #000;
  padding: 80px 0 40px;
  font-family: var(--font-body);
}

.footer-disclaimer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 70px;
}

.footer-disclaimer-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin: 0;
  font-weight: 300;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #000;
}

.footer-bottom-bar strong {
  color: #000;
  font-weight: 700;
}

/* ─── AOS ANIMATIONS ─────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); opacity: 1; }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); opacity: 1; }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); opacity: 1; }

/* ─── FIXED MOBILE CTA BAR ───────────────────────────────── */
.fixed-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.m-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.m-cta-btn.call {
  background: var(--gold);
  color: var(--dark-rich);
  border-right: 1px solid rgba(0,0,0,0.05);
  animation: pulse-cta 2s infinite; /* Pulsing Call */
}

.m-cta-btn.enquire {
  background: #04355E;
  color: var(--white);
  position: relative;
  overflow: hidden;
  animation: pulse-cta 2s infinite 1s; /* Offset Pulsing */
}

@keyframes pulse-cta {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(201,168,76,0.4); }
  100% { transform: scale(1); }
}

/* Subtle Premium Glow for Enquiry */
.m-cta-btn.enquire::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(201,168,76,0.25);
  opacity: 0;
  animation: pulse-shine 2s infinite;
}

@keyframes pulse-shine {
  0% { transform: scale(0.9); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.m-cta-btn i { font-size: 1.15rem; }

/* Hide on desktop */
@media (min-width: 992px) {
  .fixed-mobile-cta { display: none; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .overview-inner { grid-template-columns: 1fr; gap: 48px; }
  .overview-img-wrap img { height: 380px; }
  .overview-img-badge { left: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Hero mid-sized desktop adjustments */
  #hero { min-height: auto; }
  .hero-banner-outer { display: flex; flex-direction: column; }
  /* .hero-img-wrap { height: 60vw; min-height: 400px; order: 1; } */
  .hero-content {
    position: static;
    transform: none;
    order: 2;
    padding: 60px 40px 20px;
    max-width: 100%;
    background: var(--dark);
    color: var(--white);
  }
  .hero-form-wrap {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    padding: 0 40px 60px;
    background: #fff;
  }
  .hero-form-card { width: 100%; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {

  .hero-img-wrap img{
    padding-top: 0px !important;
  }

  .footer-disclaimer-content{
    margin-bottom: 10px;
  }

  .footer-teal{
    padding: 40px 0 90px;
  }

  .developer-text{
    text-align: justify;
  }

    .label-tag{
      text-align: center !important;
    }

  .footer-disclaimer-content p{
    text-align: justify;
  }

  .developer-text { text-align: justify !important; }

  .amenities-header{
    margin-bottom: 0px !important;
  }
  /* Mobile Navbar Fix */
  #navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #04355E; box-shadow: var(--shadow-sm); }
  .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 0 12px; height: 85px; gap: 10px; flex-wrap: nowrap; }
  .nav-logo { flex: 0 1 auto; order: 1; min-width: 0; }
  .nav-logo img { height: 50px; width: auto; max-width: 90%; object-fit: contain; }
  .nav-links { display: none; }
  .nav-phone { display: flex; flex: 0 0 auto; order: 2; width: auto !important; }
  .nav-phone a { background: var(--gold); color: var(--dark); padding: 10px 18px; border-radius: 50px; font-size: 0.95rem; white-space: nowrap; font-weight: 800; animation: pulse-cta 2s infinite; }
  .nav-toggle { display: none !important; }

  /* Extra Small Devices Adjustment */
  @media (max-width: 360px) {
    .nav-inner { height: 80px; gap: 5px; }
    .nav-logo img { height: 40px; }
    .nav-phone a { font-size: 0.85rem; padding: 8px 12px; }
  }

  /* Hero Mobile Optimization */
  #hero { margin-top: 68px; }
  .hero-banner-outer { display: flex; flex-direction: column; }
  /* .hero-img-wrap { height: 75vw; min-height: 280px; order: 1; } */
  .hero-content { 
    order: 2; 
    padding: 30px 15px 10px; 
    text-align: center; 
    background: var(--dark-rich); 
    color: #fff;
    width: 100%;
  }
  .hero-title { font-size: 1.8rem; margin-bottom: 8px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 0; }
  
  .hero-form-wrap { 
    order: 3; 
    padding: 20px 15px 50px; 
    background: #fff; 
    width: 100%;
  }
  .hero-form-card { 
    background: #fff; 
    padding: 25px 20px; 
    border-radius: var(--radius-lg); 
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }
  
  .trust-bar { position: relative; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); }
  .trust-bar-inner { padding: 15px; }

  .overview-stats { grid-template-columns: 1fr 1fr; }
  .overview-highlights { 
    display: grid !important; 
    grid-template-columns: 1fr 1fr !important; 
    gap: 15px 10px !important; 
  }
  .overview-highlight-item { font-size: 13px !important; }
  .why-grid { grid-template-columns: 1fr; }
  
  /* Location Section Mobile Refinements */
  .location-explorer { display: block !important; }
  .explorer-map-col { height: auto !important; position: static !important; margin-bottom: 25px !important; }
  .map-frame-v6 { 
    height: auto !important; 
    border-bottom: none !important; 
    border-radius: 15px !important;
    background: #fff !important; 
    aspect-ratio: auto !important;
  }
  .map-frame-v6 img { 
    height: auto !important; 
    width: 100% !important; 
    object-fit: contain !important; 
    display: block !important;
  }
  
  .explorer-tabs-nav { 
    overflow-x: auto !important; 
    justify-content: flex-start !important; 
    padding: 12px 5px !important;
    gap: 4px !important;
    white-space: nowrap !important;
    margin-bottom: 0 !important;
    border-radius: 15px 15px 0 0 !important;
    background: #fff !important;
    border: none !important;
    -webkit-overflow-scrolling: touch;
  }
  .explorer-tabs-nav::-webkit-scrollbar { display: none; }
  
  .explorer-tab-btn { 
    flex: 0 0 auto !important; 
    min-width: 80px !important; 
    padding: 8px 4px !important; 
    background: transparent !important;
  }
  .explorer-tab-btn i { font-size: 1.1rem !important; margin-bottom: 4px !important; }
  .explorer-tab-btn span { font-size: 0.6rem !important; letter-spacing: 0.02em !important; }
  .explorer-tab-btn.active { background: rgba(201,168,76,0.08) !important; font-weight: 700 !important; }

  .explorer-tab-content-wrap { 
    border-radius: 0 0 15px 15px !important; 
    padding: 24px 16px !important; 
    min-height: auto !important;
    background: #fff !important;
    border: none !important;
    margin-top: -1px; /* Overlap to hide seam */
  }
  
  .tab-title { font-size: 1.25rem !important; margin-bottom: 8px !important; }
  .tab-sub { font-size: 0.78rem !important; margin-bottom: 18px !important; }
  .landmark-grid-v6 { gap: 10px !important; }
  .l-item { padding: 12px 14px !important; border-radius: 8px !important; }
  .l-item span { font-size: 0.8rem !important; }
  .l-item strong { font-size: 0.68rem !important; }
  
  .section-pad { padding: 45px 0 !important; }
  .container { padding: 0 15px !important; }
  
  .section-heading { font-size: 28px !important; }
  .section-sub, p, .developer-text, .tab-sub { font-size: 18px !important; line-height: 1.6 !important; }
  .label-tag { font-size: 0.65rem; padding: 4px 12px; display: inline-block; margin: 0 auto 16px; }
  .stat-card .stat-val { font-size: 22px !important; }
  .stat-card .stat-lbl { font-size: 11px !important; }
  .overview-img-wrap { display: none !important; }
  .overview-content { 
    width: 100% !important; 
    max-width: 100% !important; 
    padding: 0 !important; 
    text-align: center !important; 
  }
  .overview-content .gold-line { margin-left: auto !important; margin-right: auto !important; }
  .overview-content .section-sub { text-align: justify; margin-left: auto !important; margin-right: auto !important; }

  /* 3D Carousel for mobile */
  .carousel-3d-wrapper, .carousel-controls, #carouselControlsDesktop { display: flex !important; }
  .amenities-grid-mobile { display: none !important; }
  
  .carousel-3d-wrapper {
    height: 380px !important;
    perspective: 800px !important;
  }
  .amenity-card-3d {
    width: 300px !important;
    height: 320px !important;
    margin-left: -150px !important;
    margin-top: -150px !important;
  }
  .carousel-controls {
    display: flex !important;
    justify-content: center !important;
    padding: 20px 0 !important;
    gap: 15px !important;
  }
  .carousel-dots { gap: 6px !important; }
  .carousel-btn { width: 40px !important; height: 40px !important; }

  .gallery-slider-wrap {
    padding: 0 10px;
  }
  .swiper-slide img {
    border-radius: var(--radius-md);
  }
  
  .contact-form-btns { grid-template-columns: 1fr; }
  .contact-form-btns .form-submit { grid-column: span 1; }

  .footer-bottom-bar { flex-direction: column; gap: 15px; text-align: center; }

  .float-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-gold, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .overview-stats { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { padding: 12px 16px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item.item-1, .gallery-item.item-5 { grid-column: span 1; }
  .gallery-item { height: 220px; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
  .modal-box { padding: 30px 22px; }
}


.selldof label,
.selldof .title {
  display: none !important;
}

.selldof .form-control,
.sell_do_form_control {
  height: 50px !important;
}

.selldof .btn,
.sell_do_ctc_btn,
.selldof .btn,
.sell_do_verify_btn {
  width: 100%;
  font-size: 20px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #c2922e 0%, #fefaca 50%, #d7982a 100%) !important;
  border: none;
  color: var(--dark) !important;
  border-radius: 10px !important;
  /* box-shadow:
        0 6px 0 #0f1f38,
        0 8px 15px rgba(30, 58, 95, 0.35); */
  transform: translateY(0);
  transition: all 0.15s ease;
  position: relative;
  letter-spacing: 0.03em;
}