/* ==========================================================================
   Thanksleuser Web MVP - Design Spec v2 (Light Editorial Outdoor Theme)
   Following design.md v2 & prd.md specifications
   ========================================================================== */

/* 1. Design Tokens (Light Theme per design.md v2) */
:root {
  --bg-base: #F6F7F3;
  /* putih kabut, sedikit hijau */
  --bg-surface: #FFFFFF;
  /* card dan panel */
  --ink: #12160F;
  /* nyaris hitam dari badge logo */
  --ink-muted: #5B6459;
  /* teks sekunder */

  --moss: #33513B;
  /* hijau hutan lumut */
  --clay: #C8721E;
  /* oranye tanah/savana kering */
  --clay-hover: #A85D16;

  --line: rgba(18, 22, 15, 0.12);
  /* border tipis */

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-card: 0 8px 24px rgba(18, 22, 15, 0.06);
  --shadow-hover: 0 16px 36px rgba(18, 22, 15, 0.12);
  --shadow-pop: 0 12px 30px rgba(0, 0, 0, 0.4);

  /* Fonts */
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-height: 76px;
  --container-width: 1180px;
}

/* 2. Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto !important;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* 3. Tipografi (Bebas Neue Display + Inter Body per Section 4 design.md) */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.03em;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

h3 {
  font-size: 24px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 28px;
  }
}

.body-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-muted);
  font-weight: 400;
  max-width: 65ch;
}

@media (min-width: 768px) {
  .body-text {
    font-size: 16px;
  }
}

.text-clay {
  color: var(--clay);
}

.text-moss {
  color: var(--moss);
}

.text-muted {
  color: var(--ink-muted);
}

/* 4. Tombol (Primary --clay, Outline --moss/--line) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--clay);
  color: #FFFFFF;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--clay-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200, 114, 30, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover:not(:disabled) {
  border-color: var(--moss);
  color: var(--moss);
  background: rgba(51, 81, 59, 0.05);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* 5. Translucent Navigation Header Overlay (Fixed Header - Zero Glitch) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  will-change: background, border-color;
}

.site-header.scrolled {
  background: rgba(18, 22, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-name-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu .nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: #FFFFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-header-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #FFFFFF;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 22, 15, 0.95);
  backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }

  .hamburger-btn {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* 6. Hero Section (Wanderlush Inspired Layout) */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 20px);
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}

/* GSAP & Lenis Multi-Layer Parallax Hero */
.hero-section.parallax {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100vh;
  background: #0d120a;
}

.parallax__header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax__visuals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax__black-line-overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0d120a;
  z-index: 10;
}

.parallax__layers {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax__layer-img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  pointer-events: none;
  will-change: transform;
}

.parallax__layer-img[data-parallax-layer="1"] {
  z-index: 1;
}

.parallax__layer-img[data-parallax-layer="2"] {
  z-index: 2;
}

.parallax__layer-title {
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: 30;
  pointer-events: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  width: 100%;
  max-width: 840px;
  will-change: transform;
}

@media (min-width: 992px) {
  .parallax__layer-title {
    top: 24%;
    left: max(40px, 8%);
    right: auto;
    transform: translateY(-10%);
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 640px;
    padding: 0;
  }

  .hero-eyebrow-pill {
    align-self: flex-start;
  }

  .hero-title {
    text-align: left;
  }

  .hero-subtitle {
    text-align: left;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .hero-cta-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
}

.parallax__layer-img[data-parallax-layer="4"] {
  z-index: 4;
}

.parallax__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #FFFFFF);
  z-index: 5;
  pointer-events: none;
}

.hero-container {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.hero-main-content {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 780px;
}

/* Glass Eyebrow Pill Badge */
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Main Hero Title */
.hero-title {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 72px;
  }
}

/* Primary White Pill Button */
.btn-hero-pill {
  position: relative;
  z-index: 35;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 9999px;
  background: #FFFFFF;
  color: #12160F;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-hero-pill:hover {
  background: #F0F1EC;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: #12160F;
}

.btn-hero-pill svg {
  transition: transform 0.2s ease;
}

