/* ============================================================
   VANTARA HERITAGE — Premium Real Estate CSS
   Palette: Deep Forest Green, Antique Gold, Ivory, Slate
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --green-dark:   #0d2818;
  --green-mid:    #1a4229;
  --green-light:  #245c3a;
  --gold:         #c8963e;
  --gold-light:   #e0b86a;
  --gold-pale:    #f5e9d0;
  --ivory:        #f9f6f0;
  --white:        #ffffff;
  --gray-light:   #f2f2f0;
  --gray-mid:     #d4d0c8;
  --gray-text:    #6b6860;
  --dark-text:    #1a1a18;
  --shadow-gold:  0 4px 32px rgba(200,150,62,.18);
  --shadow-green: 0 8px 40px rgba(13,40,24,.22);
  --radius:       4px;
  --radius-lg:    12px;
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: .05em; }
p  { font-size: .97rem; color: var(--gray-text); }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: .75rem;
}
.section-title { color: var(--green-dark); margin-bottom: 1rem; }
.section-subtitle { max-width: 900px; font-size: .95rem; }

/* ── Utility ── */
.text-gold  { color: var(--gold) !important; }
.text-green { color: var(--green-dark) !important; }
.bg-ivory   { background: var(--ivory); }
.bg-green   { background: var(--green-dark); }
.bg-gold    { background: var(--gold); }

.divider-gold {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0 1.5rem;
}
.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn-primary-vh {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 2.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--green-dark);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,62,.3);
  position: relative; overflow: hidden;
}
.btn-primary-vh::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary-vh:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,150,62,.45); }
.btn-primary-vh:hover::after { opacity: 1; }

.btn-outline-vh {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-vh:hover {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
}

.btn-white-vh {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 2.2rem;
  background: var(--white);
  color: var(--green-dark);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-white-vh:hover { background: var(--gold-pale); transform: translateY(-2px); }

/* ── HEADER / NAV ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: #ffff;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1rem 0;
}
#site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-green);
  padding: .7rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo img { height: 54px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: 1rem;
  padding: .55rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark) !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: var(--shadow-gold); }

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

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-dark);
  z-index: 998;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-mobile.open { display: flex; opacity: 1; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--ivory);
  font-weight: 300;
  letter-spacing: .08em;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden;
}
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Gradient overlay */
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,40,24,.85) 0%,
    rgba(13,40,24,.5) 60%,
    rgba(0,0,0,.2) 100%
  );
}

/* Hero slides backgrounds */
.hero-slide-1 { background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80'); }
.hero-slide-2 { background-image: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=1600&q=80'); }
.hero-slide-3 { background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1600&q=80'); }



/* .hero-content {
  position: absolute;
  inset: 0; z-index: 2;
  display: flex; 
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start;
  padding: 0 clamp(1.5rem, 8vw, 8rem);
  max-width: 1280px; margin: 0 auto;
  left: 0; 
  right: 0;

   
} */

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 0 clamp(1.5rem, 8vw, 8rem);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}


/* desktop */

@media (min-width: 992px) {

  .hero-content {
    align-items: flex-start;
    text-align: left;
    padding-left: 80px;
  }

}


/* mobile */

@media (max-width: 991px) {

  .hero-content {
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

}
.hero-tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  font-family: 'Jost', sans-serif;
  margin-bottom: 1rem;
  animation: fadeUp .8s .2s both;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.08;
  /*max-width: 700px;*/
  animation: fadeUp .8s .35s both;
}
.hero-title span { color: var(--gold-light); font-style: italic; }
.hero-location {
  display: flex; align-items: center; gap: .5rem;
  color: var(--gray-mid); font-size: .9rem;
  margin: 1rem 0 1.5rem;
  animation: fadeUp .8s .5s both;
}
.hero-location i { color: var(--gold); }
.hero-price {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white); font-size: 1.1rem; font-style: italic;
  margin-bottom: 2rem;
  animation: fadeUp .8s .6s both;
}
.hero-price strong { color: var(--gold-light); font-size: 1.4rem; }
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .8s .75s both;
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(13,40,24,.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,150,62,.25);
}
.hero-stats-inner {
  display: flex; justify-content: center;
  max-width: 960px; margin: 0 auto;
}
.hero-stat {
  flex: 1; text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(200,150,62,.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-light);
}
.hero-stat-label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray-mid);
}

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: .5rem;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ── SECTIONS ── */
/* section { padding: 5rem 0; } */
.container-vh {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}

