/* ============================================================
   SIMILIPAL JUNGLE RESORT — style.css
   Full-page one-at-a-time section scroll with animated transitions
============================================================ */

/* ── 1. CSS VARIABLES ── */
:root {
  --forest-deep: #0a1a0c;
  --forest-dark: #0f2012;
  --forest-mid: #1a3a1d;
  --forest-moss: #2d5a30;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --dur: 900ms;
}

/* ── 2. RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  /* Removed global overflow: hidden which broke rooms.php */
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  background: var(--forest-deep);
}

/* ── 3. VIEWPORT CONTAINER ── */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

#fp-container {
  position: relative;
  width: 100%;
}

/* ── 4. SLIDES WRAPPER ── */
#fp-wrapper {
  position: relative;
  width: 100%;
}

/* ── 5. INDIVIDUAL SLIDE BASE ── */
.fp-slide {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: clamp(5rem, 12vh, 8.5rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Active/visible slide marker for JS Observer reveals */
.fp-slide.is-current {
  z-index: 10;
}

/* ── 6. PROGRESS BAR ── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.7);
  transition: width var(--dur) var(--ease);
  z-index: 1001;
}

/* ── 7. NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 26, 12, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, padding 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

#menu-toggle {
  display: none;
}

#navbar.scrolled {
  background: rgba(10, 26, 12, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 168, 76, 0.2);
  padding: 0.5rem 3rem;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  cursor: pointer;
  user-select: none;
}

.nav-brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  display: block;
}

.nav-brand span {
  color: var(--cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 0.25s, color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}



/* ── 8. DOT NAVIGATION ── */
#dot-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.25);
  cursor: pointer;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.dot::after {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.dot:hover::after {
  opacity: 1;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.6);
}

/* ── 9. SLIDE COUNTER ── */
#slide-counter {
  position: fixed;
  left: 2.5rem;
  bottom: 2.5rem;
  z-index: 900;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.35);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

#slide-counter .cur {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

/* ── 10. ARROW HINT ── */
#arrow-hint {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.5s;
}

#arrow-hint span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.arrow-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
}

#arrow-hint.hide {
  opacity: 0;
  pointer-events: none;
}

/* ── 11. SHARED COMPONENTS ── */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.gold-line {
  display: block;
  width: 55px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 0;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* Reveal animations triggered when slide becomes .is-current */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.d1 {
  transition-delay: 0.10s;
}

.reveal.d2 {
  transition-delay: 0.22s;
}

.reveal.d3 {
  transition-delay: 0.35s;
}

.reveal.d4 {
  transition-delay: 0.48s;
}

/* Fire reveal when slide is active */
.fp-slide.is-current .reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-gold {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.45);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
}

/* ══════════════════════════════════════════
   SLIDE-SPECIFIC STYLES
══════════════════════════════════════════ */

/* ── SLIDE 0 — HERO ── */
#slide-0 {
  background: var(--forest-deep);
}

.hero-bg {
  position: absolute;
  inset: -8%;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=85') center/cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.12)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 12, 0.4), rgba(10, 26, 12, 0.15) 50%, rgba(10, 26, 12, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.8rem, 9.5vw, 8.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--warm-white);
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.78);
  margin-top: 1.2rem;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: clamp(1rem, 3vh, 2.5rem) auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.leaf {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: leafFall linear infinite;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(-60px) rotate(0deg);
  }

  8% {
    opacity: 0.7;
  }

  92% {
    opacity: 0.35;
  }

  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(600deg) translateX(90px);
  }
}

/* ── SLIDE 1 — WELCOME ── */
#slide-1 {
  background: var(--forest-dark);
}

#slide-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(45, 90, 48, 0.18), transparent 65%);
  pointer-events: none;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  width: 100%;
  max-width: 1220px;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.welcome-body {
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(245, 240, 232, 0.72);
  margin-top: 1.4rem;
}


.stats-section {
  background: url('images/leaf.webp') no-repeat center center/cover;
  padding: clamp(60px, 12vh, 180px) clamp(20px, 5vw, 100px);
  position: relative;
}

/* Optional overlay for better readability */
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); dark overlay */
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 168, 76, 0.18);
}

.stat-box {
  background: rgba(10, 26, 12, 0.92);
  padding: 2.2rem;
  text-align: center;
  transition: background 0.35s;
}

.stat-box:hover {
  background: rgba(45, 90, 48, 0.28);
}

.stat-num {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 3.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.42);
  margin-top: 0.4rem;
}

/* Responsive adjustments for stats section */
@media (max-width: 1200px) {
  .stats-section {
    padding: 120px 60px;
  }
}

@media (max-width: 992px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-section {
    padding: 100px 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .welcome-grid {
    padding: 0 1.5rem;
  }

  .stats-section {
    padding: 60px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 1.5rem;
  }

  .stat-num {
    font-size: 2.5rem;
  }
}

/* ── SLIDE 2 — EXPERIENCES ── */
#slide-2 {
  background: var(--forest-deep);
}

.exp-grid-full {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.exp-col {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.exp-col .exp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.exp-col:hover .exp-bg {
  transform: scale(1.1);
}

.exp-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.96) 0%, rgba(10, 26, 12, 0.4) 55%, rgba(10, 26, 12, 0.1) 100%);
  transition: background 0.5s;
}

.exp-col:hover::after {
  background: linear-gradient(to top, rgba(10, 26, 12, 0.98) 0%, rgba(10, 26, 12, 0.6) 65%, rgba(10, 26, 12, 0.3) 100%);
}

.exp-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
}

.exp-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.exp-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
}

.exp-desc {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s, opacity 0.5s;
}

.exp-col:hover .exp-desc {
  max-height: 90px;
  opacity: 1;
}

.exp-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  transition: color 0.4s;
}

.exp-col:hover .exp-num {
  color: rgba(201, 168, 76, 0.32);
}

.exp-slide-header {
  position: absolute;
  top: 9.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  width: 100%;
  padding: 0 1rem;
}

/* ── SLIDE 3 — ACCOMMODATIONS ── */
#slide-3 {
  background: var(--forest-dark);
  display: block;
  /* Allow content to flow naturally */
  padding-bottom: 5rem;
}

/* Custom Scrollbar for better UI */
#slide-3::-webkit-scrollbar {
  width: 6px;
}

#slide-3::-webkit-scrollbar-track {
  background: var(--forest-deep);
}

#slide-3::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.rooms-wrap {
  width: 100%;
  max-width: 1260px;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.rooms-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* More Rooms functionality */
.more-rooms-wrap {
  display: none;
  /* Hidden by default */
  justify-content: center;
  margin-top: 2rem;
}

.room-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  background: rgba(15, 32, 18, 0.9);
  transition: border-color 0.35s, transform 0.35s;
}

.room-card:hover {
  border-color: rgba(201, 168, 76, 0.55);
  transform: translateY(-6px);
}

.room-img {
  height: 195px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: var(--gold);
  color: var(--forest-deep);
}

.room-body {
  padding: 1.4rem;
}

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.35rem;
}

.room-desc {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--gold);
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--warm-white);
}

.room-price small {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  color: rgba(245, 240, 232, 0.38);
}

/* ── SLIDE 4 — GALLERY ── */
#slide-4 {
  background: var(--forest-deep);
}

.gallery-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.g-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.g-cell .g-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.g-cell:hover .g-bg {
  transform: scale(1.08);
}

.g-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 12, 0);
  transition: background 0.4s;
}

.g-cell:hover::after {
  background: rgba(10, 26, 12, 0.28);
}

.g-tall {
  grid-row: span 2;
}

.gallery-label-box {
  position: absolute;
  top: 9.5rem;
  /* Position below navbar */
  left: 4rem;
  z-index: 10;
  pointer-events: none;
}

/* ── SLIDE 5 — TESTIMONIALS ── */
#slide-5 {
  background: var(--forest-mid);
}

#slide-5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1511497584788-876760111969?w=1400&q=40') center/cover;
  opacity: 0.07;
  pointer-events: none;
}

/* ── Testimonial Carousel ── */
.testi-wrap {
  width: 100%;
  max-width: 1200px;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.testimonial-carousel {
  margin-top: 3.5rem;
  position: relative;
  padding: 0 4rem;
  /* Space for arrows */
}

.testi-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3.5rem 4rem;
  background: rgba(10, 26, 12, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  border-radius: 4px;
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.2em;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testi-author {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Custom Carousel Controls */
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
}

.testimonial-carousel .carousel-control-prev:hover,
.testimonial-carousel .carousel-control-next:hover {
  opacity: 1;
  background: rgba(201, 168, 76, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-carousel .carousel-control-prev {
  left: 0;
}

.testimonial-carousel .carousel-control-next {
  right: 0;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
  background-image: none;
  /* Hide default icons */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

/* Indicators */
.testimonial-carousel .carousel-indicators {
  bottom: -3.5rem;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
  border: none;
  opacity: 0.3;
  margin: 0 6px;
  transition: opacity 0.3s, transform 0.3s;
}

.testimonial-carousel .carousel-indicators .active {
  opacity: 1;
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .testimonial-carousel {
    padding: 0;
  }

  .testi-card {
    padding: 2.5rem 1.5rem;
  }

  .testi-text {
    font-size: 1.15rem;
  }

  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next {
    display: none;
    /* Hide arrows on mobile for cleaner look, swipe still works */
  }
}

/* ── SLIDE 6 — BOOKING ── */
#slide-6 {
  background: var(--forest-dark);
}

#slide-6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(45, 90, 48, 0.14), transparent 60%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1350px;
  padding: 0 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.ci-icon {
  font-size: 1rem;
  color: var(--gold);
  width: 2rem;
  text-align: center;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.ci-label {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.ci-val {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.78);
  font-family: 'Plus Jakarta Sans', serif;
}

.booking-card {
  background: rgba(10, 26, 12, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: clamp(1.5rem, 4vh, 2.5rem);
}

/* --- Invitation Card Styles --- */
.invitation-card {
  position: relative;
  min-height: 480px;
  background-image: url('images/rooms.JPG');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 !important;
  border-radius: 4px;
}

  .inv-awards {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .inv-awards img {
    height: 40px;
  }

.inv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 26, 12, 0.98) 35%, rgba(10, 26, 12, 0.6) 70%, rgba(10, 26, 12, 0.3) 100%);
  z-index: 1;
}

.inv-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  width: 70%;
}

.inv-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.inv-line {
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.inv-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vh, 2.8rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 700;
}

.inv-awards {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.inv-awards img {
  height: 50px;
  filter: sepia(0.5) brightness(1.1);
  opacity: 0.85;
  transition: transform 0.3s, opacity 0.3s;
}

.inv-awards img:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.inv-call-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}


.inv-call-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(201, 168, 76, 0.05);
}

.inv-call-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.inv-call-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 700;
}

.inv-manager-wrap {
  position: absolute;
  right: -5%;
  bottom: 0;
  height: 110%;
  width: 50%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.inv-manager-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}


.form-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.45rem;
}

.form-inp {
  width: 100%;
  padding: 0.82rem 1rem;
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-inp:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}

.form-inp option {
  background: var(--forest-deep);
}

.fg {
  margin-bottom: clamp(0.5rem, 1.5vh, 1.2rem);
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
}

.btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

#form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

#form-success i {
  font-size: 2.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

#form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

#form-success p {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.65);
}

/* ── SLIDE 8 — FOOTER ── */
#slide-8 {
  opacity: 0.7;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: auto !important;
  height: auto !important;
  display: block !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  #slide-8 {
    background-size: cover;
  }
}

#slide-8::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(45, 90, 48, 0.1), transparent 70%);
  pointer-events: none;
}

.footer-glass {
  position: relative;
  z-index: 2;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
}

footer.footer-wrap,
.footer-wrap {
  background-color: #0a1a0c;
  background-image: linear-gradient(rgba(10, 26, 12, 0.8), rgba(10, 26, 12, 0.85)), url('images/wild6.png');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {

  footer.footer-wrap,
  .footer-wrap {
    background-size: cover;
  }
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: white;
  margin-bottom: 2rem;
}

.footer-strip {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.footer-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffc107;
}

.footer-divider {
  width: 80px;
  height: 1px;
  background: rgba(201, 168, 76, 0.25);
  margin: 0 auto 1.8rem;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.footer-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soc-btn.instagram {
  color: white;
  border-color: rgba(214, 36, 159, 0.3);
}

.soc-btn.facebook {
  color: white;
  border-color: rgba(24, 119, 242, 0.3);
}

.soc-btn.youtube {
  color: white;
  border-color: rgba(255, 0, 0, 0.3);
}

.soc-btn.whatsapp {
  color: white;
  border-color: rgba(37, 211, 102, 0.3);
}

.soc-btn:hover {
  border-color: var(--gold);
  color: #fff;
  background: var(--gold);
}

.soc-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: #d6249f;
}

.soc-btn.facebook {
  background: #1877f2;
  border-color: #1877f2;
}

.soc-btn.youtube {
  background: #ff0000;
  border-color: #ff0000;
}

.soc-btn.whatsapp {
  background: #25d366;
  border-color: #25d366;
}

/* ── NEW SOCIAL FEED DESIGN ── */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin-top: clamp(2rem, 5vh, 4rem);
}