.btn-hero-pill:hover svg {
  transform: translateX(4px);
}

/* Hero Top Sub-Bar */
.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  pointer-events: none;
}

.hero-feature-cards {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  pointer-events: none;
}

.glass-feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 6px 18px 6px 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

.feature-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

/* Hero Social Stack */
.hero-social-stack {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.social-circle-btn {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.social-circle-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
  color: #FFFFFF;
}

/* GPU Hardware Acceleration for ultra-smooth buttery parallax scrolling */
.parallax__layers,
.parallax__layer-img,
.parallax__layer-title,
.parallax-matrix-grid,
.parallax-col {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media (max-width: 767px) {
  .hero-container {
    top: 86px;
    padding: 0 16px;
  }

  .hero-bottom-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .hero-feature-cards {
    gap: 8px;
  }

  .glass-feature-card {
    padding: 5px 12px 5px 5px;
    font-size: 11.5px;
  }

  .feature-icon-circle {
    width: 26px;
    height: 26px;
  }

  .feature-icon-circle svg {
    width: 13px;
    height: 13px;
  }

  .social-circle-btn {
    width: 36px;
    height: 36px;
  }

  .social-circle-btn svg {
    width: 15px;
    height: 15px;
  }

  .parallax__layer-title {
    top: 25%;
    transform: translate(-50%, -15%);
    padding: 0 20px;
    width: 100%;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 480px;
  }

  .btn-hero-pill {
    padding: 13px 28px;
    font-size: 14px;
  }
}

/* 7. Section & Filter Layout (Section 6 & FR-2) */
.section {
  padding: 64px 0;
}

.section-header {
  margin-bottom: 36px;
}

/* Filter Bar sederhana tepat di atas grid trip card (Section 5 design.md v2) */
.trip-filter-bar {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .trip-filter-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--moss);
  color: var(--ink);
}

.filter-pill.active {
  background: var(--moss);
  border-color: var(--moss);
  color: #FFFFFF;
  font-weight: 600;
}

/* Trip Grid */
.trip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .trip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Trip Design v2 (Foto Bleed Penuh, Floating Price Badge dengan Shadow Tegas, Sharp Radius 10px) */
.trip-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trip-card:hover {
  transform: translateY(-4px);
  border-color: var(--moss);
  box-shadow: var(--shadow-hover);
}

.trip-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.trip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trip-card:hover .trip-card-image img {
  transform: scale(1.05);
}

/* Floating Price Badge di Pojok Foto dengan Shadow Tegas (Section 6) */
.card-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ink);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-pop);
  z-index: 3;
}

.card-status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 3;
}

.badge-warning {
  background: rgba(200, 114, 30, 0.15);
  border: 1px solid var(--clay);
  color: var(--clay);
}

.badge-danger {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid #DC2626;
  color: #DC2626;
}

.badge-success {
  background: rgba(51, 81, 59, 0.12);
  border: 1px solid var(--moss);
  color: var(--moss);
}

.badge-closed {
  background: rgba(91, 100, 89, 0.12);
  border: 1px solid var(--ink-muted);
  color: var(--ink-muted);
}

.trip-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Info di bawah foto: kategori & level sebagai teks kecil bergaris bawah tipis (Section 6) */
.trip-meta-info {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.meta-link {
  border-bottom: 1px solid var(--line);
  text-transform: capitalize;
}

.trip-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  color: var(--ink);
}

.trip-date {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Progress bar kuota tipis (Section 6) */
.quota-container {
  margin-bottom: 16px;
}

.quota-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 4px;
}

.quota-label {
  color: var(--ink-muted);
  font-weight: 500;
}

.quota-count {
  font-weight: 600;
  color: var(--ink);
}

.progress-track {
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.fill-success {
  background-color: var(--moss);
}

.fill-warning {
  background-color: var(--clay);
}

.fill-danger {
  background-color: #DC2626;
}

/* Interactive Equipment Checklist (FR-3) */
.checklist-box {
  background: var(--bg-base);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 12px;
  margin-bottom: 16px;
}

.checklist-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.checklist-content {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.checklist-content.open {
  display: block;
}

.checklist-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 6px;
}

.checklist-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
}

