/* ==========================================================================
   WATU WAYANG GLAMPING & ADVENTURE - KEMUNING
   Design System & Professional Stylesheet (Clean, Modern & Minimalist)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Primary Forest Colors */
  --primary-dark: #0f2d1c;
  --primary-deep: #143823;
  --primary: #1b4d31;
  --primary-medium: #246340;
  --primary-light: #e8f3ed;
  --primary-subtle: #f2f8f4;

  /* Accent Warm Gold / Amber */
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-gold: #e5a93c;
  --accent-light: #fef3c7;

  /* Neutral Slates */
  --neutral-dark: #0f172a;
  --neutral-body: #334155;
  --neutral-muted: #64748b;
  --neutral-border: #e2e8f0;
  --neutral-surface: #f8fafc;
  --neutral-card: #ffffff;
  --bg-page: #fbfbfa;

  /* Action & Status */
  --wa-color: #25d366;
  --wa-hover: #1ebd5a;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-subheading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(15, 45, 28, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(15, 45, 28, 0.07);
  --shadow-md: 0 10px 20px -3px rgba(15, 45, 28, 0.08);
  --shadow-lg: 0 20px 30px -4px rgba(15, 45, 28, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--neutral-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-subheading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-tag.tag-amber {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--neutral-muted);
}

/* ==========================================================================
   BUTTONS & BADGES (NO EMOJIS, CLEAN SVGS)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: #ffffff;
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: #ffffff;
}

.btn-wa {
  background: var(--wa-color);
  color: #ffffff;
}
.btn-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold {
  background: var(--accent-light);
  color: var(--accent-hover);
}
.badge-green {
  background: var(--primary-light);
  color: var(--primary);
}

/* ==========================================================================
   NAVBAR  — compact + dropdown
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0 2rem;
  height: 66px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ── Brand ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}

.brand-name-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-dark);
  letter-spacing: -0.2px;
}

.brand-name-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ── Nav menu ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

/* Link biasa */
.nav-link {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.875rem;
  color: #444;
  padding: 0.45rem 0.65rem;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(44,95,45,0.07);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.65rem;
  right: 0.65rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── Dropdown Layanan ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.875rem;
  color: #444;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--primary);
  background: rgba(44,95,45,0.07);
}

.nav-dropdown-toggle.active {
  color: var(--primary);
  font-weight: 700;
}

.dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-item:hover {
  background: rgba(44,95,45,0.07);
  color: var(--primary);
}

/* ── Actions (tombol WA + hamburger) ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-actions .btn-wa {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 99px;
  white-space: nowrap;
}

/* Hamburger — tersembunyi di desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 2px;
}

/* ── Responsive: sedang ── */
@media (max-width: 1050px) {
  .nav-container { padding: 0 1.25rem; gap: 0.75rem; }
  .nav-link,
  .nav-dropdown-toggle { font-size: 0.825rem; padding: 0.4rem 0.45rem; }
  .nav-actions .btn-wa { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
}

/* ── Responsive: mobile ── */
@media (max-width: 860px) {
  .nav-menu            { display: none; }
  .nav-actions .btn-wa { display: none; }
  .nav-actions         { margin-left: auto; }
  .nav-toggle          { display: flex; }
  .nav-container       { padding: 0 1.25rem; height: 60px; justify-content: space-between; }
}


/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.3s ease;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--neutral-border);
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
}
.drawer-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--neutral-body);
  cursor: pointer;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.drawer-link {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-body);
  padding: 0.35rem 0;
  text-decoration: none;
  display: block;
}
.drawer-link.active {
  color: var(--primary);
  font-weight: 700;
}
.drawer-section-label {
  font-family: var(--font-subheading);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 0 0.1rem;
  border-top: 1px solid #f0f0f0;
  margin-top: 0.25rem;
}
.drawer-sub {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  color: #555;
  border-radius: 6px;
}
.drawer-sub:hover {
  background: rgba(44,95,45,0.06);
  color: var(--primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 48, 30, 0.88) 0%, rgba(12, 30, 19, 0.92) 100%), url('../images/hero-jeep.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 0 6.5rem 0;
  overflow: hidden;
  text-align: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(229, 169, 60, 0.18);
  border: 1px solid rgba(229, 169, 60, 0.45);
  color: var(--accent-gold);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero-title .text-accent {
  color: var(--accent-gold);
}
.hero-desc {
  font-size: 1.075rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 660px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.5rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

/* ==========================================================================
   BOOKING STRIP BAR (CLEAN JELAJAH JEEP STYLE)
   ========================================================================== */

.booking-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3.5rem;
}
.booking-strip-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-border);
  padding: 1.25rem 1.75rem;
}
.booking-strip-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 1rem;
  align-items: flex-end;
}
.strip-group {
  display: flex;
  flex-direction: column;
}
.strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}
.strip-select, .strip-input {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--neutral-dark);
  background: var(--neutral-surface);
}
.strip-select:focus, .strip-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
}