@media (max-width: 768px) {
  .social-feed-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .social-feed-grid::-webkit-scrollbar {
    display: none;
  }

  .social-post-card {
    min-width: 85%;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}

.social-post-card {
  position: relative;
  height: clamp(300px, 45vh, 500px);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  background: var(--forest-dark);
  cursor: pointer;
  transition: transform 0.6s var(--ease), border-color 0.4s;
}

.social-post-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.sp-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

.social-post-card:hover .sp-img {
  transform: scale(1.1);
}

.sp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.9) 0%, rgba(10, 26, 12, 0.4) 50%, rgba(10, 26, 12, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s;
}

.social-post-card:hover .sp-overlay {
  background: linear-gradient(to top, rgba(10, 26, 12, 0.95) 0%, rgba(10, 26, 12, 0.6) 60%, rgba(10, 26, 12, 0.3) 100%);
}

.sp-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}

.social-post-card:hover .sp-icon {
  transform: scale(1.2) rotate(-5deg);
  opacity: 1;
}

.sp-platform {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.sp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.2;
}

.sp-btn {
  margin-top: 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}

.social-post-card:hover .sp-btn {
  opacity: 1;
  transform: translateY(0);
}

.sp-btn::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.social-post-card:hover .sp-btn:hover::after {
  width: 50px;
}

/* ── RESPONSIVE FOOTER (Laptop) ── */
@media (min-width: 1025px) {
  .footer-wrap {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #slide-7.fp-slide,
  #slide-8.fp-slide {
    /* padding-top: 5rem !important; */
  }
}

.footer-copy {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;

  color: var(--warm-white);

}

/* ── 13. SUB-FOOTER / COPYRIGHT ── */
.copyright-bar {
  width: 100%;
  background: transparent;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.2rem 0;
}

.copyright-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 1.5rem;
}

/* ── VIEWPORT HEIGHT OPTIMIZATION (Laptop/Desktop) ── */
@media (min-width: 1025px) and (max-height: 850px) {
  :root {
    --dur: 600ms;
    /* Faster transitions for tighter space */
  }

  .fp-slide {
    padding-top: clamp(4rem, 10vh, 6rem);
  }

  .hero-h1 {
    font-size: clamp(3rem, 7vw, 6rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .section-label {
    margin-bottom: 0.4rem;
  }

  .gold-line {
    margin: 0.8rem 0 0;
  }

  .welcome-body {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.8rem;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .stat-box {
    padding: 1.2rem;
  }

  .exp-content {
    padding: 1.5rem 1.2rem;
  }

  .room-card {
    transform: scale(0.95);
    transform-origin: top;
  }

  .testi-card {
    padding: 2rem 1.5rem;
  }

  .testi-text {
    font-size: 1rem;
  }

  .booking-grid {
    gap: 2rem;
  }
}

.copyright-text {
  margin-bottom: 0;
  color: white !important;
  font-size: 0.75rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.65rem;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.powered-logo {
  height: 28px;
  vertical-align: middle;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}

.powered-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .copyright-content {
    flex-direction: column;
    gap: 0.8rem;
  }

  .copyright-text {
    font-size: 0.7rem;
  }
}

.sub-footer {
  margin-top: 3rem;
  padding-bottom: 2rem;
  width: 100%;
}

.sub-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sub-footer .brand {
  color: var(--gold);
  transition: color 0.3s;
}

.sub-footer a:hover .brand {
  color: var(--gold-light);
}

/* ── 14. FLOATING SOCIAL ── */
.floating-social {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 11000;
  transition: transform 0.3s, background 0.3s;
}

.floating-social.whatsapp {
  background: #25d366;
  animation: pulse-green 2s infinite;
  bottom: 40px;
}

.floating-social.whatsapp:hover {
  background: #128c7e;
}

.floating-social.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  bottom: 110px;
  animation: pulse-insta 2s infinite;
}

.floating-social.instagram:hover {
  background: #d6249f;
}

.floating-social.facebook {
  background: #1877f2;
  bottom: 180px;
  animation: pulse-blue 2s infinite;
}

.floating-social.facebook:hover {
  background: #145dbf;
}

.floating-social:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(24, 119, 242, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
  }
}

@keyframes pulse-insta {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(214, 36, 159, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(214, 36, 159, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(214, 36, 159, 0);
  }
}

@media (max-width: 900px) {
  .floating-social {
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .floating-social.whatsapp {
    bottom: 20px;
  }

  .floating-social.instagram {
    bottom: 78px;
  }

  .floating-social.facebook {
    bottom: 136px;
  }


  .nav-links {
    display: none;
  }

  #menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }

  #navbar {
    padding: 0.6rem 1.5rem !important;
    background: rgba(10, 26, 12, 0.95) !important;
  }

  #navbar .btn-gold {
    display: none !important;
    font-size: 0.65rem !important;
    padding: 0.5rem 1rem !important;
    margin-left: auto;
    margin-right: 1.2rem;
    white-space: nowrap;
  }

  .nav-brand img {
    height: 35px !important;
  }

  .nav-links.mobile-active {
    display: flex !important;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #0f2012 0%, #0a1a0c 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 10000;
    animation: fadeInMenu 0.4s ease;
  }

  .nav-links.mobile-active a {
    font-size: 1.2rem;
    opacity: 1;
  }

  .welcome-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .invitation-card {
    min-height: auto;
    flex-direction: column;
    padding-bottom: 2rem !important;
  }

  .inv-awards {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .inv-awards img {
    height: 40px;
  }

  .inv-content {
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .inv-title {
    font-size: 1.8rem;
  }

  .inv-manager-wrap {
    position: relative;
    right: 0;
    width: 80%;
    margin: 0 auto;
    height: 300px;
    margin-top: -2rem;
  }

  .inv-manager-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }

  .inv-call-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .inv-call-box .btn-gold {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
  }

  .inv-awards {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .inv-awards img {
    height: 40px;
  }

  .booking-card {
    padding: 1.5rem;
  }

  .rooms-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .exp-grid-full {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .gallery-label-box {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1.5rem;
  }

  .g-tall {
    grid-row: span 1;
  }

  .rooms-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  #dot-nav,
  #slide-counter {
    display: none;
  }

  .footer-strip,
  .footer-nav {
    gap: 1.2rem;
  }

  .sub-footer {
    margin-top: 2rem;
    padding-bottom: 2rem;
    /* Space for mobile nav if needed */
  }

  #slide-3 {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .rooms-wrap {
    padding: 0 1.5rem;
  }

  .fp-slide {
    overflow-y: auto;
    padding-top: 6.5rem !important;
    align-items: flex-start;
  }

  .exp-slide-header {
    display: none;
  }

  .exp-slide-header .section-title {
    font-size: 1.6rem !important;
  }

  .copyright-bar p {
    font-size: 11px !important;
  }
}

/* Adjust global bits back to original positions */
#slide-counter {
  bottom: 2.5rem;
}

#arrow-hint {
  bottom: 2rem;
}

/* ── 25. PREMIUM MODAL & BOOKING BUTTONS ── */
.book-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  background: var(--gold);
  color: var(--forest-deep) !important;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.modal-content {
  background: var(--forest-dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 15px;
  overflow: hidden;
  color: var(--cream);
}

.modal-header {
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  background: var(--forest-deep);
  padding: 1.5rem 2rem;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.btn-close {
  filter: invert(1) brightness(2);
  opacity: 0.7;
}

.modal-body {
  padding: 2.5rem 2rem;
}

.modal-body .form-label,
.modal-body label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal-body .form-control {
  background: rgba(10, 26, 12, 0.6);
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 5px;
  color: var(--warm-white);
  padding: 0.75rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.modal-body .form-control:focus {
  background: rgba(10, 26, 12, 0.8);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
  outline: none;
}

.modal-submit-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem;
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  border-radius: 5px;
  width: 100%;
  margin-top: 1rem;
  transition: all 0.3s;
}

.modal-submit-btn:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

.explore-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.room-btn-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.explore-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--cream) !important;
}


/* ══════════════════════════════════════════
   15. ROOMS PAGE SPECIFIC (rooms.php)
   Used for standard scrolling layout.
══════════════════════════════════════════ */

#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
}

#hero .hero-bg {
  position: absolute;
  inset: -10%;
  background: url('images/hero.jpeg') center/cover no-repeat;
  filter: brightness(0.7) contrast(1.1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 12, 0.3), rgba(10, 26, 12, 0.5));
  z-index: 2;
}

.hero-mist {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=40&w=1600') center/cover;
  opacity: 0.15;
  mix-blend-mode: screen;
  z-index: 3;
  pointer-events: none;
}

.hero-mist-1 {
  animation: drift 60s linear infinite;
}

.hero-mist-2 {
  animation: drift 45s linear reverse infinite;
  opacity: 0.1;
}

@keyframes drift {
  from {
    transform: translateX(-10%) scale(1.1);
  }

  to {
    transform: translateX(10%) scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.h-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.h-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--warm-white);
  margin-bottom: 2rem;
}

.h-title em {
  font-style: italic;
  color: var(--gold);
}

.h-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

.h-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.h-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-gold {
  background: var(--gold);
  color: #ffffff;
  padding: 1.1rem 2.8rem;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(245, 240, 232, 0.4);
  padding: 1.1rem 2.8rem;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

/* Rooms Listing Section */
#rooms-section {
  padding: 100px 0;
  background: var(--forest-deep);
  position: relative;
}

.rooms-bg-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background: url('https://www.transparenttextures.com/patterns/natural-paper.png');
}

.rooms-header {
  text-align: center;
  margin-bottom: 5rem;
}

.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.room-card-premium {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: rgba(15, 32, 18, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.12);
  min-height: 500px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.room-card-premium:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

.room-card-premium.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.room-card-premium.reverse .r-img-box {
  order: 2;
}

.r-img-box {
  position: relative;
  overflow: hidden;
}

.r-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.room-card-premium:hover .r-img-box img {
  transform: scale(1.08);
}

.r-info-box {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.r-price-badge {
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.r-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}

.r-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 2rem;
}

.r-amenities {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.r-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.8;
}

.r-amenity i {
  font-size: 1.2rem;
}

.r-amenity span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ============================================================
   SIMILIPAL JUNGLE RESORT — rooms.css
   Dark forest aesthetic: hero · navbar · room cards · modal
   Sections:
     1.  CSS Variables
     2.  Reset & Base
     3.  Navbar
     4.  Hero Section
     5.  Hero Animations & Particles
     6.  Section Bridge
     7.  Rooms Section Wrapper
     8.  Forest Background Animations (trees, mist, particles)
     9.  Section Header
     10. Rooms Grid & Cards
     11. Card Components (badge, price, body, tags, footer)
     12. Book Now Button
     13. Bottom CTA
     14. Scroll Reveal
     15. Booking Modal
     16. Responsive
============================================================ */

/* ──────────────────────────────────────────
   1. CSS VARIABLES
────────────────────────────────────────── */
:root {
  --forest-deep: #0a1a0c;
  --forest-dark: #0f2012;
  --forest-mid: #1a3a1d;
  --forest-moss: #2d5a30;
  --forest-sage: #4a7c59;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-border: rgba(201, 168, 76, 0.22);
  --gold-border-h: rgba(201, 168, 76, 0.55);
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --text-muted: rgba(245, 240, 232, 0.65);
  --text-faint: rgba(245, 240, 232, 0.40);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--forest-deep);
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ──────────────────────────────────────────
   3. NAVBAR
────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding: 0.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 26, 12, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, padding 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(10, 26, 12, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--gold-border);
  padding: 0.5rem 3rem;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}

.nav-brand span {
  color: var(--cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.25s, color 0.25s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

#menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* ──────────────────────────────────────────
   4. HERO SECTION
────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background: url('images/hero.jpeg') center / cover no-repeat;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 26, 12, 0.3) 0%, rgba(10, 26, 12, 0.05) 35%, rgba(10, 26, 12, 0.4) 100%),
    linear-gradient(to right, rgba(10, 26, 12, 0.2) 0%, transparent 50%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px,
      rgba(10, 26, 12, 0.08) 2px, rgba(10, 26, 12, 0.08) 4px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-content>* {
  opacity: 0;
  transform: translateY(28px);
  animation: heroEntrance 0.9s ease forwards;
}

.hero-content .h-eyebrow {
  animation-delay: 0.2s;
}

.hero-content .h-title {
  animation-delay: 0.5s;
}

.hero-content .h-divider {
  animation-delay: 0.8s;
}

.hero-content .h-tagline {
  animation-delay: 0.9s;
}

.hero-content .h-btns {
  animation-delay: 1.1s;
}

.hero-content .h-stats {
  animation-delay: 1.3s;
}

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.h-eyebrow::before,
.h-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.h-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--warm-white);
}

.h-title em {
  color: var(--gold);
  font-style: italic;
}

.h-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

.h-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.82);
  line-height: 1.6;
}

.h-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.btn-hero-gold {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.38);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-hero-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.55);
  color: var(--forest-deep);
}

.btn-hero-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.45);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}

.btn-hero-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
}

.h-stats {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  padding: 1.4rem 0;
}

.h-stat {
  padding: 0 2.8rem;
  position: relative;
  text-align: center;
}

.h-stat+.h-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(201, 168, 76, 0.2);
}

.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.h-stat-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0;
  animation: heroEntrance 0.9s ease 1.6s forwards;
  text-decoration: none;
}

