@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --forest-900: #0f2a1d;
  --forest-800: #143524;
  --forest-700: #1c4a32;
  --forest-600: #2a6a46;
  --forest-500: #3f8a5f;
  --gold-500: #c9a24b;
  --gold-600: #b38a34;
  --gold-300: #e5c98a;
  --cream-50: #fbf7ef;
  --cream-100: #f5eedc;
  --ink-900: #1a1a1a;
  --ink-700: #333;
  --ink-500: #5d5d5d;
  --border: #e8e0cc;
  --shadow-lg: 0 20px 50px rgba(15, 42, 29, .15);
  --shadow-md: 0 8px 24px rgba(15, 42, 29, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
 font-family: "Jost", sans-serif;
  color: var(--ink-700);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Jost", sans-serif;
  color: var(--forest-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: var(--forest-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-600); }

.text-gold { color: var(--gold-500); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--forest-900);
  color: #fff;
  padding: 8px 0;
  font-size: .85rem;
}

/* ---------- Navbar ---------- */
.cw-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.brand-mark {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-500));
  color: var(--gold-300);
  border-radius: 12px;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}
.brand-name {
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-900);
  line-height: 1;
}
.brand-tag {
  font-size: .7rem;
  color: var(--ink-500);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cw-navbar .nav-link {
  color: var(--ink-700);
  font-weight: 500;
  padding: 8px 14px !important;
  font-size: .95rem;
  position: relative;
}
.cw-navbar .nav-link:hover { color: var(--forest-700); }
.cw-navbar .nav-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--gold-500); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.cw-navbar .nav-link:hover::after { transform: scaleX(1); }

.btn-brochure {
  background: var(--forest-800);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .3s;
}
.btn-brochure:hover {
  background: var(--gold-500);
  color: var(--forest-900);
  transform: translateY(-2px);
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border: none;
  color: var(--forest-900);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(201, 162, 75, 0.35);
  transition: all .3s;
  letter-spacing: .02em;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.5);
  color: #000;
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-500);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all .3s;
}
.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--forest-900);
}
.btn-wa {
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 24px;
  border: none;
  transition: all .3s;
}
.btn-wa:hover { background: #1fb755; color: #fff; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15, 42, 29, 0.85) 0%, rgba(15, 42, 29, 0.55) 50%, rgba(15, 42, 29, 0.35) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 40px 0; }

.badge-pill-gold {
  display: inline-block;
  background: rgba(201, 162, 75, 0.18);
  color: var(--gold-300);
  border: 1px solid rgba(201, 162, 75, 0.5);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
font-size: 40px;
    color: #fff;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 28px;
  font-weight: 300;
}

.hero-price-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 22px 28px;
  border-radius: 16px;
  max-width: 760px;
  margin-bottom: 10px;
}
.hero-price-card .label {
  color: var(--gold-300);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.hero-price-card .price {
  font-family: "Jost", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}
.hero-price-card .price span {
  font-size: 1rem;
  color: var(--gold-300);
}
.hero-price-card .label-sub {
  color: rgba(255,255,255,0.75);
  font-size: .85rem;
  margin-top: 4px;
}
.hero-price-card .vr { width: 1px; align-self: stretch; background: rgba(255,255,255,0.18); }
.hero-bullets {
  list-style: none; padding: 0; margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: .9rem;
}
.hero-bullets li {
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.hero-bullets i {
  color: var(--gold-500);
  background: rgba(201, 162, 75, 0.15);
  border-radius: 999px;
  padding: 4px;
  font-size: .6rem;
}

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.gift-chip {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.25), rgba(179, 138, 52, 0.25));
  border: 1px solid rgba(201, 162, 75, 0.45);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .92rem;
  backdrop-filter: blur(10px);
}

