/* ============================================================
   GOA GUMANTUNG — MAIN STYLESHEET
   Premium Eco-Tourism Website
   ============================================================ */

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

:root {
  --teal:       #0B6E6E;
  --teal-dark:  #085454;
  --teal-light: #12919C;
  --green:      #4CAF50;
  --gold:       #E6C068;
  --gold-dark:  #C9A848;
  --bg:         #F8FAF8;
  --white:      #ffffff;
  --text:       #1E293B;
  --text-muted: #64748B;
  --border:     rgba(11,110,110,0.12);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 12px rgba(11,110,110,.08);
  --shadow-md:  0 8px 32px rgba(11,110,110,.12);
  --shadow-lg:  0 20px 60px rgba(11,110,110,.18);

  --trans: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #16a34a 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(11,110,110,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11,110,110,.45);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--text);
  box-shadow: 0 6px 24px rgba(230,192,104,.4);
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230,192,104,.5);
}

.btn-full { width: 100%; justify-content: center; }

.mt-btn { margin-top: 28px; }

/* ── FADE IN ANIMATION ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }
.fade-in:nth-child(5) { transition-delay: .4s; }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--trans);
}

#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--trans);
  letter-spacing: .04em;
}

.logo-sub {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--trans);
}

#navbar.scrolled .logo-main { color: var(--teal); }
#navbar.scrolled .logo-sub  { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--trans);
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.12); }

#navbar.scrolled .nav-links a { color: var(--text-muted); }
#navbar.scrolled .nav-links a:hover { color: var(--teal); background: rgba(11,110,110,.06); }

/* Last nav link as CTA */
.nav-links a:last-child {
  background: linear-gradient(135deg, var(--teal) 0%, #16a34a 100%);
  color: var(--white) !important;
  padding: 8px 18px;
}

.nav-links a:last-child:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11,110,110,.3);
  background: linear-gradient(135deg, var(--teal-dark) 0%, #15803d 100%) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

#navbar.scrolled .hamburger span { background: var(--text); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(5,40,40,.6) 0%,
    rgba(5,40,40,.4) 50%,
    rgba(5,40,40,.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  animation: heroUp 1s ease .3s both;
}

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

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.87);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}

.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 100px;
  line-height: 1.3;
}

.about-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(11,110,110,.05);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.feature-icon {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   STATS
============================================================ */
.stats {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat-card:last-child { border-right: none; }

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--gold);
  opacity: .9;
}

.stat-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-prefix {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: rgba(255,255,255,.6);
  line-height: 1;
}

.stat-number, .stat-text {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.stat-unit {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 6px 0 8px;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   ACTIVITIES
============================================================ */
.activities { background: var(--bg); }

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

.activity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
  border: 1px solid rgba(0,0,0,.05);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.activity-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.activity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.activity-card:hover .activity-img { transform: scale(1.08); }

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,40,40,.6), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--trans);
}

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

.act-arrow {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.activity-body {
  padding: 24px;
}

.activity-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(11,110,110,.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.activity-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
}

.activity-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.act-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--trans);
}

.act-link:hover { gap: 10px; }

/* ============================================================
   WHY VISIT
============================================================ */
.why {
  background: linear-gradient(180deg, var(--white) 0%, #EEF7F5 100%);
}

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

.why-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--trans);
}

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

.why-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(11,110,110,.1), rgba(76,175,80,.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--trans);
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--teal), var(--green));
}

.why-icon {
  font-size: 1.6rem;
  color: var(--teal);
  transition: color var(--trans);
}

.why-card:hover .why-icon { color: var(--white); }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.why-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-tall img { height: 452px; }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { height: 220px; }

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

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,40,40,.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--trans);
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-caption span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
}

/* ============================================================
   MASTERPLAN
============================================================ */
.masterplan { background: var(--white); }

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

.mp-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all var(--trans);
  position: relative;
}

.mp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  background: var(--white);
}

.mp-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(11,110,110,.12), rgba(76,175,80,.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--trans);
}

.mp-card:hover .mp-icon-wrap {
  background: linear-gradient(135deg, var(--teal), var(--green));
}

.mp-icon {
  font-size: 1.4rem;
  color: var(--teal);
  transition: color var(--trans);
}

.mp-card:hover .mp-icon { color: var(--white); }

.mp-phase {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.mp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.mp-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   INVESTMENT
============================================================ */
.investment {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.investment-bg {
  position: absolute;
  inset: 0;
}

.inv-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,30,30,.92) 0%,
    rgba(8,50,50,.88) 60%,
    rgba(5,30,30,.92) 100%
  );
}

.investment-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.inv-header { grid-column: 1 / -1; text-align: center; }

.inv-label { color: var(--gold) !important; }

.inv-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.inv-title em {
  font-style: italic;
  color: var(--gold);
}