.hero-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
}

.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
}

.hero-bracket {
  position: absolute;
  z-index: 4;
  width: 60px;
  height: 60px;
  opacity: 0.35;
}

.hero-bracket.tl {
  top: 2rem;
  left: 2.5rem;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hero-bracket.tr {
  top: 2rem;
  right: 2.5rem;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.hero-bracket.bl {
  bottom: 2rem;
  left: 2.5rem;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hero-bracket.br {
  bottom: 2rem;
  right: 2.5rem;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.hero-badge-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: rgba(10, 26, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-border);
  opacity: 0;
  animation: heroEntrance 0.9s ease 1.7s forwards;
  flex-wrap: wrap;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}

.hero-strip-item i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ──────────────────────────────────────────
   5. HERO ANIMATIONS & PARTICLES
────────────────────────────────────────── */
#hero-leaves,
#hero-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#hero-leaves {
  z-index: 2;
}

#hero-fireflies {
  z-index: 3;
}

.hero-mist {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 220, 190, 0.07) 0%, transparent 70%);
  animation: driftMist linear infinite;
}

.hero-mist-1 {
  width: 700px;
  height: 130px;
  bottom: 18%;
  left: -200px;
  animation-duration: 32s;
  animation-delay: 0s;
}

.hero-mist-2 {
  width: 500px;
  height: 90px;
  bottom: 30%;
  left: -150px;
  animation-duration: 24s;
  animation-delay: 8s;
}

.hero-mist-3 {
  width: 600px;
  height: 110px;
  bottom: 8%;
  left: -180px;
  animation-duration: 40s;
  animation-delay: 14s;
}

/* ──────────────────────────────────────────
   6. SECTION BRIDGE
────────────────────────────────────────── */
.section-bridge {
  height: 80px;
  background: linear-gradient(to bottom, var(--forest-deep), var(--forest-dark));
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────
   7. ROOMS SECTION WRAPPER
────────────────────────────────────────── */
#rooms-section {
  position: relative;
  padding: 120px 0 140px;
  background: var(--forest-dark);
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 15%, rgba(45, 90, 48, 0.22), transparent),
    radial-gradient(ellipse 60% 45% at 12% 85%, rgba(45, 90, 48, 0.16), transparent);
  animation: breatheGlow 8s ease-in-out infinite alternate;
}

@keyframes breatheGlow {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

.scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px,
      rgba(201, 168, 76, 0.012) 2px, rgba(201, 168, 76, 0.012) 4px);
}

/* ──────────────────────────────────────────
   8. FOREST BACKGROUND ANIMATIONS
────────────────────────────────────────── */

/* Tree silhouette edges */
.forest-edge {
  position: absolute;
  bottom: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.forest-edge.left {
  left: 0;
}

.forest-edge.right {
  right: 0;
  transform: scaleX(-1);
}

.tree {
  position: absolute;
  bottom: 0;
  transform-origin: bottom center;
}

.tree-trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 30, 10, 0.9);
  border-radius: 3px 3px 0 0;
}

.tree-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: solid transparent;
  border-right: solid transparent;
  border-bottom: solid rgba(10, 26, 12, 0.95);
  filter: drop-shadow(0 -4px 12px rgba(45, 90, 48, 0.4));
  transform-origin: bottom center;
  animation: sway linear infinite alternate;
}

@keyframes sway {
  0% {
    transform: translateX(-50%) rotate(-1.5deg);
  }

  100% {
    transform: translateX(-50%) rotate(1.5deg);
  }
}

/* Tree sizes */
.tree-1 .tree-trunk {
  width: 14px;
  height: 240px;
  left: 22px;
}

.tree-1 .tree-top {
  bottom: 200px;
  left: 28px;
  border-left-width: 42px;
  border-right-width: 42px;
  border-bottom-width: 90px;
  animation-duration: 6s;
}

.tree-1 .tree-top-2 {
  bottom: 258px;
  left: 28px;
  border-left-width: 32px;
  border-right-width: 32px;
  border-bottom-width: 70px;
  animation-duration: 6.3s;
}

.tree-1 .tree-top-3 {
  bottom: 306px;
  left: 28px;
  border-left-width: 22px;
  border-right-width: 22px;
  border-bottom-width: 55px;
  animation-duration: 6.6s;
}

.tree-2 .tree-trunk {
  width: 10px;
  height: 180px;
  left: 80px;
}

.tree-2 .tree-top {
  bottom: 145px;
  left: 85px;
  border-left-width: 30px;
  border-right-width: 30px;
  border-bottom-width: 70px;
  animation-duration: 7s;
  animation-delay: 0.5s;
}

.tree-2 .tree-top-2 {
  bottom: 193px;
  left: 85px;
  border-left-width: 22px;
  border-right-width: 22px;
  border-bottom-width: 55px;
  animation-duration: 7.3s;
  animation-delay: 0.5s;
}

.tree-2 .tree-top-3 {
  bottom: 232px;
  left: 85px;
  border-left-width: 15px;
  border-right-width: 15px;
  border-bottom-width: 42px;
  animation-duration: 7.6s;
  animation-delay: 0.5s;
}

.tree-3 .tree-trunk {
  width: 18px;
  height: 310px;
  left: 140px;
}

.tree-3 .tree-top {
  bottom: 265px;
  left: 149px;
  border-left-width: 55px;
  border-right-width: 55px;
  border-bottom-width: 110px;
  animation-duration: 5.5s;
  animation-delay: 1s;
}

.tree-3 .tree-top-2 {
  bottom: 340px;
  left: 149px;
  border-left-width: 42px;
  border-right-width: 42px;
  border-bottom-width: 85px;
  animation-duration: 5.8s;
  animation-delay: 1s;
}

.tree-3 .tree-top-3 {
  bottom: 400px;
  left: 149px;
  border-left-width: 28px;
  border-right-width: 28px;
  border-bottom-width: 65px;
  animation-duration: 6.1s;
  animation-delay: 1s;
}

.tree-4 .tree-trunk {
  width: 8px;
  height: 150px;
  left: 195px;
}

.tree-4 .tree-top {
  bottom: 118px;
  left: 199px;
  border-left-width: 24px;
  border-right-width: 24px;
  border-bottom-width: 58px;
  animation-duration: 8s;
  animation-delay: 1.5s;
}

.tree-4 .tree-top-2 {
  bottom: 158px;
  left: 199px;
  border-left-width: 17px;
  border-right-width: 17px;
  border-bottom-width: 44px;
  animation-duration: 8.3s;
  animation-delay: 1.5s;
}

/* Ground fog */
.ground-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.85) 0%, rgba(10, 26, 12, 0.4) 40%, transparent 100%);
}

/* Floating mist */
.mist-layer {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 220, 190, 0.06) 0%, transparent 70%);
  animation: driftMist linear infinite;
}

@keyframes driftMist {
  0% {
    transform: translateX(-10%) scaleY(1);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(110%) scaleY(0.8);
    opacity: 0;
  }
}

.mist-1 {
  width: 500px;
  height: 120px;
  top: 30%;
  left: -200px;
  animation-duration: 28s;
  animation-delay: 0s;
}

.mist-2 {
  width: 700px;
  height: 90px;
  top: 55%;
  left: -300px;
  animation-duration: 36s;
  animation-delay: 6s;
}

.mist-3 {
  width: 400px;
  height: 80px;
  top: 72%;
  left: -150px;
  animation-duration: 22s;
  animation-delay: 12s;
}

.mist-4 {
  width: 600px;
  height: 100px;
  top: 20%;
  left: -250px;
  animation-duration: 42s;
  animation-delay: 3s;
}

.mist-5 {
  width: 350px;
  height: 70px;
  top: 85%;
  left: -100px;
  animation-duration: 18s;
  animation-delay: 9s;
}

/* Falling leaves */
.leaf-particle {
  position: fixed;
  top: -60px;
  pointer-events: none;
  z-index: 3;
  font-size: 1.1rem;
  opacity: 0;
  user-select: none;
  animation: leafFall linear forwards;
  will-change: transform, opacity;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0px);
  }

  5% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(720deg) translateX(var(--drift, 80px));
  }
}

/* Fireflies */
.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9f06a;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 6px 2px rgba(180, 240, 100, 0.7), 0 0 14px 4px rgba(140, 220, 60, 0.3);
  animation: fireflyLife linear infinite;
  will-change: transform, opacity;
}

@keyframes fireflyLife {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  10% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.4;
  }

  75% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translate(var(--fx, 30px), var(--fy, -40px));
  }
}

/* Birds */
.bird-flock {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  animation: birdFly linear forwards;
}

@keyframes birdFly {
  0% {
    transform: translateX(-120px) translateY(0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(calc(100vw + 120px)) translateY(var(--bdy, -30px));
    opacity: 0;
  }
}

.bird {
  display: inline-block;
  width: 18px;
  height: 7px;
  margin: 0 3px;
  border-top: 2.5px solid rgba(245, 240, 232, 0.65);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-left: 2px solid rgba(245, 240, 232, 0.55);
  border-right: 2px solid rgba(245, 240, 232, 0.55);
  animation: wingFlap 0.4s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

.bird:nth-child(even) {
  animation-delay: 0.2s;
  width: 14px;
  height: 5px;
}

.bird:nth-child(3n) {
  animation-delay: 0.1s;
  width: 16px;
  height: 6px;
  margin-top: 4px;
}

@keyframes wingFlap {
  0% {
    transform: scaleY(0.3);
  }

  100% {
    transform: scaleY(1);
  }
}

/* Gold sparkles */
.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 4px 2px rgba(201, 168, 76, 0.5);
  animation: sparkleFade ease-out forwards;
}

@keyframes sparkleFade {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scale(0.2) translateY(-20px);
  }
}

/* Firefly + bird containers */
#firefly-container,
#bird-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#firefly-container {
  z-index: 3;
}

#bird-container {
  z-index: 4;
}

/* ──────────────────────────────────────────
   9. SECTION HEADER
────────────────────────────────────────── */
.section-inner {
  position: relative;
  z-index: 5;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}

.rooms-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--warm-white);
  margin-bottom: 1.2rem;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.gold-line {
  display: block;
  width: 55px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.rooms-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ──────────────────────────────────────────
   10. ROOMS GRID & CARDS
────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: rgba(15, 32, 18, 0.93);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.room-card:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-9px);
  box-shadow: 0 28px 64px rgba(10, 26, 12, 0.65), 0 0 0 1px rgba(201, 168, 76, 0.2), 0 0 30px rgba(45, 90, 48, 0.15);
}

/* Shimmer sweep on hover */
.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 10;
  transition: left 0.55s var(--ease);
}

.room-card:hover::before {
  left: 100%;
}

/* Card image */
.card-img-wrap {
  position: relative;
  height: 248px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease), filter 0.75s;
  filter: brightness(0.85) saturate(0.88);
}

.room-card:hover .card-img-wrap img {
  transform: scale(1.1);
  filter: brightness(0.75) saturate(0.82);
}

.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 12, 0.04) 0%, rgba(10, 26, 12, 0.72) 100%);
  transition: opacity 0.45s;
}

.room-card:hover .card-img-wrap::after {
  opacity: 0.9;
}

/* ──────────────────────────────────────────
   11. CARD COMPONENTS
────────────────────────────────────────── */

/* Badge */
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-eco {
  background: rgba(45, 90, 48, 0.88);
  color: #b8d4c4;
  border: 1px solid rgba(184, 212, 196, 0.25);
}

.badge-luxury {
  background: rgba(201, 168, 76, 0.92);
  color: #1a1200;
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.badge-group {
  background: rgba(10, 26, 12, 0.90);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.badge-forest {
  background: rgba(74, 124, 89, 0.88);
  color: #e0f2e8;
  border: 1px solid rgba(224, 242, 232, 0.2);
}

.badge-premium {
  background: rgba(232, 201, 122, 0.95);
  color: #1a0e00;
  border: 1px solid rgba(232, 201, 122, 0.4);
}

/* Price on image */
.card-price {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 2;
  text-align: right;
}

.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.price-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 244, 0.65);
}

/* Card body */
.card-body {
  padding: 22px 22px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.2;
}

.card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}

/* Amenity tags */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.c-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: border-color 0.25s, background 0.25s;
}

.c-tag:hover {
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(201, 168, 76, 0.07);
}

.c-tag i {
  font-size: 0.56rem;
}

/* Separator */
.card-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
  margin: 0 22px;
}

/* Card footer */
.card-footer-row {
  padding: 14px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--gold);
  font-size: 0.68rem;
}

.card-stars span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  color: var(--text-faint);
  margin-left: 3px;
}

/* ──────────────────────────────────────────
   12. BOOK NOW BUTTON
────────────────────────────────────────── */
.btn-book {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.btn-book:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.38);
  transform: translateY(-1px);
}