/* Quick Register */
.quick-register {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
}
.qr-head {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  color: #fff;
  padding: 22px 26px;
  text-align: center;
}
.qr-title {
  font-family: "Jost", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.qr-sub { color: var(--gold-300); font-size: .85rem; margin-top: 4px; }
.qr-body { padding: 22px; }
.qr-body input {
  width: 100%;
  background: #fafafa;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .95rem;
  margin-bottom: 12px;
  outline: none;
  transition: all .2s;
}
.qr-body input:focus {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.1);
}
.qr-body .tiny { font-size: .72rem; color: var(--ink-500); text-align: center; }

.scroll-cue {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex; justify-content: center;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: var(--gold-300);
  border-radius: 2px;
  margin-top: 6px;
  animation: cue 2s infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.bg-cream { background: var(--cream-50); }
.section-dark { background: var(--forest-900); }
.bg-dark-forest { background: linear-gradient(135deg, var(--forest-900), var(--forest-800)); }

.kicker {
  display: inline-block;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.kicker::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 20px; height: 2px; background: var(--gold-500);
}
.kicker-light { color: var(--gold-300); }
.kicker-light::before { background: var(--gold-500); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 600;
}

.lead-text {
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ---------- Overview ---------- */
.feature-check { list-style: none; padding: 0; margin: 24px 0; }
.feature-check li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-weight: 500;
  color: var(--ink-700);
}
.feature-check li i {
  color: var(--forest-600);
  margin-right: 12px;
  font-size: 1.1rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.og-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  transition: transform .4s;
}
.og-card:nth-child(even) { transform: translateY(24px); }
.og-card:hover { transform: translateY(-6px); }
.og-card:nth-child(even):hover { transform: translateY(18px); }
.og-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.og-card:hover img { transform: scale(1.08); }
.og-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(15, 42, 29, 0.85));
  color: #fff;
}
.og-text b { display: block; font-family: "Jost", sans-serif; font-size: 1.05rem; }
.og-text span { font-size: .8rem; opacity: 0.9; }

/* ---------- Feature Cards ---------- */
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px 24px;
  height: 100%;
  transition: all .4s;
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  background: rgba(201, 162, 75, 0.08);
  border-color: rgba(201, 162, 75, 0.4);
  transform: translateY(-8px);
}
.fc-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--forest-900);
  font-size: 1.5rem;
  border-radius: 14px;
  margin-bottom: 20px;
}
.feature-card h5 {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: rgba(255,255,255,0.7);
  font-size: .92rem;
  margin: 0;
}

/* ---------- Perfect For (Use Cases) ---------- */
.perfect-for {
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 162, 75, 0.08), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(63, 138, 95, 0.08), transparent 50%),
    #fff;
  position: relative;
}
.perfect-for::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,42,29,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,29,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.perfect-for > .container { position: relative; z-index: 1; }

.pf-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 42, 29, 0.08);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .4s ease;
}
.pf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(15, 42, 29, 0.18);
  border-color: var(--gold-500);
}
.pf-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.pf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.pf-card:hover .pf-img img { transform: scale(1.08); }
.pf-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 42, 29, 0.1), rgba(15, 42, 29, 0.5));
}
.pf-num {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-300);
  background: rgba(15, 42, 29, 0.7);
  backdrop-filter: blur(10px);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 162, 75, 0.4);
}
.pf-body {
  padding: 28px 24px 26px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pf-icon {
  width: 52px; height: 52px;
  margin-top: -50px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--forest-900);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
  position: relative;
  z-index: 2;
}
.pf-body h5 {
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  color: var(--forest-900);
  margin-bottom: 10px;
  font-weight: 700;
}
.pf-body p {
  color: var(--ink-700);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.pf-body p b { color: var(--forest-800); font-weight: 600; }
.pf-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold-600);
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  transition: gap .3s ease, color .3s ease;
  gap: 0;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  width: 100%;
}
.pf-link:hover {
  color: var(--forest-700);
  gap: 6px;
}
.pf-link i { transition: transform .3s ease; }
.pf-link:hover i { transform: translateX(4px); }