/* ── WHY US ── */
#why-us { background: var(--ivory); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200,150,62,.12);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.why-icon i { color: var(--gold); font-size: 1.2rem; }
.why-card h4 { color: var(--green-dark); margin-bottom: .4rem; font-size: 1rem; }
.why-card p { font-size: .88rem; }

/* Project info panel */
.project-panel {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  margin-top: 5rem; padding-top: 5rem;
  border-top: 1px solid var(--gray-mid);
}
.project-panel-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.project-panel-img img { width: 100%; height: 500px; object-fit: cover; }
.project-panel-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  z-index: -1;
}
.feature-list { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.feature-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--gray-text);
}
.feature-item i { color: var(--gold); font-size: .8rem; }

/* ── HIGHLIGHTS ── */
#highlights { background: var(--green-dark); }
#highlights .section-label { color: var(--gold-light); }
#highlights .section-title { color: var(--ivory); }
#highlights p { color: var(--gray-mid); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(200,150,62,.15);
  border: 1px solid rgba(200,150,62,.15);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 3rem;
}
.highlight-item {
  background: rgba(26,66,41,.5);
  padding: 2rem 1.2rem; text-align: center;
  transition: var(--transition); cursor: default;
}
.highlight-item:hover { background: var(--green-light); }
.hi-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,150,62,.15);
  border: 1px solid rgba(200,150,62,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.highlight-item:hover .hi-icon { background: var(--gold); }
.hi-icon i { color: var(--gold); font-size: 1rem; transition: var(--transition); }
.highlight-item:hover .hi-icon i { color: var(--green-dark); }
.highlight-item h5 {
  font-family: 'Jost', sans-serif;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; color: var(--ivory);
}

/* ── AMENITIES ── */
#amenities { background: var(--ivory); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1rem;
  text-align: center;
  border: 1px solid rgba(200,150,62,.12);
  transition: var(--transition);
}
.amenity-card:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.am-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.amenity-card:hover .am-icon { background: rgba(200,150,62,.2); }
.am-icon i { color: var(--gold); font-size: 1.3rem; }
.amenity-card h5 {
  font-family: 'Jost', sans-serif;
  font-size: .82rem; font-weight: 500;
  color: var(--green-dark); transition: var(--transition);
}
.amenity-card:hover h5 { color: var(--ivory); }

/* ── LAYOUT & BROCHURE ── */
#layout-brochure { background: var(--white); }
.brochure-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}
.brochure-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-mid);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.brochure-card.green { background: var(--green-dark); border-color: var(--green-dark); }
.brochure-card.ivory { background: var(--ivory); }
.brochure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-green); }
.brochure-card h3 {
  margin-bottom: .75rem;
  color: var(--ivory);
}
.brochure-card.ivory h3 { color: var(--green-dark); }
.brochure-card p { margin-bottom: 1.5rem; color: var(--gray-mid); }
.brochure-card.ivory p { color: var(--gray-text); }
.bc-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,150,62,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.bc-icon i { color: var(--gold); font-size: 1.6rem; }

/* Price list */
.price-section {
  background: var(--green-dark);
  padding: 4rem 0; margin-top: 0;
}
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.price-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,150,62,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.price-card:hover {
  background: rgba(200,150,62,.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.price-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  font-family: 'Jost', sans-serif; margin-bottom: .5rem;
}
.price-type { font-size: .8rem; color: var(--gray-mid); margin-bottom: .5rem; }
.price-size {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--ivory);
  margin-bottom: .25rem;
}
.price-dim { font-size: .8rem; color: var(--gray-mid); margin-bottom: 1.5rem; }
.price-label {
  font-size: .78rem; color: var(--gold-light);
  margin-bottom: 1.2rem; font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--ivory); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(200,150,62,.12);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; color: var(--gold-pale);
  line-height: .5; margin-bottom: 1rem; display: block;
}
.testi-text {
  font-style: italic; font-size: .9rem; color: var(--gray-text);
  margin-bottom: 1.5rem; line-height: 1.7;
}
.testi-author { font-weight: 600; color: var(--green-dark); }
.testi-city { font-size: .82rem; color: var(--gold); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: 1rem; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; margin-top: 3rem;
}
.contact-info h3 { color: var(--green-dark); margin-bottom: 1rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--gold); }
.ci-text strong { display: block; font-size: .85rem; color: var(--green-dark); font-weight: 600; }
.ci-text span { font-size: .88rem; color: var(--gray-text); }