.btn-book:active {
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   13. BOTTOM CTA
────────────────────────────────────────── */
.rooms-cta {
  text-align: center;
  margin-top: 64px;
}

.rooms-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.btn-gold-full {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-gold-full:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(201, 168, 76, 0.5);
  color: var(--forest-deep);
}

/* ──────────────────────────────────────────
   14. SCROLL REVEAL
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.d1 {
  transition-delay: 0.08s;
}

.reveal.d2 {
  transition-delay: 0.18s;
}

.reveal.d3 {
  transition-delay: 0.28s;
}

.reveal.d4 {
  transition-delay: 0.38s;
}

.reveal.d5 {
  transition-delay: 0.48s;
}

.reveal.d6 {
  transition-delay: 0.58s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   15. BOOKING MODAL
────────────────────────────────────────── */
.modal-content {
  border: 1px solid var(--gold-border) !important;
  border-radius: 4px !important;
  background: var(--forest-dark) !important;
  box-shadow: 0 40px 100px rgba(10, 26, 12, 0.85), 0 0 0 1px rgba(201, 168, 76, 0.15) !important;
  overflow: hidden;
}

.modal-header {
  background: var(--forest-deep) !important;
  border-bottom: 1px solid var(--gold-border) !important;
  padding: 28px 32px 22px !important;
}

.modal-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.modal-room-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--warm-white);
  display: block;
}

.btn-close {
  filter: invert(1) !important;
  opacity: 0.6 !important;
}

.btn-close:hover {
  opacity: 1 !important;
}

.modal-body {
  background: var(--forest-dark) !important;
  padding: 28px 32px !important;
}

.modal-strip {
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
  padding: 12px 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.strip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.strip-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}

.strip-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-muted);
}

.f-lbl {
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.63rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  display: block;
  margin-bottom: 7px !important;
}

.f-inp {
  width: 100%;
  padding: 0.82rem 1rem !important;
  background: rgba(245, 240, 232, 0.05) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  color: var(--cream) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.05rem !important;
  outline: none;
  border-radius: 0 !important;
  transition: border-color 0.3s, background 0.3s !important;
}

.f-inp:focus {
  border-color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.07) !important;
  box-shadow: none !important;
}

.f-inp option {
  background: var(--forest-deep);
  color: var(--cream);
}

.f-inp::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.f-inp.err {
  border-color: #c0392b !important;
}

.f-err {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: #e74c3c;
  margin-top: 5px;
  display: none;
}

.modal-footer {
  background: var(--forest-deep) !important;
  border-top: 1px solid var(--gold-border) !important;
  padding: 20px 32px 26px !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 10px !important;
}

.btn-modal-submit {
  width: 100%;
  padding: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
}

.btn-modal-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

.btn-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-modal-cancel {
  width: 100%;
  padding: 0.75rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-faint);
  border: 1px solid rgba(201, 168, 76, 0.18);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.btn-modal-cancel:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

#booking-success {
  display: none;
  text-align: center;
  padding: 20px 0 10px;
}

#booking-success .s-ico {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 14px;
}

#booking-success h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

#booking-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────
   16. RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1200px) {
  .section-inner {
    padding: 0 2rem;
  }

  .rooms-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .forest-edge {
    display: none;
  }

  /* Hide decorative trees on tablets to prevent overflow */
  .h-title {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .h-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .h-stat {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  #hero {
    padding-top: 80px;
    height: 100vh;
    height: 100svh;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .h-title {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 1.1;
  }

  .h-tagline {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .h-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
  }

  .h-stat {
    border: none;
    padding: 0;
    text-align: center;
  }

  .h-stat-num {
    font-size: 1.5rem;
  }

  .h-stat-lbl {
    font-size: 0.55rem;
    line-height: 1.2;
    display: block;
    margin-top: 0.2rem;
  }

  .h-divider {
    width: 60px;
    margin: 1.5rem auto;
  }

  .rooms-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-img-wrap {
    height: 260px;
  }

  .card-footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .c-btn-book {
    width: 100%;
    text-align: center;
  }

  #rooms-section {
    padding: 60px 0 80px;
  }

  .section-inner {
    padding: 0 1.5rem;
  }

  /* Mobile: Show only first 3 rooms */
  .room-extra {
    display: none !important;
  }

  .rooms-grid.show-all .room-extra {
    display: block !important;
  }

  .more-rooms-wrap {
    display: flex;
  }

  .hero-badge-strip {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .h-title {
    font-size: 2.4rem;
  }

  .h-btns {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn-hero-gold,
  .btn-hero-outline,
  .h-btns .btn-gold {
    width: 100%;
    text-align: center;
    margin: 0 !important;
  }

  .h-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .modal-dialog {
    margin: 1rem;
  }

  .modal-header {
    padding: 20px 24px 16px !important;
  }

  .modal-room-title {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 20px 24px !important;
  }

  .modal-strip {
    padding: 10px 14px;
    margin-bottom: 20px;
  }

  .strip-icon {
    font-size: 1.1rem;
  }

  .strip-txt {
    font-size: 0.9rem;
  }

  .modal-footer {
    padding: 16px 24px 22px !important;
  }
}

}

/* ============================================================
   GALLERY PAGE STYLES
   Sections: Hero · Panorama · Photo Grid · Video Reel · Lightbox
============================================================ */

/* ── Gallery Hero ── */
#gallery-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
  padding-top: 80px;
  /* offset for fixed navbar */
  margin-top: 0;
}

.gh-bg {
  position: absolute;
  inset: -10%;
  background: url('images/gallerybg.png') center/cover no-repeat;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}

.gh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 12, 0.6) 0%, rgba(10, 26, 12, 0.3) 40%, rgba(10, 26, 12, 0.85) 100%);
}

.gh-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 2rem;
}

.gh-crumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.gh-crumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.gh-crumb .sep {
  margin: 0 0.5rem;
  color: var(--gold);
}

.gh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gh-title em {
  color: var(--gold);
  font-style: italic;
}

.gh-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.gh-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.gh-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  z-index: 5;
}

.gh-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.gh-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.5
  }

  50% {
    opacity: 1
  }
}

/* ── Panorama Section ── */
#panorama-section {
  padding: 100px 0 60px;
  background: var(--forest-dark);
  position: relative;
  overflow: hidden;
}

.pano-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.pano-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.pano-wrap:active {
  cursor: grabbing;
}

.pano-strip {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.pano-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.pano-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(0.95) saturate(1);
}

.pano-drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  animation: hintFade 3s ease-in-out forwards;
  pointer-events: none;
}

@keyframes hintFade {
  0% {
    opacity: 1
  }

  70% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

.pano-drag-icon {
  font-size: 2rem;
  color: var(--gold);
}

.pano-drag-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
}

.pano-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.9) 0%, transparent 100%);
  z-index: 5;
}

.pano-scene-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.pano-scene-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.3rem;
}

.pano-scene-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
}

.pano-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(10, 26, 12, 0.7);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.pano-btn:hover {
  background: rgba(201, 168, 76, 0.2);
}

.pano-btn.prev {
  left: 1rem;
}

.pano-btn.next {
  right: 1rem;
}

.pano-dots {
  position: absolute;
  bottom: 1.2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 6;
}

.pano-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.pano-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.pano-scenes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 2rem 0;
}

.pano-scene-tab {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}

.pano-scene-tab.active,
.pano-scene-tab:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Filter Bar ── */
#gallery-filter {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(10, 26, 12, 0.97);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.75rem 0;
  transition: box-shadow 0.3s;
}

#gallery-filter.shadowed {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.filter-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}

.filter-tab.active,
.filter-tab:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.filter-count {
  color: var(--gold);
  opacity: 0.7;
}

.view-toggle {
  display: flex;
  gap: 0.4rem;
}

.view-btn {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn.active,
.view-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Gallery Grid Section ── */
#gallery-grid-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--forest-deep);
  overflow: visible;
  z-index: 1;
}

.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

#gallery-grid-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 0.75rem;
}

#gallery-grid-section .g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest-mid);
}

#gallery-grid-section .g-item.hidden {
  display: none !important;
}

#gallery-grid-section .g-item.span-2w {
  grid-column: span 2;
}

#gallery-grid-section .g-item.span-2h {
  grid-row: span 2;
}

#gallery-grid-section .g-item.span-2b {
  grid-column: span 2;
  grid-row: span 2;
}

#gallery-grid-section .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s;
  filter: brightness(0.9) saturate(0.95);
}

#gallery-grid-section .g-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(1.1);
}

#gallery-grid-section .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.9) 0%, rgba(10, 26, 12, 0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
}

#gallery-grid-section .g-item:hover .g-overlay {
  opacity: 1;
}

#gallery-grid-section .g-overlay-content {
  padding: 1.2rem;
}

#gallery-grid-section .g-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.3;
}

#gallery-grid-section .g-expand {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 32px;
  height: 32px;
  background: rgba(10, 26, 12, 0.75);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

#gallery-grid-section .g-item:hover .g-expand {
  opacity: 1;
}

.load-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

.btn-load-more {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-load-more:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

/* ── Video Strip ── */
#video-strip {
  position: relative;
  padding: 100px 0;
  background: var(--forest-dark);
  overflow: hidden;
}

.video-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  border: 1px solid var(--gold-border);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: transform 0.6s, filter 0.6s;
}

.video-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(1.1);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  font-size: 1.2rem;
  transition: transform 0.3s, background 0.3s;
  z-index: 3;
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.95), transparent);
  z-index: 2;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.25rem;
}

.video-dur {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ── Gallery CTA ── */
#gallery-cta {
  position: relative;
  padding: 100px 0;
  background: var(--forest-deep);
  overflow: hidden;
  text-align: center;
}

.gcta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.gcta-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gcta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ── Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 6, 0.97);
  z-index: 99999;
  display: none;
  /* Shown via JS */
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#lightbox.open {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.lb-close:hover {
  background: rgba(201, 168, 76, 0.15);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-nav:hover {
  background: rgba(201, 168, 76, 0.15);
}

.lb-nav.prev {
  left: 2rem;
}

.lb-nav.next {
  right: 2rem;
}

.lb-counter {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.lb-inner {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lb-img-wrap {
  max-height: 70vh;
}

#lb-img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
}

.lb-caption {
  text-align: center;
  max-width: 600px;
}

.lb-caption-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--warm-white);
}

.lb-caption-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── Gallery Responsive ── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .g-item.span-2b {
    grid-column: span 2;
    grid-row: span 1;
  }

  .pano-wrap {
    height: 320px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-inner,
  .video-inner {
    padding: 0 1.5rem;
  }

  #gallery-grid-section,
  #video-strip,
  #gallery-cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .g-item.span-2w,
  .g-item.span-2b {
    grid-column: span 1;
  }

  .gcta-btns {
    flex-direction: column;
  }

  .pano-scenes {
    gap: 0.4rem;
    padding: 1rem 1rem 0;
  }

  .pano-scene-tab {
    font-size: 0.55rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ============================================================
   SIMILIPAL JUNGLE RESORT — about.css
   About Us Page · Dark Forest Luxury Theme
   Sections:
     1.  CSS Variables & Reset
     2.  Navbar
     3.  About Hero (Page Header)
     4.  Story Section (Two-column split)
     5.  Timeline Section
     6.  Values / Pillars Grid
     7.  Counters / Stats Strip
     8.  Team Section
     9.  Forest Gallery Mosaic
     10. Testimonial Pull Quote
     11. Awards & Recognition
     12. CTA Section
     13. Forest Background Animations
     14. Shared Utility Classes
     15. Responsive
============================================================ */

/* ── 1. CSS Variables & Reset ── */
:root {
  --forest-deep: #0a1a0c;
  --forest-dark: #0f2012;
  --forest-mid: #1a3a1d;
  --forest-moss: #2d5a30;
  --forest-sage: #4a7c59;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.22);
  --gold-border-h: rgba(201, 168, 76, 0.55);
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --text-muted: rgba(245, 240, 232, 0.65);
  --text-faint: rgba(245, 240, 232, 0.38);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--forest-deep);
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

/* ── 2. Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding: 1.3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10, 26, 12, 0.95), transparent);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
}

#navbar.scrolled {
  background: rgba(10, 26, 12, 0.98);
  border-color: var(--gold-border);
  padding: 0.85rem 3rem;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
}

.nav-brand span {
  color: var(--cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.25s, color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: #ffffff;
}

#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

#menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* ── 3. About Hero ── */
#about-hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
}

.ah-bg {
  position: absolute;
  inset: -8%;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=85') center/cover no-repeat;
  animation: slowZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes slowZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.1)
  }
}

.ah-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 26, 12, 0.6) 0%, rgba(10, 26, 12, 0.2) 40%, rgba(10, 26, 12, 0.85) 100%),
    linear-gradient(to right, rgba(10, 26, 12, 0.4) 0%, transparent 60%);
}

.ah-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }

  from {
    opacity: 0;
    transform: translateY(30px)
  }
}

.ah-breadcrumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ah-breadcrumb a {
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}

.ah-breadcrumb a:hover {
  color: var(--gold);
}

.ah-breadcrumb .sep {
  opacity: 0.4;
}

.ah-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--warm-white);
}

.ah-title em {
  color: var(--gold);
  font-style: italic;
}

.ah-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem auto;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

.ah-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.78);
}

/* Particle layers on hero */
#ah-leaves,
#ah-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#ah-leaves {
  z-index: 2;
}

#ah-fireflies {
  z-index: 2;
}

.ah-mist {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 220, 190, 0.07) 0%, transparent 70%);
  animation: driftMist linear infinite;
}

.ah-mist-1 {
  width: 700px;
  height: 120px;
  bottom: 15%;
  left: -200px;
  animation-duration: 35s;
  animation-delay: 0s;
}

