/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark:  #A07840;
  --dark:       #0D0D0D;
  --dark2:      #161616;
  --dark3:      #1E1E1E;
  --green:      #2D5016;
  --green2:     #3a6b1e;
  --light:      #F7F4EF;
  --light2:     #EEEAE2;
  --white:      #FFFFFF;
  --muted:      #888;
  --red-dot:    #E53935;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Montserrat', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.eyebrow-light { color: var(--gold-light); }

.body-text { font-size: 0.92rem; line-height: 1.85; color: #555; margin-bottom: 1.1rem; }

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.align-center { align-items: center; }
.mt { margin-top: 1.2rem; display: inline-block; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-header.light h2 { color: var(--white); }
.section-desc { font-size: 0.88rem; color: #666; line-height: 1.8; margin-top: 0.8rem; }
.light-desc { color: rgba(255,255,255,0.55); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover { background: transparent; color: var(--dark); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: #fff; color: var(--dark); }
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: block;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 100%; height: 100%; }

/* ===========================
   CALL BAR
=========================== */
.call-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: transform 0.3s;
}
.call-bar span { opacity: 0.85; }
.call-bar a { color: var(--gold-light); font-weight: 700; letter-spacing: 0.05em; }
.call-bar a:hover { color: #fff; }
.cb-sep { opacity: 0.3; }
.cb-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  line-height: 1;
}
.cb-close:hover { color: #fff; }
.call-bar.hidden { transform: translateY(-100%); }

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 38px;
  left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s var(--ease);
  background: rgba(0, 0, 0, 0.879);
}
#navbar.scrolled {
  top: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-v {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
  margin-right: 0.06em;
}
.logo-sub {
  font-size: 0.56rem;
  letter-spacing: 0.38em;
  opacity: 0.65;
  margin-left: 0.5em;
  align-self: center;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.45rem 1.2rem;
  color: var(--gold);
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--dark); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(20,20,10,0.98) 100%);
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    max-width: none;
    margin: 0;
    padding: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.85);
  }

  .nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(201,169,110,0.4);
  }

  .nav-links .nav-cta {
    border: 2px solid var(--gold);
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
  }
}

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

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

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 94%) 0%, rgb(0 0 0 / 66%) 50%, rgb(0 0 0 / 93%) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  margin-top: 38px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 300;
  line-height: 0.88;
  margin-bottom: 1rem;
}
.hero-title em { display: block; }
.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
}
.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
}
.hero-location svg { width: 14px; height: 14px; opacity: 0.7; }

.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.hero-pills span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.45);
  padding: 0.35rem 0.9rem;
  color: var(--gold-light);
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-slide-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

.hero-scroll {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 2rem;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.5rem 1rem;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); margin-left: 0.1em; }
.stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.35rem;
}
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ===========================
   OVERVIEW
=========================== */
.overview { background: var(--light); }

.img-double-border {
  position: relative;
}
.img-double-border img {
  width: 100%;
  display: block;
}
.img-double-border::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1.5px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}
.img-double-border::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 1.5px solid var(--gold);
  opacity: 0.15;
  z-index: -1;
}

.overview-text h2 { margin-bottom: 1.2rem; }

.overview-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0.5rem;
}
.o-pill {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 100px;
}
.o-pill span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.o-pill strong { font-family: var(--serif); font-size: 1.15rem; color: var(--dark); }

/* ===========================
   HIGHLIGHTS
=========================== */
.highlights { background: var(--light2); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
}

.hl-card {
  background: var(--white);
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  position: relative;
  transition: all 0.35s var(--ease);
}
.hl-card:hover {
  background: var(--dark);
  z-index: 1;
}
.hl-card:hover .hl-num,
.hl-card:hover p,
.hl-card:hover strong { color: rgba(255,255,255,0.7); }
.hl-card:hover .hl-icon { color: var(--gold); }

.hl-num {
  position: absolute;
  top: 0.6rem; right: 0.8rem;
  font-family: var(--serif);
  font-size: 0.7rem;
  color: rgba(0,0,0,0.15);
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.35s;
}
.hl-icon {
  width: 36px; height: 36px;
  color: var(--gold-dark);
  transition: color 0.35s;
}
.hl-icon svg { width: 100%; height: 100%; }
.hl-card p {
  font-size: 0.76rem;
  line-height: 1.55;
  color: #555;
  transition: color 0.35s;
}
.hl-card strong { color: var(--dark); transition: color 0.35s; }

/* ===========================
   PLOTS / PRICING
=========================== */
.plots {
  position: relative;
  padding: 7rem 0;
}
.plots-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #12180a 50%, #0a1212 100%);
  z-index: -1;
}