/* ---------- Exit-Intent Modal ---------- */
.exit-modal {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  padding: 10px;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.exit-visual {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
}
.exit-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.exit-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,42,29,0.85), rgba(15,42,29,0.55));
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.exit-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold-500);
  color: var(--forest-900);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.exit-visual-overlay h3 {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
}
.exit-visual-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: .95rem;
  margin: 0;
}
.exit-body {
    padding: 40px 15px 32px;
    background: #fff;
}
.exit-title {
  font-family: "Jost", sans-serif;
  color: var(--forest-900);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.exit-title .count-up { color: var(--gold-600); }
.exit-sub {
  color: var(--ink-700);
  margin-bottom: 22px;
  font-size: .96rem;
}
.exit-sub b { color: var(--forest-800); }
.exit-form input {
  width: 100%;
  background: #fafafa;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .95rem;
  margin-bottom: 10px;
  outline: none;
  transition: all .2s;
}
.exit-form input:focus {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.1);
}
.exit-form .tiny { font-size: .72rem; color: var(--ink-500); }
.exit-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: .82rem;
  color: var(--ink-500);
}

/* Success state reuse (inside exit) */
.exit-form.done { display: none; }
.exit-success {
  text-align: center;
  padding: 10px 0;
}
.exit-success i {
  font-size: 3rem; color: #2bae66;
  margin-bottom: 10px;
}
.exit-success h5 {
  font-family: "Jost", sans-serif;
  color: var(--forest-900);
}

@media (max-width: 767px) {
  .exit-body { padding: 30px 22px 24px; }
  .exit-title { font-size: 1.5rem; }
}