.ah-mist-2 {
  width: 500px;
  height: 90px;
  bottom: 28%;
  left: -150px;
  animation-duration: 26s;
  animation-delay: 9s;
}

@keyframes driftMist {
  0% {
    transform: translateX(-10%) scaleY(1);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(110%) scaleY(0.8);
    opacity: 0;
  }
}

/* Bottom scroll hint */
.ah-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.ah-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.ah-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1)
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.5)
  }
}

/* ── 4. Story Section ── */
#story {
  position: relative;
  padding: 110px 0;
  background: var(--forest-dark);
  overflow: hidden;
}

#story::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 90% 30%, rgba(45, 90, 48, 0.16), transparent 55%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 3rem;
  align-items: center;
}

.story-img-col {
  position: relative;
}

.story-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 580px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 32px 80px rgba(10, 26, 12, 0.6);
}

.story-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.88);
  transition: transform 0.8s var(--ease), filter 0.8s;
}

.story-img-frame:hover img {
  transform: scale(1.04);
  filter: brightness(0.82) saturate(0.82);
}

/* Gold corner accent */
.story-img-frame::before,
.story-img-frame::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  opacity: 0.6;
}

.story-img-frame::before {
  top: 14px;
  right: 14px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.story-img-frame::after {
  bottom: 14px;
  left: 14px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

/* Floating badge on image */
.story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 3;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
  animation: rotateBadge 20s linear infinite;
}

.story-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--forest-deep);
  line-height: 1;
}

.story-badge-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-deep);
  text-align: center;
  line-height: 1.3;
  margin-top: 3px;
}

@keyframes rotateBadge {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}


.story-body {
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.story-body+.story-body {
  margin-top: 1.2rem;
}

.story-signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.signature-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  filter: brightness(0.9);
}

.signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--warm-white);
  display: block;
}

.signature-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* ── 5. Timeline ── */
#timeline {
  position: relative;
  padding: 110px 0;
  background: var(--forest-deep);
  overflow: hidden;
}

.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.tl-list {
  position: relative;
  margin-top: 4rem;
}

/* vertical line */
.tl-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border) 15%, var(--gold-border) 85%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 3.5rem;
  align-items: start;
  position: relative;
}

.tl-item:nth-child(odd) .tl-content {
  grid-column: 1;
  text-align: right;
  padding-right: 2rem;
}

.tl-item:nth-child(odd) .tl-dot {
  grid-column: 2;
}

.tl-item:nth-child(odd) .tl-spacer {
  grid-column: 3;
}

.tl-item:nth-child(even) .tl-spacer {
  grid-column: 1;
}

.tl-item:nth-child(even) .tl-dot {
  grid-column: 2;
}

.tl-item:nth-child(even) .tl-content {
  grid-column: 3;
  text-align: left;
  padding-left: 2rem;
}

.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding-top: 6px;
}

.tl-dot-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--forest-deep);
  box-shadow: 0 0 0 2px var(--gold), 0 0 16px rgba(201, 168, 76, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tl-item:hover .tl-dot-inner {
  transform: scale(1.4);
  box-shadow: 0 0 0 2px var(--gold), 0 0 28px rgba(201, 168, 76, 0.7);
}

.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
}

.tl-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

.tl-spacer {
  visibility: hidden;
}

/* ── 6. Values / Pillars Grid ── */
#values {
  position: relative;
  padding: 110px 0;
  background: var(--forest-dark);
  overflow: hidden;
}

#values::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 60%, rgba(45, 90, 48, 0.15), transparent 60%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: var(--gold-border);
}

.value-card {
  background: rgba(15, 32, 18, 0.92);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: left 0.6s var(--ease);
}

.value-card:hover {
  background: rgba(28, 58, 30, 0.95);
}

.value-card:hover::before {
  left: 100%;
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
  display: block;
  animation: iconFloat 4s ease-in-out infinite alternate;
}

.value-card:nth-child(2) .value-icon {
  animation-delay: 0.8s;
}

.value-card:nth-child(3) .value-icon {
  animation-delay: 1.6s;
}

.value-card:nth-child(4) .value-icon {
  animation-delay: 0.4s;
}

.value-card:nth-child(5) .value-icon {
  animation-delay: 1.2s;
}

.value-card:nth-child(6) .value-icon {
  animation-delay: 2.0s;
}

@keyframes iconFloat {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-8px)
  }
}

.value-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  transition: color 0.4s;
}

.value-card:hover .value-num {
  color: rgba(201, 168, 76, 0.18);
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.7rem;
}

.value-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 7. Stats Counter Strip ── */
#stats-strip {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-moss) 100%);
}

#stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('https://images.unsplash.com/photo-1511497584788-876760111969?w=1400&q=40') center/cover;
  opacity: 0.08;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(201, 168, 76, 0.25);
}

.stat-count {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: 0.6em;
}

.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}

.stat-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 0.3rem;
}

/* ── 8. Team Section ── */
#team {
  position: relative;
  padding: 110px 0;
  background: var(--forest-deep);
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 3.5rem auto 0;
  padding: 0 3rem;
  background: var(--gold-border);
}

.team-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s;
  filter: brightness(0.75) saturate(0.7);
}

.team-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.6) saturate(0.6);
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.95) 0%, rgba(10, 26, 12, 0.3) 55%, transparent 100%);
  transition: background 0.5s;
}

.team-card:hover::after {
  background: linear-gradient(to top, rgba(10, 26, 12, 0.98) 0%, rgba(10, 26, 12, 0.55) 65%, rgba(10, 26, 12, 0.2) 100%);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem;
  z-index: 2;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.team-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.5s;
}

.team-card:hover .team-bio {
  max-height: 80px;
  opacity: 1;
}

/* ── 9. Gallery Mosaic ── */
#gallery {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 3px;
}

.gm-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gm-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s;
  filter: brightness(0.85) saturate(0.82);
}

.gm-cell:hover img {
  transform: scale(1.1);
  filter: brightness(0.7) saturate(0.7);
}

.gm-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 12, 0);
  transition: background 0.4s;
}

.gm-cell:hover::after {
  background: rgba(10, 26, 12, 0.3);
}

.gm-tall {
  grid-row: span 2;
}

.gm-wide {
  grid-column: span 2;
}

/* Gallery label overlay */
.gallery-label {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  z-index: 2;
  pointer-events: none;
}

/* ── 10. Pull Quote ── */
#pull-quote {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--forest-deep);
}

#pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&q=50') center/cover;
  opacity: 0.07;
}

.quote-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  display: block;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.55;
}

.quote-text em {
  color: var(--gold);
  font-style: italic;
}

.quote-author {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.quote-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── 11. Awards ── */
#awards {
  position: relative;
  padding: 90px 0;
  background: var(--forest-dark);
  overflow: hidden;
}

.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  margin-top: 3rem;
  background: var(--gold-border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.award-item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: rgba(15, 32, 18, 0.92);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.award-item:hover {
  background: rgba(28, 58, 30, 0.95);
}

.award-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.award-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.award-year {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── 12. CTA Section ── */
#about-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  background: var(--forest-mid);
}

#about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506974210756-8e1b8985d348?w=1400&q=50') center/cover;
  opacity: 0.1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.btn-gold {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(201, 168, 76, 0.5);
  color: #ffffff;
}

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.45);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
}

/* ── 13. Forest Animations (shared) ── */
.leaf-particle {
  position: fixed;
  top: -60px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  user-select: none;
  animation: leafFall linear forwards;
  will-change: transform, opacity;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }

  5% {
    opacity: 0.7;
  }

  92% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(700deg) translateX(var(--drift, 80px));
  }
}

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9f06a;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 6px 2px rgba(180, 240, 100, 0.7), 0 0 14px 4px rgba(140, 220, 60, 0.3);
  animation: fireflyLife linear infinite;
  will-change: transform, opacity;
}

@keyframes fireflyLife {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  10% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.4;
  }

  75% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translate(var(--fx, 30px), var(--fy, -40px));
  }
}

#ff-hero,
#ff-story,
#ff-cta {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

/* ── 14. Shared Utilities ── */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label.center {
  justify-content: center;
}

.section-label::before,
.section-label.center::after {
  content: '';
  display: inline-block;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-label::before {
  width: 36px;
}

.section-label.center::after {
  width: 36px;
}

.section-label:not(.center)::before {
  display: none;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.gold-line {
  display: block;
  width: 55px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 0;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

.section-header-center {
  text-align: center;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

.reveal.scale-in {
  transform: scale(0.92);
}

.reveal.d1 {
  transition-delay: 0.08s;
}

.reveal.d2 {
  transition-delay: 0.18s;
}

.reveal.d3 {
  transition-delay: 0.28s;
}

.reveal.d4 {
  transition-delay: 0.40s;
}

.reveal.d5 {
  transition-delay: 0.52s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── 15. Responsive ── */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gm-tall {
    grid-row: span 1;
  }

  .gm-wide {
    grid-column: span 2;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-item+.stat-item::before {
    display: none;
  }

  .awards-row {
    gap: 2px;
  }
}

@media (max-width: 900px) {
  #navbar {
    padding: 1rem 1.5rem;
  }

  #navbar.scrolled {
    padding: 0.75rem 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  #menu-toggle {
    display: flex;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .story-img-frame {
    height: 380px;
  }

  .story-badge {
    width: 90px;
    height: 90px;
    bottom: -18px;
    right: -12px;
  }

  .story-badge-num {
    font-size: 1.4rem;
  }

  .tl-list::before {
    left: 24px;
  }

  .tl-item {
    grid-template-columns: 48px 1fr !important;
  }

  .tl-item .tl-content {
    grid-column: 2 !important;
    text-align: left !important;
    padding-left: 1.5rem !important;
    padding-right: 0 !important;
  }

  .tl-item .tl-dot {
    grid-column: 1 !important;
  }

  .tl-item .tl-spacer {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
}

@media (max-width: 640px) {
  #about-hero {
    height: 65vh;
  }

  .ah-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }

  .gm-wide {
    grid-column: span 2;
  }

  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    background: none;
    gap: 1rem;
  }

  .team-card {
    height: 320px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    padding: 0 1.5rem;
  }

  .story-grid {
    padding: 0 1.5rem;
  }

  .timeline-inner {
    padding: 0 1.5rem;
  }

  .quote-inner {
    padding: 0 1.5rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .awards-row {
    flex-direction: column;
    align-items: stretch;
  }

  .award-item {
    max-width: 100%;
  }
}

/* ============================================================
   SIMILIPAL JUNGLE RESORT — contact.css
   Contact Page · Dark Forest Luxury Theme
   Sections:
     1.  CSS Variables & Reset
     2.  Page Hero
     3.  Contact Layout (Form + Info split)
     4.  Contact Form
     5.  Contact Info Panel
     6.  Info Cards (phone, email, address, hours)
     7.  Map Section
     8.  FAQ Accordion
     9.  Quick Links Strip
     10. Forest Animations (leaves, fireflies, mist)
     11. Shared Utilities (section-label, reveal, buttons)
     12. Responsive
============================================================ */

/* ── 1. CSS Variables & Reset ── */
:root {
  --forest-deep: #0a1a0c;
  --forest-dark: #0f2012;
  --forest-mid: #1a3a1d;
  --forest-moss: #2d5a30;
  --forest-sage: #4a7c59;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-border: rgba(201, 168, 76, 0.22);
  --gold-border-h: rgba(201, 168, 76, 0.55);
  --gold-glow: rgba(201, 168, 76, 0.06);
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --text-muted: rgba(245, 240, 232, 0.65);
  --text-faint: rgba(245, 240, 232, 0.38);
  --error: #e74c3c;
  --success: #2ecc71;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--forest-deep);
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

/* ── 2. Page Hero ── */
#contact-hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
}

.ch-bg {
  position: absolute;
  inset: -8%;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=85') center / cover no-repeat;
  animation: heroPan 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroPan {
  from {
    transform: scale(1) translateX(0);
  }

  to {
    transform: scale(1.09) translateX(-2%);
  }
}

.ch-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 26, 12, 0.65) 0%, rgba(10, 26, 12, 0.18) 45%, rgba(10, 26, 12, 0.88) 100%),
    linear-gradient(to right, rgba(10, 26, 12, 0.45) 0%, transparent 55%);
}

.ch-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px,
      rgba(10, 26, 12, 0.07) 2px, rgba(10, 26, 12, 0.07) 4px);
}

/* Hero mist */
.ch-mist {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 220, 190, 0.08) 0%, transparent 70%);
  animation: driftMist linear infinite;
}

.ch-mist-1 {
  width: 700px;
  height: 120px;
  bottom: 18%;
  left: -200px;
  animation-duration: 34s;
  animation-delay: 0s;
}

.ch-mist-2 {
  width: 500px;
  height: 85px;
  bottom: 30%;
  left: -140px;
  animation-duration: 25s;
  animation-delay: 10s;
}

@keyframes driftMist {
  0% {
    transform: translateX(-8%) scaleY(1);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(112%) scaleY(0.8);
    opacity: 0;
  }
}

/* Particle containers */
#ch-leaves,
#ch-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#ch-leaves {
  z-index: 2;
}

#ch-fireflies {
  z-index: 3;
}

.ch-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 2rem;
}

.ch-content>* {
  opacity: 0;
  transform: translateY(28px);
  animation: slideUp 0.9s ease forwards;
}