.plots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.plot-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.2rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.35s var(--ease);
}
.plot-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-6px);
}
.plot-card.featured {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.plot-card.featured:hover { transform: translateY(-14px); }
.plot-badge-top {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  white-space: nowrap;
}
.plot-tier {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.plot-card.featured .plot-tier { color: var(--gold-dark); }

.plot-size-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.plot-card.featured .plot-size-num { color: var(--dark); }
.plot-size-num span { font-size: 0.95rem; font-family: var(--sans); color: rgba(255,255,255,0.45); font-weight: 300; }
.plot-card.featured .plot-size-num span { color: var(--muted); }

.plot-price-wrap { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.plot-card.featured .plot-price-wrap { border-bottom-color: rgba(0,0,0,0.08); }

.plot-price {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.plot-card.featured .plot-price { color: var(--gold-dark); }
.plot-price span { font-size: 0.85rem; font-family: var(--sans); color: rgba(255,255,255,0.4); font-weight: 300; }
.plot-card.featured .plot-price span { color: var(--muted); }
.plot-rate { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-top: 0.3rem; }
.plot-card.featured .plot-rate { color: var(--muted); }

.plot-feats {
  flex: 1;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plot-feats li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.plot-card.featured .plot-feats li { color: #666; }
.plot-feats li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.plots-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ===========================
   AMENITIES
=========================== */
.amenities { background: var(--light2); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.am-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s var(--ease);
}
.am-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.am-img { overflow: hidden; aspect-ratio: 4/3; }
.am-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.am-card:hover .am-img img { transform: scale(1.06); }
.am-label {
  padding: 0.75rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  border-top: 2px solid var(--gold);
}

/* ===========================
   MASTER PLAN
=========================== */
.masterplan { background: var(--light); }

.masterplan-wrap {
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: zoom-in;
}
.masterplan-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.masterplan-wrap:hover img { transform: scale(1.02); }

.mp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.35s;
}
.masterplan-wrap:hover .mp-overlay { background: rgba(0,0,0,0.25); }

.mp-zoom-btn {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.masterplan-wrap:hover .mp-zoom-btn { opacity: 1; }
.mp-zoom-btn svg { width: 20px; height: 20px; }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lb-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: #fff; }

/* ===========================
   LOCATION
=========================== */
.location { background: var(--light2); }

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-visual {
  background: linear-gradient(135deg, #1a2f0a, #0d1f0d);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid rgba(201,169,110,0.15);
  padding: 2rem;
}

.map-pulse {
  position: relative;
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.4);
  animation: pulseRing 2.5s ease-in-out infinite;
}
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  animation: pulseRing 2.5s ease-in-out infinite 0.4s;
}
@keyframes pulseRing {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.3); opacity: 0; }
}
.pulse-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); }

.map-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.map-label strong { color: var(--gold-light); font-size: 1rem; font-family: var(--serif); font-weight: 500; }
.map-label span { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.5; }

.map-link-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.55rem 1.2rem;
  transition: all 0.3s;
}
.map-link-btn:hover { background: var(--gold); color: var(--dark); }
.map-link-btn svg { width: 16px; height: 16px; }

/* Distance rows */
.dist-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dist-row:first-child { padding-top: 0; }