.checklist-item input[type="checkbox"] {
  accent-color: var(--clay);
  width: 15px;
  height: 15px;
  margin-top: 2px;
  cursor: pointer;
}

.checklist-item.checked span {
  text-decoration: line-through;
  color: var(--ink-muted);
}

.included-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.included-tag {
  font-size: 11px;
  padding: 2px 6px;
  background: rgba(51, 81, 59, 0.08);
  border: 1px solid rgba(51, 81, 59, 0.2);
  color: var(--moss);
  border-radius: 4px;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px dashed var(--line);
  grid-column: 1 / -1;
}

/* 8. Destinasi Bento Grid Asimetris (Section 7 design.md v2) */
.destinasi-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tab-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--moss);
  border-color: var(--moss);
  color: #FFFFFF;
  font-weight: 600;
}

.destinasi-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .destinasi-card {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.destinasi-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .destinasi-bento-grid {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: repeat(2, 175px);
  }

  .bento-item-large {
    grid-row: span 2;
  }
}

.bento-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 200px;
}

@media (min-width: 640px) {
  .bento-item {
    height: 100%;
  }
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bento-item:hover img {
  transform: scale(1.05);
}

.destinasi-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Info destinasi sebagai teks biasa dengan ikon kecil (Section 7 design.md v2) */
.destinasi-stats-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--moss);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 9. Merchandise Section - Exact Shopee Product Detail Page Layout */
.shopee-pdp-card {
  background: #FFFFFF;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

@media (min-width: 992px) {
  .shopee-pdp-card {
    grid-template-columns: 450px 1fr;
  }
}

/* Left Column: Gallery Showcase */
.shopee-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shopee-hero-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #FAFAFA;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EFEFEF;
}

.shopee-hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shopee-thumb-row {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  width: 100%;
}

.shopee-thumb-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
}

.shopee-thumb-track::-webkit-scrollbar {
  display: none;
}

.shopee-thumb-nav {
  width: 24px;
  height: 48px;
  background: rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.shopee-thumb-nav:hover {
  background: rgba(0, 0, 0, 0.4);
}

.shopee-thumb-btn {
  width: 76px;
  height: 76px;
  border: 2px solid transparent;
  padding: 2px;
  background: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 2px;
  transition: border-color 0.15s ease;
}

.shopee-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shopee-thumb-btn:hover,
.shopee-thumb-btn.active {
  border-color: #EE4D2D;
}

/* Share & Favorite Bar */
.shopee-share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
  color: #222222;
}

.shopee-social-share {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #222222;
}

.btn-share-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  transition: transform 0.15s ease;
}

.btn-share-icon:hover {
  transform: scale(1.1);
}

.shopee-divider-vert {
  width: 1px;
  height: 16px;
  background: #E8E8E8;
}

.shopee-favorite-box {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #222222;
  font-size: 13px;
}

/* Right Column: Information */
.shopee-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shopee-badge-star {
  background: #EE4D2D;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  line-height: 1.2;
}

.shopee-product-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  line-height: 1.4;
  margin: 0;
}

/* Stats Row */
.shopee-stats-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #757575;
}

.rating-num {
  font-weight: 700;
  color: #EE4D2D;
  border-bottom: 1px solid #EE4D2D;
  font-size: 15px;
  margin-right: 4px;
}

.stars-inline {
  display: flex;
  gap: 1px;
}

.stat-divider {
  width: 1px;
  height: 14px;
  background: #E8E8E8;
}

.stat-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-group.link-underline {
  border-bottom: 1px solid #222222;
}

.stat-num {
  font-weight: 600;
  color: #222222;
}

.stat-label {
  color: #757575;
}

.btn-report-link {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #757575;
  font-size: 12px;
  cursor: pointer;
}

/* Price Box Banner */
.shopee-price-banner {
  background: #FAF8F8;
  padding: 16px 20px;
  border-radius: 2px;
}