.ch-content .ch-crumb {
  animation-delay: 0.2s;
}

.ch-content .ch-title {
  animation-delay: 0.45s;
}

.ch-content .ch-rule {
  animation-delay: 0.72s;
}

.ch-content .ch-sub {
  animation-delay: 0.85s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ch-crumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ch-crumb a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}

.ch-crumb a:hover {
  color: var(--gold);
}

.ch-crumb .sep {
  opacity: 0.35;
}

.ch-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--warm-white);
}

.ch-title em {
  color: var(--gold);
  font-style: italic;
}

.ch-rule {
  width: 75px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem auto;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.ch-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.78);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Scroll hint */
.ch-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  opacity: 0;
  animation: slideUp 0.8s ease 1.2s forwards;
}

.ch-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.38);
}

.ch-scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1)
  }

  50% {
    opacity: 0.25;
    transform: scaleY(0.4)
  }
}

/* ── 3. Contact Layout ── */
#contact-main {
  position: relative;
  padding: 100px 0 120px;
  background: var(--forest-dark);
  overflow: hidden;
}

#contact-main::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 85% 25%, rgba(45, 90, 48, 0.16), transparent 55%),
    radial-gradient(ellipse at 5% 80%, rgba(45, 90, 48, 0.1), transparent 50%);
}

/* Firefly container inside form section */
#cm-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

/* ── 4. Contact Form ── */
.form-panel {
  background: rgba(15, 32, 18, 0.92);
  border: 1px solid var(--gold-border);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

/* Gold shimmer on top */
.form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: shimmerSweep 4s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0% {
    left: -100%
  }

  60%,
  100% {
    left: 100%
  }
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.form-title em {
  color: var(--gold);
  font-style: italic;
}

.form-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

/* Form field groups */
.fg {
  margin-bottom: 1.4rem;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.f-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 7px;
}

.f-lbl .req {
  color: var(--error);
  margin-left: 2px;
}

.f-inp,
.f-select,
.f-textarea {
  width: 100%;
  padding: 0.88rem 1.1rem;
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.f-inp:focus,
.f-select:focus,
.f-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.f-inp::placeholder,
.f-textarea::placeholder {
  color: rgba(245, 240, 232, 0.28);
}

.f-select option {
  background: var(--forest-deep);
  color: var(--cream);
}

.f-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.f-inp.err,
.f-select.err,
.f-textarea.err {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.f-err {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--error);
  margin-top: 5px;
  display: none;
}

/* Character count */
.char-count {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: right;
  margin-top: 5px;
  transition: color 0.3s;
}

.char-count.warn {
  color: var(--gold);
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 1.05rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.32);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 38px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit i {
  font-size: 0.85rem;
}

/* Success state */
#form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

#form-success .success-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.2rem;
  animation: popIn 0.5s var(--ease-out) forwards;
}

@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

#form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

#form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 5. Contact Info Panel ── */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-header {
  margin-bottom: 0.5rem;
}

.info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
}

.info-title em {
  color: var(--gold);
  font-style: italic;
}

.info-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 6. Info Cards ── */
.info-card {
  background: rgba(15, 32, 18, 0.92);
  border: 1px solid var(--gold-border);
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.35s;
}

.info-card:hover {
  border-color: var(--gold-border-h);
  background: rgba(28, 58, 30, 0.95);
  transform: translateX(4px);
}

.info-card:hover::before {
  background: var(--gold);
}

.info-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.info-card:hover .info-icon-wrap {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold-border-h);
}

.info-icon-wrap i {
  color: var(--gold);
  font-size: 1rem;
}

.info-card-lbl {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.info-card-val {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.55;
}

.info-card-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.info-card-val a:hover {
  color: var(--gold);
}

.info-card-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-faint);
  margin-top: 3px;
}

/* Social row */
.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  color: var(--text-faint);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.soc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ── 7. Map Section ── */
#map-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}

.map-wrapper {
  position: relative;
  height: 460px;
  background: var(--forest-mid);
  overflow: hidden;
}

/* Realistic forest map mockup */
.map-forest-bg {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(45, 90, 48, 0.55), transparent 70%),
    radial-gradient(ellipse 40% 40% at 75% 35%, rgba(30, 64, 30, 0.6), transparent 65%),
    radial-gradient(ellipse 50% 60% at 55% 80%, rgba(20, 50, 20, 0.5), transparent 70%),
    linear-gradient(160deg, #0d2010 0%, #152916 40%, #1a3a1d 70%, #0f2012 100%);
  position: absolute;
  inset: 0;
}

/* Road/river lines */
.map-road {
  position: absolute;
  pointer-events: none;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 20px;
}

.map-road.h {
  height: 3px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.map-road.v {
  width: 3px;
  top: 0;
  bottom: 0;
  left: 35%;
}

.map-road.d {
  height: 2px;
  width: 60%;
  background: rgba(180, 200, 170, 0.12);
  top: 38%;
  left: 20%;
  transform: rotate(-8deg);
  border-radius: 50px;
}

/* Forest texture dots */
.map-tree-cluster {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.18;
  user-select: none;
  pointer-events: none;
  animation: treeSway 6s ease-in-out infinite alternate;
}

@keyframes treeSway {
  from {
    transform: rotate(-2deg)
  }

  to {
    transform: rotate(2deg)
  }
}

/* Location pin */
.map-pin-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 5;
  cursor: pointer;
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0)
  }

  50% {
    transform: translate(-50%, -50%) translateY(-8px)
  }
}

.map-pin-outer {
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.55), 0 0 0 6px rgba(201, 168, 76, 0.15);
}

.map-pin-outer i {
  color: var(--forest-deep);
  font-size: 1rem;
  transform: rotate(45deg);
}

.map-pin-shadow {
  width: 20px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  margin-top: 2px;
  animation: shadowPulse 2s ease-in-out infinite;
}

@keyframes shadowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.35
  }

  50% {
    transform: scale(0.7);
    opacity: 0.15
  }
}

/* Map popup card */
.map-popup {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 16px);
  transform: translateX(-50%);
  background: rgba(15, 32, 18, 0.97);
  border: 1px solid var(--gold-border);
  padding: 1rem 1.4rem;
  width: 240px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 6;
  animation: popupAppear 0.4s var(--ease-out) forwards;
}

.map-popup::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 7px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--gold-border);
}

@keyframes popupAppear {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

.popup-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 3px;
}

.popup-addr {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}

/* Map directions bar */
.map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 3rem;
  background: rgba(15, 32, 18, 0.95);
  border-top: 1px solid var(--gold-border);
}

.map-bar-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
}

.map-bar-text strong {
  color: var(--gold);
  font-style: normal;
}

.btn-directions {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn-directions:hover {
  background: var(--gold);
  color: #ffffff;
}

/* ── 8. FAQ Accordion ── */
#faq {
  position: relative;
  padding: 100px 0;
  background: var(--forest-dark);
  overflow: hidden;
}

#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 90% 50%, rgba(45, 90, 48, 0.14), transparent 60%);
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--gold-border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.faq-q-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.3;
  transition: color 0.3s;
}

.faq-item.open .faq-q-text {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  transition: transform 0.4s var(--ease), background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
  background: rgba(201, 168, 76, 0.12);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-a-inner {
  padding: 0 0 1.4rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.82;
}

/* ── 9. Quick Links Strip ── */
#quick-links {
  position: relative;
  padding: 60px 0;
  background: var(--forest-mid);
  overflow: hidden;
}

#quick-links::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1511497584788-876760111969?w=1400&q=40') center/cover;
  opacity: 0.07;
}

.ql-row {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
  background: var(--gold-border);
}

.ql-item {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  background: rgba(10, 26, 12, 0.85);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, transform 0.35s;
}

.ql-item:hover {
  background: rgba(28, 58, 30, 0.95);
  transform: translateY(-4px);
}

.ql-item-icon {
  font-size: 1.6rem;
  display: block;
  transition: transform 0.4s var(--ease);
}

.ql-item:hover .ql-item-icon {
  transform: scale(1.2) rotate(-5deg);
}

.ql-item-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.4;
}

.ql-item-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ── 10. Forest Animations ── */
.leaf-particle {
  position: fixed;
  top: -60px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  user-select: none;
  animation: leafFall linear forwards;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }

  5% {
    opacity: 0.7;
  }

  92% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(680deg) translateX(var(--drift, 80px));
  }
}

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9f06a;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 6px 2px rgba(180, 240, 100, 0.7), 0 0 14px 4px rgba(140, 220, 60, 0.3);
  animation: fireflyLife linear infinite;
}

@keyframes fireflyLife {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  10% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.4;
  }

  75% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translate(var(--fx, 30px), var(--fy, -40px));
  }
}

/* ── 11. Shared Utilities ── */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label.center {
  justify-content: center;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-label.center::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-label:not(.center)::before {
  display: none;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.gold-line {
  display: block;
  width: 55px;
  height: 2px;
  background: var(--gold);
  margin: 1.1rem 0 0;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.from-left {
  transform: translateX(-36px);
}

.reveal.from-right {
  transform: translateX(36px);
}

.reveal.d1 {
  transition-delay: 0.08s;
}

.reveal.d2 {
  transition-delay: 0.18s;
}

.reveal.d3 {
  transition-delay: 0.28s;
}

.reveal.d4 {
  transition-delay: 0.40s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── 12. Responsive ── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .form-panel {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  #contact-hero {
    height: 60vh;
  }

  .contact-grid {
    padding: 0 1.5rem;
  }

  .fg-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fg-row .fg {
    margin-bottom: 1.4rem;
  }

  .map-bar {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .btn-directions {
    width: 100%;
    text-align: center;
  }

  .faq-inner {
    padding: 0 1.5rem;
  }

  .ql-row {
    gap: 2px;
  }

  .ql-item {
    min-width: 140px;
  }

  #quick-links {
    padding: 0 1rem 60px;
  }

  .ql-row {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-panel {
    padding: 2rem 1.5rem;
  }

  .ch-title {
    font-size: clamp(2.3rem, 14vw, 3.2rem);
  }

  .ql-item {
    min-width: 120px;
    padding: 1.5rem 1rem;
  }

  .info-card {
    padding: 1.3rem 1.2rem;
    gap: 1rem;
  }

  .map-popup {
    width: 200px;
  }
}

/* ============================================================
   SIMILIPAL JUNGLE RESORT — gallery.css
   Gallery Page · Dark Forest Luxury Theme
   Sections:
     1.  CSS Variables & Reset
     2.  Page Hero
     3.  360° Panoramic Viewer
     4.  Filter Tab Bar
     5.  Masonry / Grid Gallery
     6.  Lightbox Fullscreen Viewer
     7.  Video Reel Strip
     8.  CTA Banner
     9.  Forest Animations (leaves, fireflies, mist)
     10. Shared Utilities & Reveal
     11. Responsive
============================================================ */

/* ── 1. Variables & Reset ── */
:root {
  --forest-deep: #0a1a0c;
  --forest-dark: #0f2012;
  --forest-mid: #1a3a1d;
  --forest-moss: #2d5a30;
  --forest-sage: #4a7c59;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-border: rgba(201, 168, 76, 0.22);
  --gold-border-h: rgba(201, 168, 76, 0.55);
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --text-muted: rgba(245, 240, 232, 0.65);
  --text-faint: rgba(245, 240, 232, 0.38);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--forest-deep);
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

/* ── 2. Page Hero ── */
#gallery-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
}

.gh-bg {
  position: absolute;
  inset: -8%;
  background: url('images/gallerybg.png') center / cover no-repeat;
  animation: ghZoom 26s ease-in-out infinite alternate;
}

@keyframes ghZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.1)
  }
}

.gh-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 26, 12, 0.6) 0%, rgba(10, 26, 12, 0.15) 40%, rgba(10, 26, 12, 0.88) 100%),
    linear-gradient(to right, rgba(10, 26, 12, 0.4) 0%, transparent 55%);
}

.gh-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
}

.gh-content>* {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 0.9s ease forwards;
}

.gh-content .gh-crumb {
  animation-delay: 0.2s;
}

.gh-content .gh-title {
  animation-delay: 0.45s;
}

.gh-content .gh-rule {
  animation-delay: 0.7s;
}

.gh-content .gh-sub {
  animation-delay: 0.85s;
}

.gh-content .gh-tabs-hero {
  animation-delay: 1.05s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.gh-crumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gh-crumb a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}

.gh-crumb a:hover {
  color: var(--gold);
}

.gh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--warm-white);
}

.gh-title em {
  color: var(--gold);
  font-style: italic;
}

.gh-rule {
  width: 75px;
  height: 1px;
  background: var(--gold);
  margin: 1.7rem auto;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.gh-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.78);
  max-width: 500px;
  margin: 0 auto;
}

#gh-leaves,
#gh-ff {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

/* Scroll hint */
.gh-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.gh-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.38);
}

.gh-scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1)
  }

  50% {
    opacity: 0.25;
    transform: scaleY(0.45)
  }
}

/* ── 3. 360° Panoramic Viewer ── */
#panorama-section {
  position: relative;
  padding: 80px 0 0;
  background: var(--forest-deep);
  overflow: hidden;
}

#panorama-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(45, 90, 48, 0.2), transparent 60%);
}

.pano-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