.dist-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dist-icon svg { width: 16px; height: 16px; }
.dist-icon.green  { background: rgba(56,142,60,0.12); color: #388e3c; }
.dist-icon.gold   { background: rgba(201,169,110,0.12); color: var(--gold-dark); }
.dist-icon.red    { background: rgba(229,57,53,0.1); color: var(--red-dot); }

.dist-info { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.dist-place { font-size: 0.85rem; font-weight: 500; color: var(--dark); }

.dist-bar { height: 3px; background: rgba(0,0,0,0.07); border-radius: 2px; overflow: hidden; }
.dist-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(to right, #4caf50, var(--gold-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease) 0.2s;
}
.dist-fill.animated { transform: scaleX(1); }

.dist-time {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===========================
   GALLERY
=========================== */
.gallery { position: relative; padding: 7rem 0; }
.gallery-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #111108 60%, #0d0d0d 100%);
  z-index: -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.8rem;
}
.gal-item {
  position: relative;
  overflow: hidden;
}
.gal-item.large {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.7s var(--ease);
}
.gal-item.large img { min-height: 460px; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ===========================
   DELIVERED PROJECTS
=========================== */
.delivered { background: var(--light); }

.delivered-wrap { border: 1px solid rgba(0,0,0,0.08); overflow: hidden; }
.delivered-wrap img { width: 100%; display: block; }
.delivered-caption {
  display: flex;
  align-items: stretch;
  background: var(--dark);
}
.dc-item {
  flex: 1;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dc-item strong { color: var(--gold); font-size: 0.88rem; font-weight: 600; }
.dc-item span { color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 0.06em; }
.dc-div { width: 1px; background: rgba(255,255,255,0.08); }

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--white); }

.contact-text h2 { margin-bottom: 1.2rem; }

.contact-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.5rem;
}
.contact-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: all 0.3s;
}
.contact-cta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.phone-btn {
  background: var(--dark);
  color: #fff;
  border: 2px solid var(--dark);
}
.phone-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.whatsapp-btn:hover { background: #1ebe5e; border-color: #1ebe5e; }

.contact-info-list { display: flex; flex-direction: column; gap: 0.7rem; }
.ci-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.ci-row svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

.contact-form-box {
  background: var(--light);
  padding: 2.8rem;
  border-top: 3px solid var(--gold);
}
.form-head { margin-bottom: 1.8rem; }
.form-head h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; margin-bottom: 0.3rem; }
.form-head p { font-size: 0.78rem; color: var(--muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.form-group { margin-bottom: 0.8rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.7rem; color: var(--muted); text-align: center; margin-top: 0.8rem; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark2); }

.footer-top { padding: 4rem 2rem 3rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
  gap: 3rem;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-logo { margin-bottom: 0.6rem; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.footer-by { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.f-phone {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
}
.f-wa { font-size: 0.78rem; color: #25D366; }
.footer-contact p { font-size: 0.76rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.f-rera { font-size: 0.68rem !important; color: rgba(255,255,255,0.2) !important; }

.payment-plan-vis {
  display: flex;
  height: 48px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.pp-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.pp-block:last-child { border-right: none; }
.pp-block:first-child { background: rgba(201,169,110,0.12); }
.pp-block span { color: var(--gold); font-size: 0.85rem; font-weight: 700; }
.pp-block small { color: rgba(255,255,255,0.3); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pp-note { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-bottom p { font-size: 0.67rem; color: rgba(255,255,255,0.18); letter-spacing: 0.06em; }

/* ===========================
   SCROLL REVEAL
=========================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE — MOBILE NAV
=========================== */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(4, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .plots-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .location-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.large { grid-column: 1 / span 2; grid-row: 1; }
  .form-row { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 1.2rem; }
  .hero-scroll { display: none; }
  .hero-slide-dots { bottom: 1.5rem; }
  .whatsapp-float { bottom: 3.5rem; right: 1.2rem; width: 48px; height: 48px; }
}

@media (max-width: 700px) {
  .section { padding: 4.5rem 0; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .plots-grid { grid-template-columns: 1fr; }
  .plot-card.featured { transform: translateY(0); }
  .hero-title { font-size: clamp(3.5rem, 18vw, 5rem); }
  .stats-strip { gap: 1rem; flex-direction: column; }
  .stat { padding: 0.8rem 0.5rem; }
  .stat-div { display: none; }
  .contact-form-box { padding: 2rem 1.4rem; }
  .contact-ctas { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .delivered-caption { flex-direction: column; }
  .dc-div { height: 1px; width: 100%; }
  .call-bar { flex-direction: column; gap: 0.3rem; padding: 0.5rem 1rem; font-size: 0.7rem; }
  .call-bar span { margin-bottom: 0.2rem; }
  .call-bar a { font-size: 0.75rem; }
  .cb-sep { display: none; }
  .cb-close { right: 0.5rem; font-size: 0.8rem; }
  .nav-links { gap: 1.8rem; }
  .nav-links a { font-size: 1rem; }
  .contact-cta-btn { width: 100%; justify-content: center; font-size: 0.8rem; }
  .contact-info-list { gap: 0.5rem; }
  .ci-row { gap: 0.5rem; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .overview-pills { flex-direction: column; }
  .call-bar { font-size: 0.72rem; gap: 0.4rem; }
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section { background: var(--light2); }

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.07);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}
.faq-q:hover { background: var(--light); }
.faq-item.open .faq-q { background: var(--light); }

.faq-q span:first-child {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s var(--ease);
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
  background: var(--light);
}
.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 1.8rem 1.4rem;
  font-size: 0.86rem;
  line-height: 1.8;
  color: #555;
}
.faq-a p strong { color: var(--dark); }

@media (max-width: 600px) {
  .faq-q { padding: 1.1rem 1.2rem; }
  .faq-a p { padding: 0 1.2rem 1.1rem; }
}