.shopee-price-range {
  font-size: 28px;
  font-weight: 700;
  color: #EE4D2D;
  font-family: var(--font-body);
}

/* Key-Value Table Grid */
.shopee-options-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.shopee-opt-row {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.shopee-opt-row.align-center {
  align-items: center;
}

.opt-label {
  width: 110px;
  flex-shrink: 0;
  color: #757575;
  font-weight: 400;
  padding-top: 6px;
}

.shopee-opt-row.align-center .opt-label {
  padding-top: 0;
}

.opt-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.opt-content.flex-row {
  flex-direction: row;
}

.shipping-info-main {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #222222;
}

.shipping-subtext {
  font-size: 12px;
  color: #757575;
}

.guarantee-info-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #222222;
}

/* Pills Wrap */
.shopee-pills-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Color Pills with image preview inside */
.shopee-color-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.15s ease;
}

.shopee-color-pill img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
}

.shopee-color-pill:hover {
  border-color: #EE4D2D;
  color: #EE4D2D;
}

.shopee-color-pill.selected {
  border-color: #EE4D2D;
  color: #EE4D2D;
}

.check-mark-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
  background: #EE4D2D;
  border-top-left-radius: 4px;
  padding: 1px;
}

.shopee-color-pill.selected .check-mark-badge {
  display: block;
}

/* Size Buttons */
.shopee-size-btn {
  min-width: 54px;
  height: 38px;
  padding: 0 14px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: all 0.15s ease;
}

.shopee-size-btn:hover {
  border-color: #EE4D2D;
  color: #EE4D2D;
}

.shopee-size-btn.selected {
  border-color: #EE4D2D;
  color: #EE4D2D;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px #EE4D2D;
}

.shopee-size-link {
  background: transparent;
  border: none;
  color: #2673DD;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  padding: 4px 0 0;
}

.shopee-size-link:hover {
  text-decoration: underline;
}

/* Quantity Stepper */
.shopee-stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  height: 32px;
  width: 110px;
}

.stepper-btn {
  width: 32px;
  height: 100%;
  background: #FFFFFF;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #757575;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-btn:hover {
  background: #FAFAFA;
  color: #222222;
}

.shopee-stepper input {
  width: 46px;
  height: 100%;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.14);
  border-right: 1px solid rgba(0, 0, 0, 0.14);
  text-align: center;
  font-size: 14px;
  color: #222222;
  outline: none;
  font-family: var(--font-body);
}

.stock-text {
  font-size: 13px;
  color: #757575;
  margin-left: 14px;
}

/* Shopee Action Buttons Row */
.shopee-action-row {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn-shopee-cart {
  height: 48px;
  padding: 0 20px;
  background: #FFEEE9;
  border: 1px solid #EE4D2D;
  border-radius: 2px;
  color: #EE4D2D;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease;
}

.btn-shopee-cart:hover {
  background: #FEE7E2;
}

.btn-shopee-buy {
  height: 48px;
  padding: 0 40px;
  background: #EE4D2D;
  border: none;
  border-radius: 2px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  flex: 1;
  max-width: 220px;
}

.btn-shopee-buy:hover {
  background: #E03E1E;
}

/* Size Chart Table Styling */
.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.size-chart-table th,
.size-chart-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.size-chart-table th {
  background: #F8F9F5;
  font-weight: 700;
  color: var(--ink);
}

.size-chart-table td {
  color: var(--ink);
}

/* 10. Seamless 3D Parallax Gallery (Mobile Compatible & Gapless) */
.parallax-gallery-section {
  background: #FFFFFF;
  color: var(--ink);
  padding: 60px 0 60px;
  overflow: clip;
  /* Fixes mobile WebKit position:sticky clipping issue */
  position: relative;
}

.parallax-header-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(46, 68, 48, 0.08);
  border: 1px solid rgba(46, 68, 48, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.parallax-header-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.parallax-header-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

.parallax-scroll-wrapper {
  position: relative;
  width: 100%;
  height: 135vh;
  /* Tight gapless scroll height */
}

.parallax-sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-banner-card {
  position: relative;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  will-change: transform;
}

/* Natural Ambient Vignette Overlays */
.parallax-vignette-tb {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 8%, transparent 20%, transparent 80%, rgba(255, 255, 255, 0.85) 92%, #FFFFFF 100%);
}

.parallax-vignette-lr {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 6%, transparent 16%, transparent 84%, rgba(255, 255, 255, 0.6) 94%, #FFFFFF 100%);
}

/* 3D Matrix Perspective Engine */
.parallax-matrix-perspective {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  perspective: 1200px;
}

.parallax-matrix-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  padding: 0 24px;
  height: 120vh;
  transform-style: preserve-3d;
  will-change: transform;
}

.parallax-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 320px;
  pointer-events: auto;
  will-change: transform;
}