/* Viewer shell */
.pano-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.pano-wrap:active {
  cursor: grabbing;
}

/* The panoramic strip — much wider than viewport, dragged by JS */
.pano-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: none;
  /* JS handles movement */
  will-change: transform;
}

.pano-slide {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pano-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.4s;
}

.pano-slide.active img {
  filter: brightness(0.95) saturate(1);
}

/* Slide overlay gradient */
.pano-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 26, 12, 0.5) 0%, transparent 18%, transparent 82%, rgba(10, 26, 12, 0.5) 100%);
  pointer-events: none;
}

/* Scene info overlay */
.pano-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  padding: 1.2rem 2rem 1.6rem;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.95) 0%, rgba(10, 26, 12, 0.6) 60%, transparent 100%);
  pointer-events: none;
}

.pano-scene-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.pano-scene-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 2px;
}

.pano-scene-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Drag hint */
.pano-drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.5s;
}

.pano-drag-hint.hidden {
  opacity: 0;
}

.pano-drag-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: dragPulse 2s ease-in-out infinite;
}

@keyframes dragPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3)
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0)
  }
}

.pano-drag-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}

/* Arrow nav buttons */
.pano-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 26, 12, 0.7);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
  backdrop-filter: blur(8px);
}

.pano-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-border-h);
  transform: translateY(-50%) scale(1.08);
}

.pano-btn.prev {
  left: 1.5rem;
}

.pano-btn.next {
  right: 1.5rem;
}

/* Scene dots */
.pano-dots {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}

.pano-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.pano-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* Scene selector tabs below viewer */
.pano-scenes {
  display: flex;
  gap: 0;
  overflow-x: auto;
  background: rgba(15, 32, 18, 0.95);
  border-bottom: 1px solid var(--gold-border);
  padding: 0 3rem;
  scrollbar-width: none;
}

.pano-scenes::-webkit-scrollbar {
  display: none;
}

.pano-scene-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.pano-scene-tab:hover {
  color: var(--cream);
}

.pano-scene-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── 5. Masonry / Grid Gallery ── */
#gallery-grid-section {
  padding: 60px 0 100px;
  background: var(--forest-dark);
  position: relative;
  z-index: 1;
  isolation: isolate;
  /* creates a new stacking context */
  overflow: hidden;
  /* clips the absolute firefly container */
}

.gallery-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  transition: opacity 0.4s ease;
}

.gallery-grid.filtering {
  opacity: 0.4;
  pointer-events: none;
}

/* Masonry layout */
.gallery-grid.masonry {
  display: columns;
  /* fallback */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 6px;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest-mid);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.g-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Span variants */
.g-item.span-2w {
  grid-column: span 2;
}

.g-item.span-2h {
  grid-row: span 2;
}

.g-item.span-2b {
  grid-column: span 2;
  grid-row: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
  transition: transform 0.7s var(--ease), filter 0.7s;
}

.g-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.68) saturate(0.78);
}

/* Hover overlay */
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 12, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  transition: background 0.4s;
}

.g-item:hover .g-overlay {
  background: rgba(10, 26, 12, 0.45);
}

.g-overlay-content {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s;
}

.g-item:hover .g-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.g-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 2px;
}

/* Expand icon */
.g-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 26, 12, 0.7);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.35s;
  backdrop-filter: blur(8px);
}

.g-item:hover .g-expand {
  opacity: 1;
}

/* 360 badge on panoramic items */
.badge-360 {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(201, 168, 76, 0.9);
  color: #ffffff;
}

/* Load more */
.load-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

.btn-load-more {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-load-more:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

/* ── 6. Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 26, 12, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  animation: lbFadeIn 0.3s ease forwards;
}

#lightbox.open {
  display: flex;
}

@keyframes lbFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.lb-inner {
  position: relative;
  max-width: 94vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-img-wrap {
  position: relative;
  max-width: 1200px;
  width: 100%;
  border: 1px solid var(--gold-border);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
}

#lb-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  width: 100%;
  transition: opacity 0.25s;
}

#lb-img.fading {
  opacity: 0;
}

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 32, 18, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.3s, border-color 0.3s;
}

.lb-close:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-border-h);
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 32, 18, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}

.lb-nav:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-border-h);
}

.lb-nav.prev {
  left: 1.5rem;
}

.lb-nav.next {
  right: 1.5rem;
}

.lb-nav:hover.prev {
  transform: translateY(-50%) translateX(-3px);
}

.lb-nav:hover.next {
  transform: translateY(-50%) translateX(3px);
}

.lb-caption {
  margin-top: 1.2rem;
  text-align: center;
  max-width: 700px;
  padding: 0 1rem;
}

.lb-caption-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.lb-caption-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

.lb-counter {
  position: fixed;
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  z-index: 10000;
}

.lb-counter span {
  color: var(--gold);
}

/* ── 7. Video Reel Strip ── */
#video-strip {
  padding: 80px 0;
  background: var(--forest-deep);
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
}

#video-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(45, 90, 48, 0.15), transparent 60%);
}

.video-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 3rem;
}

.video-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  transition: border-color 0.35s, transform 0.35s;
}

.video-card:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-4px);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 0.7s var(--ease), filter 0.7s;
}

.video-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.7);
}

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.9) 0%, transparent 60%);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.88);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 0 0 10px rgba(201, 168, 76, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover .video-play {
  transform: translate(-50%, -55%) scale(1.12);
  box-shadow: 0 0 0 16px rgba(201, 168, 76, 0.1);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.4rem;
  z-index: 2;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 3px;
}

.video-dur {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── 8. CTA Banner ── */
#gallery-cta {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding: 100px 0;
  text-align: center;
  background: var(--forest-mid);
  overflow: hidden;
}

#gallery-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&q=40') center/cover;
  opacity: 0.09;
}

.gcta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gcta-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1.4rem;
}

.gcta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.btn-gold {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(201, 168, 76, 0.5);
  color: #ffffff;
}

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.45);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
}

/* ── 9. Forest Animations ── */
.leaf-particle {
  position: fixed;
  top: -60px;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  user-select: none;
  animation: leafFall linear forwards;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }

  5% {
    opacity: 0.7;
  }

  92% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(680deg) translateX(var(--drift, 80px));
  }
}

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9f06a;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 6px 2px rgba(180, 240, 100, 0.7), 0 0 14px 4px rgba(140, 220, 60, 0.3);
  animation: fireflyLife linear infinite;
}

@keyframes fireflyLife {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  10% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.4;
  }

  75% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translate(var(--fx, 30px), var(--fy, -40px));
  }
}

/* ── 10. Shared Utilities ── */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label.center {
  justify-content: center;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-label.center::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-label:not(.center)::before {
  display: none;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.gold-line {
  display: block;
  width: 55px;
  height: 2px;
  background: var(--gold);
  margin: 1.1rem 0 0;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.d1 {
  transition-delay: 0.08s
}

.reveal.d2 {
  transition-delay: 0.18s
}

.reveal.d3 {
  transition-delay: 0.28s
}

.reveal.d4 {
  transition-delay: 0.4s
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── 11. Responsive ── */
@media (max-width:1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px) {
  #gallery-hero {
    height: 60vh;
  }

  .gh-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .pano-wrap {
    height: 340px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .g-item.span-2w {
    grid-column: span 2;
  }

  .g-item.span-2h {
    grid-row: span 1;
  }

  .g-item.span-2b {
    grid-column: span 2;
    grid-row: span 1;
  }

  .filter-inner {
    padding: 0 1.5rem;
  }

  .gallery-inner {
    padding: 0 1.2rem;
  }

  .pano-scenes {
    padding: 0 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .lb-nav.prev {
    left: 0.8rem;
  }

  .lb-nav.next {
    right: 0.8rem;
  }
}

@media (max-width:480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .pano-wrap {
    height: 280px;
  }

  .gcta-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .pano-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

/* ── SLIDE 6 LEAF DECOR ── */
.slide6-leaf-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 90%;
  max-width: 50%;
  object-fit: contain;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  filter: grayscale(20%);
  /* slightly mute the colors so it blends nicely */
}

@media (max-width: 768px) {
  .slide6-leaf-bg {
    left: -10%;
    height: 50%;
    opacity: 0.15;
  }
}

.footer-glass {
  position: relative;
  background: transparent;
  padding: 60px 20px;
  color: #fff;
  overflow: hidden;
}

/* ──────────────────────────────────────────
   10. SOCIAL MEDIA SECTION
────────────────────────────────────────── */
.socMedia {
  padding: 80px 0;
  width: 100%;
}

.social-card {
  position: relative;
  background: rgba(15, 32, 18, 0.75);
  /* slightly darker for better contrast */
  border-radius: 24px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* Base border */
.social-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  /* This defines the border thickness */
  background: rgba(201, 168, 76, 0.15);
  /* Static fallback border */
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  pointer-events: none;
  z-index: 2;
}

/* Glowing rotating border (Always active) */
.social-card::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: conic-gradient(from 0deg,
      transparent 15%,
      var(--gold) 25%,
      var(--gold-light) 30%,
      var(--gold) 35%,
      transparent 45%);
  animation: rotateGlow 4s linear infinite;
  opacity: 1;
  /* Always visible */
  z-index: -1;
}

.social-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.insta-container,
.fb-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.fb-card-wrapper iframe {
  width: 100% !important;
  max-width: 500px;
}

#slide-7.fp-slide {
  background: radial-gradient(circle at 20% 30%, rgba(45, 90, 48, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.05), transparent 50%);
}

@media (max-width: 768px) {
  .socMedia {
    padding: 40px 15px;
  }

  .social-card {
    margin-bottom: 2rem;
  }

  .insta-container,
  .fb-card-wrapper {
    height: auto !important;
    background: transparent !important;
    border-radius: 12px;
    padding: 0;
  }
}

/* Widen Footer Content on Laptop/Desktop */
@media (min-width: 1025px) {
  .footer-glass {
    max-width: 1250px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-strip,
  .footer-nav {
    width: 100%;
    gap: 3rem;
    justify-content: space-evenly;
  }

  .footer-social {
    gap: 2rem;
  }
}

/* ============================================================
   SIMILIPAL JUNGLE RESORT — experience.css
   Experiences Page · Dark Forest Luxury Theme
   Sections:
     1.  Variables & Reset
     2.  Page Hero
     3.  Experience Overview Strip
     4.  Featured Experiences (large cards)
     5.  Experience Detail Tabs
     6.  Seasonal Guide
     7.  Booking Strip
     8.  Testimonial Band
     9.  More Experiences Grid
     10. CTA Section
     11. Forest Animations (leaves, fireflies, mist, birds)
     12. Shared Utilities & Reveal
     13. Responsive
============================================================ */

/* ── 1. Variables & Reset ── */
:root {
  --forest-deep: #0a1a0c;
  --forest-dark: #0f2012;
  --forest-mid: #1a3a1d;
  --forest-moss: #2d5a30;
  --forest-sage: #4a7c59;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-border: rgba(201, 168, 76, 0.22);
  --gold-border-h: rgba(201, 168, 76, 0.55);
  --gold-glow: rgba(201, 168, 76, 0.1);
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --text-muted: rgba(245, 240, 232, 0.65);
  --text-faint: rgba(245, 240, 232, 0.38);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--forest-deep);
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

/* ── 2. Page Hero ── */
#exp-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-deep);
  padding-top: 100px;
}

.eh-bg {
  position: absolute;
  inset: -8%;
  background: url('images/expbg.jpeg') center / cover no-repeat;
  animation: ehZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ehZoom {
  from {
    transform: scale(1) translateX(0);
  }

  to {
    transform: scale(1.1) translateX(-2%);
  }
}

.eh-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 26, 12, 0.5) 0%, rgba(10, 26, 12, 0.05) 40%, rgba(10, 26, 12, 0.88) 100%),
    linear-gradient(to right, rgba(10, 26, 12, 0.55) 0%, transparent 55%);
}

.eh-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px,
      rgba(10, 26, 12, 0.07) 2px, rgba(10, 26, 12, 0.07) 4px);
  pointer-events: none;
}

/* Hero particles */
#eh-leaves,
#eh-ff,
#eh-birds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#eh-leaves {
  z-index: 2;
}

#eh-ff {
  z-index: 3;
}

#eh-birds {
  z-index: 4;
}

/* Hero mist */
.eh-mist {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 220, 190, 0.08) 0%, transparent 70%);
  animation: driftMist linear infinite;
}

.eh-mist-1 {
  width: 750px;
  height: 130px;
  bottom: 20%;
  left: -220px;
  animation-duration: 32s;
}

.eh-mist-2 {
  width: 550px;
  height: 95px;
  bottom: 35%;
  left: -160px;
  animation-duration: 24s;
  animation-delay: 8s;
}

.eh-mist-3 {
  width: 640px;
  height: 110px;
  bottom: 10%;
  left: -200px;
  animation-duration: 40s;
  animation-delay: 14s;
}

@keyframes driftMist {
  0% {
    transform: translateX(-8%) scaleY(1);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 0.75;
  }

  100% {
    transform: translateX(112%) scaleY(0.8);
    opacity: 0;
  }
}

/* Hero content */
.eh-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  padding: 0 2rem;
  text-align: center;
}

.eh-content>* {
  opacity: 0;
  transform: translateY(28px);
  animation: ehEntrance 0.9s ease forwards;
}