.inv-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.inv-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.inv-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.inv-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.inv-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.inv-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

.inv-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

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

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

.transport-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.transport-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(11,110,110,.15);
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-content h4 i { color: var(--teal); }

.step-content p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.location-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: .95rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--trans);
}

.contact-channel:hover {
  border-color: var(--teal);
  background: rgba(11,110,110,.03);
  transform: translateX(4px);
}

.ch-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
}

.ch-icon.wa    { background: #25D366; }
.ch-icon.email { background: var(--teal); }
.ch-icon.ig    { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ch-icon.tt    { background: #000; }
.ch-icon.loc   { background: var(--gold-dark); }

.ch-text { display: flex; flex-direction: column; }
.ch-label { font-size: .72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.ch-value { font-size: .92rem; font-weight: 500; color: var(--text); }

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,110,110,.08);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-loc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: all var(--trans);
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-links h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
}

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

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: all var(--trans);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   LIGHTBOX OVERRIDES
============================================================ */
.lb-outerContainer { border-radius: var(--radius-md); }
.lb-dataContainer  { border-radius: 0 0 var(--radius-md) var(--radius-md); }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
============================================================ */
@media (max-width: 1024px) {
  .stats-grid        { grid-template-columns: repeat(3, 1fr); }
  .stat-card:nth-child(3) { border-right: none; }
  .stat-card:nth-child(4),
  .stat-card:nth-child(5) { border-top: 1px solid rgba(255,255,255,.12); }

  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .masterplan-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
  .gallery-tall img  { height: 340px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(0,0,0,.12);
    transition: right var(--trans);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text-muted) !important;
    font-size: 1rem;
    width: 100%;
    padding: 12px 16px;
  }

  .nav-links a:last-child {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }

  /* About */
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-img     { height: 380px; }
  .about-badge   { right: 0; bottom: -20px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }

  /* Activities */
  .activities-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-tall        { grid-row: span 1; }
  .gallery-tall img    { height: 200px; }
  .gallery-wide        { grid-column: span 2; }

  /* Masterplan */
  .masterplan-grid { grid-template-columns: 1fr; }

  /* Investment */
  .investment-content { grid-template-columns: 1fr; gap: 40px; }
  .inv-header { grid-column: 1; }
  .inv-cta    { grid-column: 1; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .form-row        { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* WhatsApp */
  .wa-float   { width: 52px; height: 52px; bottom: 24px; right: 24px; font-size: 1.4rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY UNIQUE + HOW BIG
============================================================ */
.unique { background: var(--white); }

.unique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.unique-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.unique-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
}

.ul-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.ul-check i {
  font-size: .65rem;
  color: var(--white);
}

/* Scale visual */
.scale-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0 20px;
  flex-wrap: wrap;
}

.scale-prefix {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--teal-light);
  opacity: .6;
}

.scale-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.scale-unit-lbl {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.scale-eq {
  font-size: 2.4rem;
  color: var(--text-muted);
  font-weight: 300;
}

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

/* Football field grid */
.field-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
  max-width: 340px;
}

.field-sq {
  width: 26px;
  height: 17px;
  background: linear-gradient(135deg, #4CAF50, #2d7a38);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}

.field-sq::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.3);
  transform: translateY(-50%);
}

.field-sq--last {
  background: linear-gradient(135deg, rgba(76,175,80,.35), rgba(45,122,56,.35));
  border-style: dashed;
}

.scale-note {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
}

/* ============================================================
   STORY / LEGEND
============================================================ */
.story { background: #F0F7F5; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-img-caption {
  margin-top: 12px;
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.story-entry {
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--teal);
}

.story-entry h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-entry p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.story-entry p em {
  font-style: italic;
  color: var(--text);
}

/* ============================================================
   WILDLIFE
============================================================ */
.wildlife { background: var(--white); }

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

.wildlife-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all var(--trans);
}

.wildlife-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  background: var(--white);
}

.wildlife-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}

.wildlife-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 14px;
}

.wildlife-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wildlife-list li {
  font-size: .82rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.wildlife-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: .75rem;
}