/* ---------- Price Cards ---------- */
.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.price-card:hover { transform: translateY(-8px); }
.price-card.dark {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-700));
  color: #fff;
  border-color: var(--forest-700);
}
.price-card.dark h3,
.price-card.dark .pc-area,
.price-card.dark .pc-price,
.price-card.dark .pc-head p,
.price-card.dark .pc-list li { color: #fff; }
.pc-head { border-bottom: 1px dashed var(--border); padding-bottom: 18px; margin-bottom: 18px; }
.price-card.dark .pc-head { border-color: rgba(255,255,255,0.18); }
.pc-tag {
  display: inline-block;
  background: var(--gold-500);
  color: var(--forest-900);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pc-tag-light { background: rgba(201, 162, 75, 0.25); color: var(--gold-300); }
.pc-head h3 { font-size: 1.6rem; margin: 0; }
.pc-head p { font-size: .85rem; color: var(--ink-500); margin: 4px 0 0; }
.pc-area {
  font-family: "Jost", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest-800);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-area span { font-size: 1rem; font-weight: 400; color: var(--ink-500); }
.pc-price {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 18px;
}
.pc-price small { font-size: .8rem; color: var(--ink-500); }
.price-card.dark .pc-price { color: var(--gold-300); }
.price-card.dark .pc-price small { color: rgba(255,255,255,0.6); }
.pc-list { list-style: none; padding: 0; margin-bottom: 22px; }
.pc-list li {
  padding: 6px 0;
  font-size: .92rem;
  color: var(--ink-700);
}
.pc-list li i {
  color: var(--forest-500);
  margin-right: 10px;
}
.price-card.dark .pc-list li i { color: var(--gold-300); }

/* ---------- Plan ---------- */
.plan-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.plan-frame img { width: 100%; display: block; }
.plan-chip {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  color: var(--forest-900);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Location ---------- */
.loc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: all .3s;
}
.loc-card:hover {
  background: rgba(201, 162, 75, 0.08);
  border-color: var(--gold-500);
  transform: translateY(-4px);
}
.loc-card i {
  color: var(--gold-500);
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.loc-card h5 {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.loc-card p {
  color: rgba(255,255,255,0.7);
  font-size: .9rem;
  margin: 0;
}

.map-frame {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.08);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

/* ---------- Amenities ---------- */
.amen {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  height: 100%;
  transition: all .3s;
}
.amen:hover {
  border-color: var(--gold-500);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.amen i {
  font-size: 1.8rem;
  color: var(--forest-600);
  margin-bottom: 10px;
  display: block;
}
.amen span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.g-item:hover img { transform: scale(1.1); }
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(15, 42, 29, 0.75));
  opacity: 0; transition: opacity .3s;
}
.g-item:hover::after { opacity: 1; }
.g-label {
  position: absolute;
  bottom: 14px; left: 14px;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0; transform: translateY(10px);
  transition: all .3s;
}
.g-item:hover .g-label { opacity: 1; transform: translateY(0); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1426604966848-d7adac402bff?auto=format&fit=crop&w=1600&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(1px);
}
.cta-strip > * { position: relative; }
.text-white-70 { color: rgba(255,255,255,0.75); }
.text-white-60 { color: rgba(255,255,255,0.6); }

/* ---------- About ---------- */
.about-img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.stat-row {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.stat-row h3 {
  font-size: 2rem;
  color: var(--gold-600);
  margin: 0;
}
.stat-row p {
  font-size: .82rem;
  color: var(--ink-500);
  margin: 2px 0 0;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    linear-gradient(135deg, rgba(15, 42, 29, 0.88), rgba(15, 42, 29, 0.88)),
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
  padding: 80px 0;
  text-align: center;
}

/* ---------- Footer ---------- */
.cw-footer {
  background: #0a1f14;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.cw-footer h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
}
.cw-footer ul li { padding: 5px 0; }
.cw-footer ul a { color: rgba(255,255,255,0.7); }
.cw-footer ul a:hover { color: var(--gold-300); }
.cw-footer a { color: rgba(255,255,255,0.85); }

/* ---------- Floating Actions ---------- */
.floating-actions {
  position: fixed;
  right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999;
}
.fa-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-800);
  font-size: 1.15rem;
  transition: all .3s;
  position: relative;
}
.fa-btn span {
  position: absolute;
  right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--forest-900);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  white-space: nowrap;
}
.fa-btn:hover span { opacity: 1; }
.fa-btn:hover { transform: scale(1.1); color: var(--forest-900); }
.fa-call { background: var(--forest-700); color: #fff; }
.fa-call:hover { background: var(--forest-900); color: #fff; }
.fa-enq { background: var(--gold-500); color: var(--forest-900); }
.fa-enq:hover { background: var(--gold-600); color: #fff; }
.fa-wa { background: #25D366; color: #fff; }
.fa-wa:hover { background: #1fb755; color: #fff; }

/* ---------- Modal ---------- */
.modal-enquire {
  border: none;
  border-radius: 22px;
  overflow: hidden;
}
.modal-enquire .modal-title {
  font-family: "Jost", sans-serif;
  color: var(--forest-900);
  font-weight: 700;
}
.modal-enquire .form-control,
.modal-enquire .form-select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .95rem;
}
.modal-enquire .form-control:focus,
.modal-enquire .form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.1);
}
.success-box {
  text-align: center; padding: 20px 10px;
}
.success-box i {
  font-size: 3rem;
  color: #2bae66;
  margin-bottom: 14px;
}
.success-box h5 {
  font-family: "Jost", sans-serif;
  color: var(--forest-900);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-price-card { flex-direction: column; align-items: flex-start; padding: 20px; }
  .hero-price-card .vr { display: none; }
  .section { padding: 64px 0; }
  .overview-grid .og-card:nth-child(even) { transform: none; }
  .overview-grid .og-card:nth-child(even):hover { transform: translateY(-6px); }
}
@media (max-width: 575px) {
  .hero { padding-top: 100px; }
  .hero-ctas .btn { width: 100%; }
  .stat-row { flex-wrap: wrap; gap: 20px; }
  .overview-grid { grid-template-columns: 1fr; }
}




.modal-content{
width: 70%;
display: block;
margin: auto;
}