.parallax-image-card {
  width: 100%;
  height: 280px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.parallax-image-card:hover {
  transform: scale(1.03) translateZ(15px);
  border-color: var(--moss);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.parallax-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.parallax-image-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.parallax-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 12px;
  background: linear-gradient(to top, rgba(18, 22, 15, 0.85) 0%, rgba(18, 22, 15, 0) 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.parallax-card-title {
  font-size: 13px;
  font-weight: 700;
}

.parallax-card-sub {
  font-size: 10px;
  color: #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .parallax-scroll-wrapper {
    height: 115vh;
    /* Mobile tight scroll height */
  }

  .parallax-matrix-grid {
    width: 100%;
    gap: 12px;
    padding: 0 12px;
  }

  /* Show 2 responsive columns on mobile for clean visibility & smooth parallax */
  .parallax-col:nth-child(3),
  .parallax-col:nth-child(4) {
    display: none;
  }

  .parallax-col {
    gap: 12px;
    max-width: none;
  }

  .parallax-image-card {
    height: 210px;
    border-radius: 12px;
  }
}

/* ==========================================================================
   Modern Multi-Column Testimonial Marquee (Pure CSS Infinite Loop)
   ========================================================================== */
.testi-marquee-wrapper {
  margin-top: 60px;
  position: relative;
  width: 100%;
}

.testi-marquee-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.testi-marquee-badge {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #12160F;
  margin-bottom: 16px;
}

.testi-marquee-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #12160F;
  margin-bottom: 12px;
}

.testi-marquee-subtitle {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

/* Container with Gradient Masking at Top and Bottom */
.testi-marquee-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 640px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testi-column {
  flex: 1;
  max-width: 340px;
  min-width: 280px;
}

.testi-col-2 {
  display: none;
}

.testi-col-3 {
  display: none;
}

@media (min-width: 768px) {
  .testi-col-2 {
    display: block;
  }
}

@media (min-width: 1024px) {
  .testi-col-3 {
    display: block;
  }
}

.testi-column-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

/* Infinite Marquee Animation Keyframes */
@keyframes testi-marquee-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.testi-col-1 .testi-column-inner {
  animation: testi-marquee-scroll 15s linear infinite;
}

.testi-col-2 .testi-column-inner {
  animation: testi-marquee-scroll 19s linear infinite;
}

.testi-col-3 .testi-column-inner {
  animation: testi-marquee-scroll 17s linear infinite;
}

/* Pause marquee animation on hover for smooth reading */
.testi-marquee-container:hover .testi-column-inner {
  animation-play-state: paused;
}

/* Modern Testimonial Card */
.testi-card-modern {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFFFFF;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.12);
}

.testi-text {
  font-size: 14px;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 20px;
}

.testi-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-user-info {
  display: flex;
  flex-direction: column;
}

.testi-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #12160F;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.testi-user-role {
  font-size: 13px;
  color: #777777;
  line-height: 1.3;
}

.testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.testi-trip-name {
  font-size: 12px;
  color: var(--ink-muted);
}

/* /* 11. Alur Pendaftaran (3-Step Editorial Process Flow) */
.alur-section {
  padding: 90px 0;
  background: var(--bg-base);
  position: relative;
}

.alur-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.alur-header .section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.alur-title {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .alur-title {
    font-size: 34px;
  }
}