.wildlife-disclaimer {
  margin-top: 40px;
  font-size: .8rem;
  color: var(--text-muted);
  background: rgba(11,110,110,.05);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.wildlife-disclaimer i {
  color: var(--teal-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   SUNSET
============================================================ */
.sunset {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.sunset-bg {
  position: absolute;
  inset: 0;
}

.sunset-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.sunset-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(5,25,25,.65) 0%,
    rgba(20,60,40,.55) 50%,
    rgba(5,25,25,.7) 100%
  );
}

.sunset-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.sunset-label { color: var(--gold) !important; }

.sunset-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sunset-title em {
  font-style: italic;
  color: var(--gold);
}

.sunset-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.85;
  font-style: italic;
}

/* ============================================================
   TODAY → TOMORROW VISION
============================================================ */
.vision { background: #F0F7F5; }

.vision-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.vision-side {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.vision-today { border-color: rgba(11,110,110,.25); }
.vision-tomorrow { border-color: rgba(230,192,104,.4); }

.vision-header-side {
  margin-bottom: 28px;
}

.vision-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.today-tag {
  background: rgba(11,110,110,.1);
  color: var(--teal);
}

.tomorrow-tag {
  background: rgba(230,192,104,.15);
  color: var(--gold-dark);
}

.vision-header-side h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 6px;
}

.vision-header-side p {
  font-size: .85rem;
  color: var(--text-muted);
}

.vision-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vision-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.vision-today .vision-list li i {
  color: var(--teal);
  width: 16px;
  flex-shrink: 0;
}

.vision-tomorrow .vision-list li i {
  color: var(--gold-dark);
  width: 16px;
  flex-shrink: 0;
}

.vision-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.vision-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

.vision-arr-icon {
  font-size: 1.8rem;
  color: var(--teal);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(5px); opacity: .7; }
}

/* ============================================================
   SITE MAP
============================================================ */
.sitemap { background: var(--white); }

.sitemap-wrap { margin-top: 0; }

.sitemap-canvas {
  position: relative;
  background: linear-gradient(155deg, #2d6a30 0%, #3d8b45 40%, #4CAF50 70%, #2d7a38 100%);
  border-radius: var(--radius-lg);
  min-height: 500px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px dashed rgba(255,255,255,.2);
}

/* Forest texture dots */
.sitemap-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
}

/* Lake */
.sm-lake {
  position: absolute;
  top: 22%;
  left: 22%;
  width: 56%;
  height: 52%;
  background: radial-gradient(ellipse at 38% 38%, #38bdf8 0%, #0284c7 40%, var(--teal) 75%, var(--teal-dark) 100%);
  border-radius: 45% 55% 42% 58% / 52% 44% 56% 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 40px rgba(0,0,0,.3),
    inset 0 4px 20px rgba(255,255,255,.15),
    0 0 0 6px rgba(56,189,248,.15);
  animation: lakePulse 5s ease-in-out infinite;
}

@keyframes lakePulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(0,0,0,.3), inset 0 4px 20px rgba(255,255,255,.15), 0 0 0 6px rgba(56,189,248,.15); }
  50% { box-shadow: 0 8px 40px rgba(0,0,0,.3), inset 0 4px 20px rgba(255,255,255,.15), 0 0 0 16px rgba(56,189,248,.05); }
}

.sm-lake-inner {
  text-align: center;
  color: var(--white);
}

.sm-lake-name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(.85rem, 1.8vw, 1.1rem);
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.sm-lake-stat {
  display: block;
  font-size: clamp(.65rem, 1.2vw, .8rem);
  color: rgba(255,255,255,.8);
  margin-top: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* Markers */
.sm-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 2;
}

.sm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

.sm-dot.green { background: #22c55e; }
.sm-dot.gold  { background: var(--gold); }
.sm-dot.teal  { background: #38bdf8; }
.sm-dot.gray  { background: #94a3b8; }

.sm-marker-box {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.92);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.sm-marker-box.right-label { flex-direction: row-reverse; }

.sm-marker-icon { font-size: .9rem; line-height: 1; }

.sm-marker-label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}

/* Compass */
.sm-compass {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255,255,255,.85);
}

.compass-n {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.compass-icon {
  font-size: 1.1rem;
  transform: rotate(-45deg);
}

/* Scale label */
.sm-scale {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.25);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Legend */
.sitemap-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  padding: 0 4px;
}

.sitemap-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--text-muted);
}

.leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.leg-dot.green { background: #22c55e; }
.leg-dot.gold  { background: var(--gold); }
.leg-dot.teal  { background: #38bdf8; }
.leg-dot.gray  { background: #94a3b8; }

.sitemap-note {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   CINEMATIC GALLERY
============================================================ */
.gallery { background: var(--bg); overflow: hidden; }

.cinema-gallery {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cinema-row {
  display: flex;
  gap: 4px;
  height: 320px;
}

.cinema-row--equal .cinema-cell { flex: 1; }

.cinema-cell {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: block;
  cursor: pointer;
}

.cinema-feature { flex: 2; }
.cinema-wide    { flex: 2; }

.cinema-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cinema-col .cinema-cell { flex: 1; }

.cinema-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}

.cinema-cell:hover img { transform: scale(1.06); }

.cinema-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,40,40,.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity var(--trans);
}

.cinema-cell:hover .cinema-cap { opacity: 1; }

.cinema-cap span {
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.cinema-cap i {
  color: var(--gold);
  font-size: .9rem;
}

/* ============================================================
   INVESTMENT — ACTIONS + PROSPECTUS
============================================================ */
.inv-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.btn-prospectus {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: var(--white);
  transition: all var(--trans);
  max-width: 460px;
  width: 100%;
}

.btn-prospectus:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-prospectus > .fa-file-pdf {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.prosp-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prosp-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
}

.prosp-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.prosp-arrow {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  flex-shrink: 0;
}

/* ============================================================
   FLOATING PLAN YOUR VISIT
============================================================ */
.pyv-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.pyv-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, #16a34a 100%);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(11,110,110,.45);
  transition: all var(--trans);
}

.pyv-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(11,110,110,.55);
}

.pyv-icon-close { display: none; }
.pyv-float.open .pyv-icon-main  { display: none; }
.pyv-float.open .pyv-icon-close { display: block; }

.pyv-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);

  opacity: 0;
  transform: translateY(12px) scale(.97);
  pointer-events: none;
  transition: all .25s cubic-bezier(.175,.885,.32,1.275);
}

.pyv-float.open .pyv-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pyv-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--trans);
  white-space: nowrap;
}

.pyv-option:hover { background: var(--bg); }

.pyv-opt-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}

.pyv-opt-icon.wa    { background: #25D366; }
.pyv-opt-icon.maps  { background: #4285F4; }
.pyv-opt-icon.email { background: var(--teal); }
.pyv-opt-icon.tt    { background: #000; }

/* ============================================================
   RESPONSIVE — NEW SECTIONS (≤1024px)
============================================================ */
@media (max-width: 1024px) {
  .unique-grid    { grid-template-columns: 1fr; gap: 48px; }
  .story-grid     { grid-template-columns: 1fr; gap: 40px; }
  .story-img      { height: 360px; }
  .wildlife-grid  { grid-template-columns: repeat(2, 1fr); }
  .vision-split   { grid-template-columns: 1fr; }
  .vision-arrow   { display: none; }
  .sitemap-canvas { min-height: 420px; }
  .cinema-row     { height: 260px; }
}

@media (max-width: 768px) {
  .wildlife-grid   { grid-template-columns: 1fr; }
  .cinema-row      { height: 200px; flex-direction: column; }
  .cinema-row--equal { flex-direction: row; height: 160px; }
  .cinema-col      { flex-direction: row; }
  .cinema-feature  { flex: 1; }
  .cinema-wide     { flex: 1; }
  .sitemap-canvas  { min-height: 340px; }
  .sm-marker-label { font-size: .6rem; }
  .sm-lake-name    { font-size: .8rem; }
  .sm-lake-stat    { display: none; }
  .field-grid      { max-width: 100%; }
  .scale-block     { gap: 12px; }
  .inv-actions     { align-items: stretch; }
  .btn-prospectus  { max-width: 100%; }
  .pyv-float       { bottom: 24px; right: 20px; }
  .pyv-label       { display: none; }
  .pyv-trigger     { padding: 14px 16px; }
  .music-float     { bottom: 24px; left: 20px; }
}

/* ============================================================
   MUSIC PLAYER
============================================================ */
.music-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Tooltip label above the button */
.music-tooltip {
  background: rgba(15, 23, 42, .85);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.music-float:hover .music-tooltip,
.music-float.playing .music-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Main circular button */
.music-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #16a34a 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(11,110,110,.4);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.music-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s ease;
  border-radius: 50%;
}

.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(11,110,110,.55);
}

.music-btn:hover::before {
  background: rgba(255,255,255,.08);
}

/* Muted state */
.music-float.muted .music-btn {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* Equalizer bars */
.music-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  transition: opacity .3s ease;
}

.eq-bar {
  width: 3px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: bottom;
  animation: eqBounce .9s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 10px; animation-duration: .8s;  animation-delay: 0s;    }
.eq-bar:nth-child(2) { height: 18px; animation-duration: .6s;  animation-delay: .15s;  }
.eq-bar:nth-child(3) { height: 13px; animation-duration: 1.0s; animation-delay: .05s;  }
.eq-bar:nth-child(4) { height: 16px; animation-duration: .7s;  animation-delay: .25s;  }

@keyframes eqBounce {
  0%, 100% { transform: scaleY(.35); opacity: .7; }
  50%       { transform: scaleY(1);  opacity: 1;  }
}

/* Pause the equalizer when muted */
.music-float.muted .eq-bar {
  animation-play-state: paused;
  transform: scaleY(.35);
  opacity: .4;
}

/* Hide eq / show mute icon based on state */
.music-off-icon {
  position: absolute;
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.music-float.muted .music-eq     { opacity: 0; }
.music-float.muted .music-off-icon { opacity: 1; }