.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 280px; margin-top: 2rem;
  border: 1px solid var(--gray-mid);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Contact form */
.contact-form { background: var(--ivory); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: .4rem;
}
.form-control-vh {
  width: 100%; padding: .85rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif; font-size: .9rem;
  color: var(--dark-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control-vh:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,62,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
select.form-control-vh { appearance: none; cursor: pointer; }
textarea.form-control-vh { resize: vertical; min-height: 100px; }

/* ── BLOG ── */
#blog { background: var(--ivory); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,150,62,.12);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.blog-img {
  height: 200px; overflow: hidden; position: relative;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--green-dark);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 2px;
}
.blog-body { padding: 1.5rem; }
.blog-date { font-size: .78rem; color: var(--gold); margin-bottom: .5rem; }
.blog-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--green-dark);
  margin-bottom: .6rem; line-height: 1.3;
}
.blog-body p { font-size: .85rem; }
.blog-read { font-size: .78rem; font-weight: 600; color: var(--green-light); letter-spacing: .08em; display: inline-flex; align-items: center; gap: .3rem; margin-top: .8rem; transition: color var(--transition); }
.blog-card:hover .blog-read { color: var(--gold); }

/* ── FOOTER ── */
#footer {
  background: var(--white);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(200,150,62,.15);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .88rem; color: var(--dark-text); margin: 1rem 0 1.5rem; }
.footer-logo { height: 50px; width: auto; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(210, 153, 56, 0.468);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-text);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .87rem; color: var(--dark-text);
  transition: color var(--dark-text);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-newsletter { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-newsletter input {
  flex: 1; padding: .65rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(200,150,62,.2);
  border-radius: var(--radius);
  color: var(--gold); font-size: .85rem; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter button {
  padding: .65rem 1rem; background: var(--gold);
  color: var(--green-dark); border: none; border-radius: var(--radius);
  font-weight: 600; font-size: .8rem; cursor: pointer;
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-contact-item { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; }
.footer-contact-item span { font-size: .85rem; color: var(--gray-mid); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── POPUP / MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,40,24,.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px; width: 90%;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform var(--transition);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: var(--gray-light); border: none; border-radius: 50%;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--green-dark); color: var(--white); }
.modal-header-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.5rem 2rem; margin: -2.5rem -2.5rem 2rem;
}
.modal-header-strip h3 { color: var(--ivory); font-size: 1.5rem; }
.modal-header-strip p { color: var(--gray-mid); font-size: .85rem; }

/* ── ABOUT PAGE ── */
.about-hero {
  height: 380px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 80px;
}
.about-hero h1 { color: var(--ivory); }
.about-hero p { color: var(--gray-mid); margin: 1rem auto 0; max-width: 500px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed; bottom: 4rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-dark);
  border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  opacity: 0; pointer-events: none;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--gold); color: var(--green-dark); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 4rem; left: 2rem; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition); cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float i { color: white; font-size: 1.4rem; }

/* ── PAGE HERO (Inner pages) ── */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  text-align: center;
}
.page-hero h1 { color: var(--ivory); }
.page-hero p { color: var(--gray-mid); margin-top: .75rem; }
.breadcrumb-vh { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; font-size: .8rem; color: rgba(255,255,255,.5); }
.breadcrumb-vh a { color: var(--gold); }
.breadcrumb-vh span { color: rgba(255,255,255,.4); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  /* section { padding: 3.5rem 0; } */
  .project-panel { grid-template-columns: 1fr; gap: 2rem; }
  .project-panel-img::after { display: none; }
  .project-panel-img img { height: 300px; }
  .brochure-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats-inner { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(200,150,62,.15); padding: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-title { font-size: 2.4rem; }
  /*.hero-title small{ font-size: 2.4rem; }*/
}