.alur-subtitle {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.stepper-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

/* Connecting Process Tracker Line across cards on desktop */
.stepper-track-line {
  display: none;
}

@media (min-width: 992px) {
  .stepper-track-line {
    display: block;
    position: absolute;
    top: 56px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--clay) 0%, rgba(51, 81, 59, 0.4) 50%, var(--clay) 100%);
    opacity: 0.25;
    z-index: 1;
  }
}

.stepper-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .stepper-container {
    flex-direction: row;
    gap: 28px;
  }
}

.step-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(18, 22, 15, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 22, 15, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.35s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(18, 22, 15, 0.1);
  border-color: rgba(51, 81, 59, 0.25);
}

.step-card:hover::before {
  background: linear-gradient(90deg, var(--clay) 0%, var(--moss) 100%);
}

/* Header Row of Step Card */
.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F4F5F0;
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(51, 81, 59, 0.12);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.step-card:hover .step-icon-badge {
  background: var(--moss);
  color: #FFFFFF;
  transform: scale(1.05);
}

.step-number-tag {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
  color: var(--clay);
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* Body of Step Card */
.step-card-body {
  flex: 1;
  margin-bottom: 24px;
}

.step-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.step-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Footer of Step Card */
.step-card-footer {
  padding-top: 18px;
  border-top: 1px dashed rgba(18, 22, 15, 0.08);
}

.step-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--moss);
  background: rgba(51, 81, 59, 0.07);
  padding: 6px 12px;
  border-radius: 20px;
}

.step-feature-pill svg {
  stroke: var(--moss);
}

/* 12. CTA Band Sebelum Footer (Foto Malam Berbintang Full-bleed + Inset Foto - Section 9) */
.cta-band {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 22, 15, 0.75) 0%, rgba(18, 22, 15, 0.88) 100%),
    url('https://images.unsplash.com/photo-1510312305653-8ed496efae75?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}

.cta-band-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-band-title {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .cta-band-title {
    font-size: 52px;
  }
}

.cta-inset-photo {
  display: none;
  width: 170px;
  height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-pop);
}

.cta-inset-left {
  transform: rotate(-6deg);
}

.cta-inset-right {
  transform: rotate(6deg);
}

.cta-inset-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .cta-inset-photo {
    display: block;
  }
}

/* 13. Footer & Collaborate CTA (Editorial Dark/Light Outdoor Surface) */
.site-footer {
  background: #FFFFFF;
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
  position: relative;
}

/* Collaborate CTA Banner Box (Image 2 White Theme Bento Card Layout) */
.footer-collaborate-banner {
  background: #FFFFFF;
  border: 1px solid rgba(18, 22, 15, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: var(--ink);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(18, 22, 15, 0.05);
}

@media (min-width: 992px) {
  .footer-collaborate-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.collaborate-content {
  max-width: 600px;
}

.collaborate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.collaborate-title {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.15;
}

.collaborate-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.collaborate-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-collaborate-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clay);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(200, 114, 30, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-collaborate-wa:hover {
  background: var(--clay-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 114, 30, 0.45);
  color: #FFFFFF;
}

/* Image 2 Right Card Photo Inset */
.collaborate-img-wrap {
  width: 100%;
  max-width: 320px;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(18, 22, 15, 0.12);
  border: 1px solid rgba(18, 22, 15, 0.08);
}

.collaborate-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collaborate-img-wrap:hover img {
  transform: scale(1.05);
}

/* Footer Columns Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
  }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 380px;
}

/* Footer Social Icons */
.footer-social-stack {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F4F5F0;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 22, 15, 0.08);
  transition: all 0.25s ease;
}

.footer-social-icon:hover {
  background: var(--moss);
  color: #FFFFFF;
  border-color: var(--moss);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--ink-muted);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--clay);
  transform: translateX(3px);
}

/* Contact List with Vector Icons */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

a.footer-contact-item:hover {
  color: var(--moss);
}

.contact-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F4F5F0;
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(51, 81, 59, 0.12);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-muted);
  font-size: 13px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-copy strong {
  color: var(--ink);
}