.eh-content .eh-crumb {
  animation-delay: 0.2s;
}

.eh-content .eh-tag {
  animation-delay: 0.4s;
}

.eh-content .eh-title {
  animation-delay: 0.6s;
}

.eh-content .eh-rule {
  animation-delay: 0.85s;
}

.eh-content .eh-subtitle {
  animation-delay: 1s;
}

.eh-content .eh-pills {
  animation-delay: 1.2s;
}

@keyframes ehEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eh-crumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.eh-crumb a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}

.eh-crumb a:hover {
  color: var(--gold);
}

.eh-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 18px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.5rem;
  background: rgba(201, 168, 76, 0.06);
}

.eh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--warm-white);
}

.eh-title em {
  color: var(--gold);
  font-style: italic;
}

.eh-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.eh-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Experience type pills */
.eh-pills {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.eh-pill {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  background: rgba(10, 26, 12, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: rgba(245, 240, 232, 0.7);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  text-decoration: none;
}

.eh-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Scroll arrow */
.eh-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  opacity: 0;
  animation: ehEntrance 0.8s ease 1.5s forwards;
}

.eh-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.38);
}

.eh-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1)
  }

  50% {
    opacity: 0.25;
    transform: scaleY(0.45)
  }
}

/* Corner brackets */
.eh-bracket {
  position: absolute;
  z-index: 4;
  width: 55px;
  height: 55px;
  opacity: 0.3;
}

.eh-bracket.tl {
  top: 2rem;
  left: 2.5rem;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.eh-bracket.tr {
  top: 2rem;
  right: 2.5rem;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.eh-bracket.bl {
  bottom: 2rem;
  left: 2.5rem;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.eh-bracket.br {
  bottom: 2rem;
  right: 2.5rem;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* ── 3. Overview Strip ── */
#overview-strip {
  position: relative;
  z-index: 2;
  isolation: isolate;
  background: rgba(15, 32, 18, 0.97);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.overview-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

.ov-item {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.ov-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-border);
}

.ov-item:last-child::after {
  display: none;
}

.ov-item:hover {
  background: rgba(45, 90, 48, 0.1);
}

.ov-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}

.ov-num {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.ov-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ── 4. Featured Experiences ── */
#featured-exp {
  position: relative;
  padding: 100px 0;
  background: var(--forest-dark);
  overflow: hidden;
  isolation: isolate;
}

#featured-exp::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 90% 20%, rgba(45, 90, 48, 0.18), transparent 55%),
    radial-gradient(ellipse at 5% 80%, rgba(45, 90, 48, 0.12), transparent 50%);
}

/* Firefly container */
#feat-ff {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.featured-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* Featured experience card — large horizontal layout */
.exp-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s, box-shadow 0.4s;
  margin-bottom: 4px;
}

.exp-card-featured:hover {
  border-color: var(--gold-border-h);
  box-shadow: 0 24px 70px rgba(10, 26, 12, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.exp-card-featured.reverse {
  direction: rtl;
}

.exp-card-featured.reverse>* {
  direction: ltr;
}

/* Image pane */
.ecf-img {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.ecf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
  transition: transform 0.9s var(--ease), filter 0.9s;
}

.exp-card-featured:hover .ecf-img img {
  transform: scale(1.06);
  filter: brightness(0.72) saturate(0.78);
}

.ecf-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(15, 32, 18, 0.6) 100%);
}

.exp-card-featured.reverse .ecf-img::after {
  background: linear-gradient(to left, transparent 60%, rgba(15, 32, 18, 0.6) 100%);
}

/* Number badge */
.ecf-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
}

/* Duration + Difficulty badges */
.ecf-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.ecf-badge {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  backdrop-filter: blur(8px);
}

.ecf-badge.time {
  background: rgba(10, 26, 12, 0.82);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.ecf-badge.diff {
  border: 1px solid transparent;
}

.ecf-badge.easy {
  background: rgba(46, 204, 113, 0.18);
  color: #2ecc71;
  border-color: rgba(46, 204, 113, 0.3);
}

.ecf-badge.medium {
  background: rgba(241, 196, 15, 0.18);
  color: #f1c40f;
  border-color: rgba(241, 196, 15, 0.3);
}

.ecf-badge.hard {
  background: rgba(231, 76, 60, 0.18);
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

/* Text pane */
.ecf-body {
  background: rgba(15, 32, 18, 0.95);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.ecf-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ecf-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.ecf-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
}

.ecf-title em {
  color: var(--gold);
  font-style: italic;
}

.ecf-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Highlights list */
.ecf-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ecf-highlights li {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ecf-highlights li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* CTA row */
.ecf-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-exp-book {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.32);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-exp-book:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(201, 168, 76, 0.5);
  color: var(--forest-deep);
}

.ecf-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
}

.ecf-price span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  vertical-align: super;
  margin-right: 3px;
}

/* ── 5. Tabbed Detail Section ── */
#exp-tabs-section {
  position: relative;
  padding: 100px 0;
  background: var(--forest-deep);
  overflow: hidden;
  isolation: isolate;
}

#exp-tabs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(45, 90, 48, 0.14), transparent 60%);
}

.tabs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* Tab bar */
.exp-tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gold-border);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 3.5rem;
}

.exp-tab-bar::-webkit-scrollbar {
  display: none;
}

.exp-tab-btn {
  flex-shrink: 0;
  padding: 1rem 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-tab-btn i {
  font-size: 0.85rem;
}

.exp-tab-btn:hover {
  color: var(--cream);
}

.exp-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Tab panels */
.exp-tab-panel {
  display: none;
}

.exp-tab-panel.active {
  display: block;
  animation: panelFade 0.45s ease;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Panel two-col layout */
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.panel-img {
  border: 1px solid var(--gold-border);
  overflow: hidden;
  position: relative;
  height: 420px;
}

.panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.85);
}

.panel-img::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: 0.5;
  z-index: 2;
}

.panel-img::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.5;
  z-index: 2;
}

.panel-body {}

.panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.panel-meta-item {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.panel-meta-item i {
  font-size: 0.7rem;
}

.panel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.88;
  margin-bottom: 1.6rem;
}

.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.6;
}

.panel-list li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.panel-note {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0.9rem 1.2rem;
  border-left: 2px solid var(--gold-border);
  background: rgba(201, 168, 76, 0.04);
  line-height: 1.7;
  margin-top: 1rem;
}

/* ── 6. Seasonal Guide ── */
#seasonal {
  position: relative;
  padding: 100px 0;
  background: var(--forest-dark);
  overflow: hidden;
  isolation: isolate;
}

.seasonal-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
  background: var(--gold-border);
}

.season-card {
  background: rgba(15, 32, 18, 0.92);
  padding: 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.season-card:hover {
  background: rgba(28, 58, 30, 0.97);
}

.season-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: left 0.6s var(--ease);
}

.season-card:hover::before {
  left: 100%;
}

.season-months {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.season-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem;
}

.season-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.6rem;
}

.season-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.season-best {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.season-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.season-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

/* Open / closed indicator */
.season-status {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.season-status.open {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.season-status.closed {
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

/* ── 7. Booking Strip ── */
#booking-strip {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-mid);
}

#booking-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&q=30') center/cover;
  opacity: 0.08;
}

.bs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.bs-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.bs-text h3 em {
  color: var(--gold);
  font-style: italic;
}

.bs-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
}

.bs-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-bs-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transition: background 0.3s, transform 0.2s;
}

.btn-bs-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-bs-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}

.btn-bs-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
}

/* ── 8. Testimonial Band ── */
#exp-testimonials {
  position: relative;
  padding: 90px 0;
  background: var(--forest-deep);
  overflow: hidden;
  isolation: isolate;
}

.testi-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold-border);
  margin-top: 3.5rem;
}

.testi-card {
  background: rgba(15, 32, 18, 0.92);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.testi-card:hover {
  background: rgba(22, 48, 24, 0.97);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 3px;
}

.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.12);
  line-height: 0.6;
  display: block;
  margin-bottom: 0.8rem;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  object-fit: cover;
  filter: brightness(0.88);
}

.testi-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--warm-white);
  display: block;
}

.testi-exp {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ── 9. More Experiences Grid ── */
#more-exp {
  position: relative;
  padding: 100px 0;
  background: var(--forest-dark);
  overflow: hidden;
  isolation: isolate;
}

#more-exp::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(45, 90, 48, 0.16), transparent 55%);
}

.more-exp-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.more-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 3.5rem;
}

.me-card {
  position: relative;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.me-card:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(10, 26, 12, 0.6);
}

.me-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.8);
  transition: transform 0.8s var(--ease), filter 0.8s;
}

.me-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.6) saturate(0.72);
}

.me-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 12, 0.95) 0%, rgba(10, 26, 12, 0.3) 55%, transparent 100%);
}

/* Gold shimmer on hover */
.me-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  z-index: 3;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: left 0.55s var(--ease);
}

.me-card:hover::before {
  left: 100%;
}

.me-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem;
  z-index: 2;
}

.me-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  display: block;
}

.me-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
}

.me-meta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  display: flex;
  gap: 1rem;
}

.me-meta i {
  color: var(--gold);
  margin-right: 4px;
}

.me-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.35s;
}

.me-card:hover .me-arrow {
  opacity: 1;
}

/* ── 10. CTA Section ── */
#exp-cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  background: var(--forest-mid);
  overflow: hidden;
  isolation: isolate;
}

#exp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&q=40') center/cover;
  opacity: 0.09;
}

#exp-ff-cta {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.exp-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.exp-cta-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1.4rem;
}

.exp-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.btn-gold {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(201, 168, 76, 0.5);
  color: #ffffff;
}

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.45);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
}

/* ── 11. Forest Animations ── */
.leaf-particle {
  position: fixed;
  top: -60px;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  user-select: none;
  animation: leafFall linear forwards;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }

  5% {
    opacity: 0.7;
  }

  92% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(680deg) translateX(var(--drift, 80px));
  }
}

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9f06a;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 6px 2px rgba(180, 240, 100, 0.7), 0 0 14px 4px rgba(140, 220, 60, 0.3);
  animation: fireflyLife linear infinite;
}

@keyframes fireflyLife {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  10% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.4;
  }

  75% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translate(var(--fx, 30px), var(--fy, -40px));
  }
}

.bird-flock {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  animation: birdFly linear forwards;
}

@keyframes birdFly {
  0% {
    transform: translateX(-120px) translateY(0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(calc(100vw + 120px)) translateY(var(--bdy, -30px));
    opacity: 0;
  }
}

.bird {
  display: inline-block;
  width: 16px;
  height: 6px;
  margin: 0 3px;
  border-top: 2px solid rgba(245, 240, 232, 0.6);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-left: 1.5px solid rgba(245, 240, 232, 0.5);
  border-right: 1.5px solid rgba(245, 240, 232, 0.5);
  animation: wingFlap 0.38s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

.bird:nth-child(even) {
  animation-delay: 0.2s;
  width: 13px;
  height: 5px;
}

@keyframes wingFlap {
  0% {
    transform: scaleY(0.3)
  }

  100% {
    transform: scaleY(1)
  }
}

/* ── 12. Shared Utilities ── */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label.center {
  justify-content: center;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-label.center::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-label:not(.center)::before {
  display: none;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.gold-line {
  display: block;
  width: 55px;
  height: 2px;
  background: var(--gold);
  margin: 1.1rem 0 0;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.from-left {
  transform: translateX(-36px);
}

.reveal.from-right {
  transform: translateX(36px);
}

.reveal.scale-in {
  transform: scale(0.93);
}

.reveal.d1 {
  transition-delay: 0.08s
}

.reveal.d2 {
  transition-delay: 0.18s
}

.reveal.d3 {
  transition-delay: 0.28s
}

.reveal.d4 {
  transition-delay: 0.40s
}

.reveal.d5 {
  transition-delay: 0.52s
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── 13. Responsive ── */
@media (max-width:1100px) {
  .exp-card-featured {
    grid-template-columns: 1fr;
  }

  .ecf-img {
    height: 340px;
  }

  .exp-card-featured.reverse {
    direction: ltr;
  }

  .seasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .more-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .panel-img {
    height: 280px;
  }

  .overview-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ov-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width:768px) {
  #exp-hero {
    height: 100vh;
    height: 100svh;
  }

  .eh-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .eh-bracket {
    display: none;
  }

  .featured-inner,
  .tabs-inner,
  .seasonal-inner,
  .testi-inner,
  .more-exp-inner {
    padding: 0 1.5rem;
  }

  .ecf-body {
    padding: 2.5rem 2rem;
  }

  .exp-tab-btn {
    padding: 0.9rem 1.2rem;
  }

  .bs-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 1.5rem;
  }

  .bs-actions {
    justify-content: center;
  }

  .seasons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .more-exp-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .overview-row {
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }

  .ov-item::after {
    display: none;
  }

  .ecf-body {
    padding: 2rem 1.5rem;
  }

  .ecf-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .seasons-grid {
    grid-template-columns: 1fr;
  }

  .exp-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
/* --- Updated Room Card Meta (index.php) --- */
.room-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gold-border);
}

.room-status {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.room-status i {
  margin-right: 0.3rem;
}

.justify-content-center {
  justify-content: center !important;
}



@keyframes fadeInMenu { from { opacity: 0; } to { opacity: 1; } }