/* ==========================================================================
   SERVICES & PACKAGES CARDS
   ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  padding: 1.5rem;
}
.package-card:has(.package-card-img-wrapper),
.package-card.has-img {
  padding: 0;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.package-card.featured {
  border-color: var(--accent);
}
.package-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: var(--neutral-surface);
}
.package-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.package-card:hover .package-card-img {
  transform: scale(1.05);
}
.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.package-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.package-card-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-border);
}
.package-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.package-meta-chip {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}
.package-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}
.package-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.package-price-currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-muted);
}
.package-price-amount {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.package-price-unit {
  font-size: 0.8125rem;
  color: var(--neutral-muted);
}

/* Route Checklist Box */
.route-spec-box {
  background: var(--neutral-surface);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
}
.route-spec-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.route-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.route-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--neutral-body);
}
.route-bullet {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.package-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.features-heading {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--neutral-muted);
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--neutral-body);
}
.check-icon {
  color: var(--primary);
  font-weight: bold;
}

/* ==========================================================================
   FEATURES / VALUE PILLARS
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-pillar-card {
  background: #ffffff;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.feature-pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}
.feature-pillar-desc {
  font-size: 0.875rem;
  color: var(--neutral-muted);
  margin: 0;
}

/* ==========================================================================
   WORKFLOW STEPS (CARA BOOKING)
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: #ffffff;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}
.step-desc {
  font-size: 0.85rem;
  color: var(--neutral-muted);
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS / GOOGLE REVIEWS
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #ffffff;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.review-quote {
  font-size: 0.9rem;
  color: var(--neutral-body);
  font-style: italic;
  margin-bottom: 1rem;
}
.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.review-origin {
  font-size: 0.75rem;
  color: var(--neutral-muted);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.gallery-tab-btn {
  background: #ffffff;
  border: 1px solid var(--neutral-border);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--neutral-body);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-tab-btn:hover, .gallery-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover img {
  transform: scale(1.05);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 28, 0.9) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #ffffff;
  transition: var(--transition);
}
.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}
.gallery-card-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-box {
  background: #ffffff;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-header-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-header-btn::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--neutral-muted);
}
.faq-box.active .faq-header-btn::after {
  content: '−';
}
.faq-body-text {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--neutral-body);
  font-size: 0.9rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-box.active .faq-body-text {
  max-height: 180px;
  padding: 0 1.25rem 1.15rem 1.25rem;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), #173824);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.cta-banner-title {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.cta-banner-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 1.75rem auto;
  font-size: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #09170e;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-list a:hover {
  color: var(--accent-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* Floating WhatsApp Button */
.floating-wa-clean {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1500;
  background: var(--wa-color);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  font-family: var(--font-subheading);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.floating-wa-clean:hover {
  background: var(--wa-hover);
  transform: translateY(-3px);
  color: #ffffff;
}

/* ==========================================================================
   BASECAMP SPOTLIGHT SECTION
   ========================================================================== */

.basecamp-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.basecamp-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.basecamp-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--neutral-surface);
  border: 1px solid var(--neutral-border);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition);
}

.basecamp-feature-pill:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.basecamp-check-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.basecamp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}

.basecamp-gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.basecamp-gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.basecamp-floating-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: #ffffff;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.basecamp-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.basecamp-badge-text-main {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}

.basecamp-badge-text-sub {
  font-size: 0.7rem;
  color: var(--neutral-muted);
}

@media (max-width: 992px) {
  .basecamp-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons, .hero-stats {
    justify-content: center;
  }
  .booking-strip-form {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .booking-strip-form {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-wa-clean {
    bottom: 20px;
    right: 20px;
  }
}