/* 14. Modal Form Pendaftaran (Light Theme Elevated) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 15, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(18, 22, 15, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  z-index: 10;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--ink);
}

.modal-body {
  padding: 24px;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .modal-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.form-label .required {
  color: #DC2626;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-base);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--moss);
}

.form-error {
  font-size: 11px;
  color: #DC2626;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Multi-Step Wizard Modal (Image 2 Style - White/Light Theme) */
.wizard-modal-container {
  max-width: 600px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(18, 22, 15, 0.1);
  box-shadow: 0 24px 60px rgba(18, 22, 15, 0.2);
  overflow: hidden;
}

.wizard-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px 12px 28px;
  background: #F9FAF7;
  border-bottom: 1px solid var(--line);
}

.wizard-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.wizard-step-item.active {
  color: var(--ink);
  font-weight: 700;
}

.wizard-step-item.completed {
  color: var(--moss);
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E4E6DE;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.wizard-step-item.active .step-dot {
  background: #12160F;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(18, 22, 15, 0.25);
}

.wizard-step-item.completed .step-dot {
  background: var(--moss);
  color: #FFFFFF;
}

.step-connector-line {
  flex: 1;
  height: 2px;
  background: #E4E6DE;
  margin: 0 10px;
  border-radius: 2px;
}

.wizard-modal-body {
  padding: 20px 24px 24px 24px;
}

.wizard-card {
  background: #FFFFFF;
  border: 1px solid rgba(18, 22, 15, 0.12);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.wizard-card-header {
  margin-bottom: 20px;
}

.wizard-step-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}

.wizard-step-subtitle {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.45;
}

.wizard-step-panel {
  display: none;
  animation: fadeInStep 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step-panel.active {
  display: block;
}

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

.wizard-card .form-group {
  margin-bottom: 16px;
}

.wizard-card .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}

.wizard-card .form-input,
.wizard-card .form-select {
  width: 100%;
  padding: 12px 14px;
  background: #F4F5F0;
  border: 1px solid rgba(18, 22, 15, 0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s ease;
}

.wizard-card .form-input:focus,
.wizard-card .form-select:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #12160F;
  box-shadow: 0 0 0 3px rgba(18, 22, 15, 0.08);
}

.wizard-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.btn-wizard-back {
  padding: 10px 20px;
  border-radius: 99px;
  background: #F0F1EC;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wizard-back:hover {
  background: #E4E6DE;
}

.btn-wizard-next {
  padding: 10px 24px;
  border-radius: 99px;
  background: #12160F;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(18, 22, 15, 0.15);
}

.btn-wizard-next:hover {
  background: #283023;
  transform: translateY(-1px);
}

.btn-wizard-submit {
  padding: 12px 28px;
  border-radius: 99px;
  background: var(--moss);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(51, 81, 59, 0.25);
}

.btn-wizard-submit:hover {
  background: #253e2d;
  transform: translateY(-1px);
}

.wizard-step-caption {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 15, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-modal img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
}

/* 15. About Section Styles */
.about-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 40px;
  }
}

.about-desc {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--moss);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.03);
}

.about-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(18, 22, 15, 0.08);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.badge-icon {
  font-size: 20px;
}

/* 16. Services Section (Journey Bento Grid - Image 3 Layout) */
.services-section {
  padding: 80px 0;
  background: var(--bg-base);
}

.journey-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .journey-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.journey-title {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .journey-title {
    font-size: 52px;
  }
}

.journey-header-right {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.journey-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-dark-pill {
  padding: 10px 22px;
  border-radius: 9999px;
  background: #12160F;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-dark-pill:hover {
  background: var(--moss);
  transform: translateY(-1px);
}

.btn-outline-pill {
  padding: 10px 22px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline-pill:hover {
  border-color: var(--ink);
  background: var(--bg-surface);
}

/* Image 3 Bento Grid */
.journey-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .journey-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-card-large {
    grid-column: span 2;
  }
}

.journey-card {
  position: relative;
  border-radius: 20px;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.journey-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.journey-card-top,
.journey-card-bottom {
  position: relative;
  z-index: 2;
}

.badge-most-interesting {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
}

.play-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-left: auto;
  transition: all 0.2s ease;
}

.journey-card:hover .play-circle-btn {
  background: #FFFFFF;
  color: #12160F;
  transform: scale(1.1);
}

.journey-card-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.journey-card-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.2;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  margin-right: -10px;
}

/* 17. Tour Section Styles (Reference Image Layout) */
.tour-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.tour-header-center {
  text-align: center;
  margin-bottom: 36px;
}

.tour-section-title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .tour-section-title {
    font-size: 52px;
  }
}

/* Floating Search Control Widget (Reference Image Match) */
.tour-search-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8F9F5;
  border: 1px solid rgba(18, 22, 15, 0.08);
  border-radius: 9999px;
  padding: 6px 8px 6px 20px;
  max-width: 720px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
  .tour-search-widget {
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
    gap: 12px;
  }
}

.search-widget-field {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 9999px;
  transition: background 0.2s ease;
}

.search-widget-field:hover {
  background: rgba(18, 22, 15, 0.04);
}

.widget-icon {
  color: var(--ink);
  flex-shrink: 0;
}

/* Custom Dropdown Container & Trigger */
.custom-dropdown-container {
  position: relative;
  flex: 1;
}

.custom-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 9999px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  text-align: left;
}

.custom-dropdown-trigger:hover {
  background: rgba(18, 22, 15, 0.05);
}

.custom-dropdown-trigger .dropdown-label-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chevron-icon {
  color: var(--ink-muted);
  pointer-events: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-dropdown-container.open .chevron-icon {
  transform: rotate(180deg);
}

/* Custom Dropdown Popover */
.custom-dropdown-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: #FFFFFF;
  border: 1px solid rgba(18, 22, 15, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(18, 22, 15, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 6px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.custom-dropdown-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Custom Options */
.custom-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-option:hover {
  background: #F4F5F0;
  color: var(--moss);
}

.custom-option.active {
  font-weight: 600;
  color: var(--moss);
  background: rgba(51, 81, 59, 0.08);
}

.custom-option .check-icon {
  color: var(--moss);
  opacity: 0;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}

.custom-option.active .check-icon {
  opacity: 1;
}

@media (max-width: 767px) {
  .custom-dropdown-container {
    width: 100%;
  }

  .custom-dropdown-popover {
    width: 100%;
  }
}

.search-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
  margin: 0 4px;
}

@media (max-width: 767px) {
  .search-divider {
    display: none;
  }
}

.btn-search-pill {
  padding: 10px 28px;
  border-radius: 9999px;
  background: #12160F;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-search-pill:hover {
  background: var(--moss);
  transform: translateY(-1px);
}

/* Category Filter Pills */
.tour-pill-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tour-filter-pill {
  padding: 8px 20px;
  border-radius: 9999px;
  background: #F0F1EC;
  color: var(--ink-muted);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tour-filter-pill:hover {
  background: #E4E6DE;
  color: var(--ink);
}

.tour-filter-pill.active {
  background: #12160F;
  color: #FFFFFF;
  font-weight: 600;
}

/* Tour Cards Grid */
.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tour-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Explore More Trips Button */
.btn-explore-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #12160F;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore-more:hover {
  background: #252b21;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-explore-more:active {
  transform: translateY(0);
}

/* Tour Card Styling (Reference Image Exact Match) */
.tour-card {
  position: relative;
  border-radius: 20px;
  height: 440px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.tour-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.tour-card:hover .tour-card-bg {
  transform: scale(1.06);
}

.tour-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.tour-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
}

.tour-card-bottom-glass {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  gap: 12px;
}

.tour-info-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.tour-action-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.tour-card-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.tour-price {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.btn-card-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: #FFFFFF;
  color: #12160F;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tour-card:hover .btn-card-book {
  background: #F0F1EC;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-card-book svg {
  transition: transform 0.2s ease;
}

.tour-card:hover .btn-card-book svg {
  transform: translateX(3px);
}

.btn-card-book:disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  box-shadow: none;
}