/* =====================================================================
   GILANG TRANS — DESIGN SYSTEM
   Konsep: "Jalur Puncak" — perjalanan dari dataran tinggi Cianjur
   turun ke kota-kota Jawa. Palet hutan-teal bertemu cahaya amber
   matahari terbit di jalur pegunungan, dengan motif garis rute
   putus-putus (route line) sebagai elemen tanda tangan visual.
===================================================================== */

:root {
  /* --- Brand core --- */
  --primary: #0F6B5C;
  --primary-light: #E3F1EC;
  --primary-hover: #0B4F45;
  --primary-rgb: 15, 107, 92;

  --accent: #22C55E;        /* WhatsApp / go-action green */
  --accent-hover: #16A34A;

  --amber: #EFA23D;         /* sunrise highlight / featured / rating */
  --amber-dark: #C17E22;
  --amber-light: #FCEED8;

  /* --- Neutrals (cool mint-grey, not warm cream) --- */
  --text: #12241F;
  --text-muted: #5B6E67;
  --text-light: #93A29B;

  --bg: #EEF3F0;
  --bg-page: #EEF3F0;
  --bg-card: #FFFFFF;
  --bg-sidebar: #FFFFFF;
  --bg-navbar: rgba(255,255,255,0.86);
  --bg-raised: #F6F9F7;

  --border: #DCE6E0;
  --border-light: #EBF1ED;

  --shadow-sm: 0 1px 2px rgba(11,35,29,0.06), 0 1px 3px rgba(11,35,29,0.05);
  --shadow: 0 6px 20px rgba(11,35,29,0.08);
  --shadow-md: 0 14px 40px rgba(11,35,29,0.12);
  --shadow-hover: 0 20px 50px rgba(11,35,29,0.16);
  --shadow-glow: 0 0 0 1px rgba(var(--primary-rgb),0.08), 0 20px 45px rgba(11,35,29,0.14);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

  --font: 'Inter', -apple-system, sans-serif;
  --font-heading: 'Fraunces', 'Sora', serif;

  --navbar-h: 72px;
}

[data-theme="dark"] {
  --primary: #37B79B;
  --primary-light: #113931;
  --primary-hover: #56CBB1;
  --primary-rgb: 55, 183, 155;

  --amber: #F2B65C;
  --amber-dark: #F5C783;
  --amber-light: #23230f;

  --text: #E9F3EF;
  --text-muted: #9BB0A8;
  --text-light: #62766e;

  --bg: #071815;
  --bg-page: #071815;
  --bg-card: #0E241E;
  --bg-sidebar: #0E241E;
  --bg-navbar: rgba(7,24,21,0.82);
  --bg-raised: #112B24;

  --border: #1C3C33;
  --border-light: #12271F;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.35);
  --shadow: 0 6px 20px rgba(0,0,0,0.35);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.45);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 0 1px rgba(55,183,155,0.15), 0 20px 45px rgba(0,0,0,0.5);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, button { font-family: var(--font); }
button { font: inherit; }
:focus-visible { outline: 2.5px solid var(--primary); outline-offset: 2px; border-radius: 6px; }
h1, h2, h3 { font-family: var(--font-heading); letter-spacing: -0.01em; }

::selection { background: var(--primary); color: #fff; }

/* ===========================
   ROUTE-LINE SIGNATURE MOTIF
   (garis putus-putus + titik, dipakai sebagai divider/aksen)
=========================== */
.route-divider {
  position: relative;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 18px);
  margin: 0 auto;
}
.route-divider::before, .route-divider::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
}
.route-divider::before { left: 0; }
.route-divider::after { right: 0; background: var(--amber); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--amber);
}

/* ===========================
   LOADING SCREEN
=========================== */
html.is-loading, html.is-loading body { overflow: hidden; height: 100%; }

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 900px 600px at 80% 10%, rgba(242,182,92,0.16), transparent 60%),
    linear-gradient(160deg, #0B3B32 0%, #0A2620 55%, #050f0d 100%);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), visibility 0.7s;
}
.loading-screen.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loading-topo {
  position: absolute; inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1.4'%3E%3Cpath d='M-20 340 C 60 300, 120 380, 200 320 S 340 260, 440 320'/%3E%3Cpath d='M-20 280 C 60 240, 120 320, 200 260 S 340 200, 440 260'/%3E%3Cpath d='M-20 220 C 60 180, 120 260, 200 200 S 340 140, 440 200'/%3E%3Cpath d='M-20 160 C 60 120, 120 200, 200 140 S 340 80, 440 140'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 480px 480px;
}

.loading-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  animation: loadingFadeIn 0.8s ease both;
}
@keyframes loadingFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.loading-mark { position: relative; width: 118px; height: 118px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.loading-ring { position: absolute; inset: 0; animation: loadingSpin 2.4s linear infinite; }
@keyframes loadingSpin { to { transform: rotate(360deg); } }
.loading-ring-arc { animation: loadingDashPulse 2s ease-in-out infinite; transform-origin: 59px 59px; }
@keyframes loadingDashPulse { 0%, 100% { stroke-dashoffset: 245; } 50% { stroke-dashoffset: 40; } }

.loading-logo-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0F6B5C, #0a4a3f);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.04), 0 10px 30px rgba(0,0,0,0.4);
  animation: loadingPulse 2s ease-in-out infinite;
}
@keyframes loadingPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.loading-brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
.loading-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  min-height: 18px;
  transition: opacity 0.3s;
}

.loading-route { margin-bottom: 22px; opacity: 0.9; }
.loading-route-dash { animation: loadingDashMove 1.4s linear infinite; }
@keyframes loadingDashMove { to { stroke-dashoffset: -28; } }

.loading-bar-track {
  width: 220px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0F6B5C, #F2B65C);
  border-radius: 100px;
  transition: width 0.15s linear;
}
.loading-pct {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .loading-ring, .loading-logo-icon, .loading-route-dash, .loading-ring-arc { animation: none; }
}

@media (max-width: 480px) {
  .loading-mark { width: 96px; height: 96px; }
  .loading-ring { width: 96px; height: 96px; }
  .loading-logo-icon { width: 52px; height: 52px; }
  .loading-brand { font-size: 21px; }
  .loading-bar-track { width: 180px; }
  .loading-route svg { width: 220px; }
}

/* ===========================
   PROTOTYPE NOTICE BAR
=========================== */
.site-notice {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  background: linear-gradient(90deg, #0B3B32, #0F6B5C 45%, #0B3B32);
  border-bottom: 1px solid rgba(242,182,92,0.35);
}
.site-notice-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.notice-icon { color: var(--amber); flex-shrink: 0; }
.site-notice-inner a {
  color: var(--amber);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}
.site-notice-inner a:hover { color: #F9D28C; }

@media (max-width: 480px) {
  .site-notice-inner { font-size: 11.5px; padding: 7px 14px; gap: 6px; }
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: var(--notice-h, 0px); left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-navbar);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-h);
  transition: top 0.25s ease, box-shadow 0.25s ease;
}
.navbar.scrolled { box-shadow: 0 8px 24px rgba(11,35,29,0.1); }

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }

.logo-icon-wrap {
  width: 42px; height: 42px;
  background: linear-gradient(145deg, var(--primary), #0a4a3f);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(var(--primary-rgb),0.35);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--text); }
.logo-sub { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

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

.nav-link {
  padding: 8px 15px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { background: var(--primary-light); color: var(--primary); }

.nav-cta {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(34,197,94,0.3);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(34,197,94,0.4); }

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

.theme-toggle {
  width: 42px; height: 42px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  position: relative;
}
.theme-toggle:hover { border-color: var(--primary); transform: rotate(-8deg); }
.theme-icon { position: absolute; }
[data-theme="light"] .moon { display: none; }
[data-theme="dark"] .sun { display: none; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===========================
   HERO
=========================== */
.hero-mini {
  margin-top: calc(var(--navbar-h) + var(--notice-h, 0px));
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(239,162,61,0.25), transparent 60%),
    linear-gradient(160deg, #0B3B32 0%, #0F6B5C 42%, #0A2620 100%);
  padding: 88px 28px 110px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .hero-mini {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(242,182,92,0.16), transparent 60%),
    linear-gradient(160deg, #061A16 0%, #0A2620 45%, #050f0d 100%);
}

/* topographic contour motif — sinews evoking jalur Puncak */
.hero-mini::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1.4'%3E%3Cpath d='M-20 340 C 60 300, 120 380, 200 320 S 340 260, 440 320'/%3E%3Cpath d='M-20 280 C 60 240, 120 320, 200 260 S 340 200, 440 260'/%3E%3Cpath d='M-20 220 C 60 180, 120 260, 200 200 S 340 140, 440 200'/%3E%3Cpath d='M-20 160 C 60 120, 120 200, 200 140 S 340 80, 440 140'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 480px 480px;
  background-repeat: repeat;
  pointer-events: none;
}

/* dashed route-line arcing across the hero, with waypoint dots */
.hero-mini::after {
  content: '';
  position: absolute;
  right: -60px; top: 18%;
  width: 640px; height: 640px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640' viewBox='0 0 640 640'%3E%3Cpath d='M40 560 C 160 520, 190 420, 300 380 S 460 260, 420 140 S 560 60, 600 30' fill='none' stroke='%23F2B65C' stroke-opacity='0.55' stroke-width='2.5' stroke-dasharray='2 12' stroke-linecap='round'/%3E%3Ccircle cx='40' cy='560' r='6' fill='%23F2B65C' fill-opacity='0.7'/%3E%3Ccircle cx='300' cy='380' r='5' fill='%23ffffff' fill-opacity='0.55'/%3E%3Ccircle cx='420' cy='140' r='5' fill='%23ffffff' fill-opacity='0.55'/%3E%3Ccircle cx='600' cy='30' r='7' fill='%23F2B65C' fill-opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.hero-mini-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 400px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 7px 18px 7px 8px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(242,182,92,0.25);
  flex-shrink: 0;
}

.hero-mini-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 600;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-mini-text h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, #F9D28C, #EFA23D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-mini-text h1 span {
  background: linear-gradient(90deg, #F9D28C, #EFA23D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-mini-text p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin-bottom: 34px;
  max-width: 520px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
  max-width: 460px;
}
.stat-item {
  flex: 1;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 600;
  color: white;
}
.stat-item span { font-size: 12.5px; color: rgba(255,255,255,0.6); }

.hero-mini-search { position: relative; }
.search-widget {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  position: relative;
}
.search-widget::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--amber));
  border-radius: 0 0 6px 6px;
}
.search-widget h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.search-field:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
.search-field svg { color: var(--text-muted); flex-shrink: 0; }
.search-field input { flex: 1; border: none; background: none; color: var(--text); font-size: 14px; outline: none; }
.search-field input::placeholder { color: var(--text-light); }

.btn-search-hero {
  width: 100%;
  padding: 15px;
  background: var(--text);
  background: linear-gradient(135deg, var(--primary), #0a4a3f);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-search-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(var(--primary-rgb),0.4); }

/* ===========================
   TRUST STRIP
=========================== */
.trust-strip {
  max-width: 1360px;
  margin: -56px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.trust-strip-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid var(--border-light);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.trust-item span { font-size: 12.5px; color: var(--text-muted); }

/* ===========================
   MARKETPLACE LAYOUT
=========================== */
.marketplace {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px 28px 64px;
}

.section-heading { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-heading h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  margin: 12px 0 10px;
}
.section-heading p { color: var(--text-muted); font-size: 15.5px; }

.marketplace-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

/* ===========================
   FILTER SIDEBAR
=========================== */
.filter-sidebar {
  background: var(--bg-sidebar);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--navbar-h) + var(--notice-h, 0px) + 16px);
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.filter-header h3 {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.filter-header h3 svg { color: var(--primary); }
.filter-reset {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  background: none; border: none; cursor: pointer;
  padding: 5px 9px;
  border-radius: 7px;
  transition: var(--transition);
}
.filter-reset:hover { background: var(--primary-light); }

.filter-section { border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; }

.filter-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  user-select: none;
  transition: var(--transition);
}
.filter-section-header:hover { background: var(--bg-raised); }
.filter-section-header .chevron { transition: transform 0.25s; flex-shrink: 0; color: var(--text-muted); }
.filter-section.collapsed .chevron { transform: rotate(180deg); }
.filter-section.collapsed .filter-section-body { display: none; }

.filter-section-body { padding: 4px 20px 16px; }

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 4px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: var(--transition);
  border-radius: 6px;
  position: relative;
}
.filter-checkbox:hover { color: var(--text); }
.filter-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkmark {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}
.filter-checkbox input:checked ~ .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.filter-checkbox input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 5px; top: 1.5px;
  width: 6px; height: 10px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.filter-checkbox .count {
  margin-left: auto;
  background: var(--bg-raised);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 100px;
}

.show-more-btn {
  background: none; border: none; cursor: pointer;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 4px;
  margin-top: 2px;
  transition: var(--transition);
}
.show-more-btn:hover { opacity: 0.75; }

/* Range slider */
.range-slider-wrap { padding: 8px 0; }
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 700;
}

.range-track {
  position: relative;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}
.range-fill { position: absolute; top: 0; height: 100%; background: var(--primary); border-radius: 4px; pointer-events: none; }
.range-track input[type="range"] {
  position: absolute;
  width: 100%; top: -6px;
  appearance: none;
  background: none;
  cursor: pointer;
  height: 16px;
  pointer-events: none;
}
.range-track input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  pointer-events: all;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: grab;
}
.range-track input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }

.filter-close-btn {
  display: none;
  width: 100%;
  padding: 15px;
  background: var(--text);
  color: var(--bg-card);
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

/* ===========================
   TOPBAR
=========================== */
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.topbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}
.filter-toggle-btn:hover { border-color: var(--primary); color: var(--primary); }

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 10px 15px;
  flex: 1;
  max-width: 420px;
  transition: var(--transition);
}
.search-bar:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
.search-bar svg { color: var(--text-muted); flex-shrink: 0; }
.search-bar input { flex: 1; border: none; background: none; font-size: 14px; color: var(--text); outline: none; }
.search-bar input::placeholder { color: var(--text-light); }
.search-clear { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 16px; padding: 0 2px; transition: var(--transition); }
.search-clear:hover { color: var(--text); }

.result-count { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.result-count span { font-weight: 700; color: var(--text); }

.sort-select {
  padding: 9px 34px 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235B6E67' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: var(--transition);
}
.sort-select:focus { border-color: var(--primary); }

.view-toggle { display: flex; gap: 4px; background: var(--bg-raised); padding: 3px; border-radius: 10px; border: 1px solid var(--border); }
.view-btn {
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover { background: var(--bg-card); color: var(--primary); box-shadow: var(--shadow-sm); }

/* ===========================
   ACTIVE FILTERS
=========================== */
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filter-tag {
  display: flex; align-items: center; gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb),0.18);
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.filter-tag button { background: none; border: none; cursor: pointer; color: var(--primary); font-size: 14px; line-height: 1; padding: 0; }

/* ===========================
   RECENTLY VIEWED
=========================== */
.recently-viewed { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 22px; }
.rv-header { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.rv-header button { background: none; border: none; color: var(--text-muted); font-size: 12px; cursor: pointer; }
.rv-list { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.rv-item {
  flex-shrink: 0; background: var(--bg-raised); border: 1px solid var(--border); border-radius: 9px;
  padding: 7px 13px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.rv-item:hover { color: var(--primary); border-color: var(--primary); }

/* ===========================
   CARDS GRID
=========================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-grid.list-view { grid-template-columns: 1fr; }

.travel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-spring);
  cursor: pointer;
  position: relative;
}
.travel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb),0.25);
}

.card-thumb {
  position: relative;
  padding-top: 54%;
  overflow: hidden;
  background: linear-gradient(150deg, #0F6B5C 0%, #0A4A3F 100%);
}
/* per-category tint of the thumb, set via [data-kategori] */
.travel-card[data-kategori="jakarta"] .card-thumb { background: linear-gradient(150deg, #0F6B5C, #0A4A3F); }
.travel-card[data-kategori="bandung"] .card-thumb { background: linear-gradient(150deg, #1B7A9E, #0E4A61); }
.travel-card[data-kategori="semarang"] .card-thumb { background: linear-gradient(150deg, #7A5A1B, #4A360E); }
.travel-card[data-kategori="yogyakarta"] .card-thumb { background: linear-gradient(150deg, #7A2E4A, #4A1A2C); }
.travel-card[data-kategori="lain"] .card-thumb { background: linear-gradient(150deg, #4C5B54, #2B342F); }

.card-thumb::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.12' stroke-width='1.2'%3E%3Cpath d='M-10 190 C 30 170, 70 210, 110 180 S 190 150, 250 180'/%3E%3Cpath d='M-10 150 C 30 130, 70 170, 110 140 S 190 110, 250 140'/%3E%3Cpath d='M-10 110 C 30 90, 70 130, 110 100 S 190 70, 250 100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 260px;
}
.card-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.travel-card:hover .card-thumb img { transform: scale(1.06); }

.card-thumb-photo-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,21,0) 45%, rgba(7,24,21,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.card-thumb-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 46px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

.badge-featured {
  position: absolute;
  top: 13px; left: 13px;
  background: var(--amber);
  color: #2B1C05;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 4px 12px rgba(239,162,61,0.45);
  z-index: 2;
}

.card-fav {
  position: absolute;
  top: 13px; right: 13px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-spring);
  z-index: 2;
}
.card-fav:hover { transform: scale(1.18) rotate(-6deg); }
.card-fav.active { background: #fff0f0; }

.card-price-badge {
  position: absolute;
  bottom: 13px; right: 13px;
  background: rgba(7,24,21,0.72);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 9px;
  z-index: 2;
}

.card-body { padding: 18px 18px 4px; }

.card-category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* always-visible mini route strip (Cianjur -> destination) */
.card-route-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.card-route-strip .rs-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.card-route-strip .rs-dot.end { background: var(--amber); }
.card-route-strip .rs-line { flex: 1; height: 0; border-top: 1.5px dashed var(--border); min-width: 10px; }
.card-route-strip .rs-city { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-route-strip .rs-city.end { color: var(--text); font-weight: 700; }

.see-more-btn {
  width: 100%;
  padding: 9px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
  margin-bottom: 12px;
}
.see-more-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.card-meta { display: none; flex-direction: column; gap: 6px; padding-top: 12px; border-top: 1px solid var(--border); margin-bottom: 12px; }
.card-meta.open { display: flex; }

.meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.meta-item strong { color: var(--text); font-size: 12px; min-width: 60px; }

.card-facilities { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.facility-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; background: var(--bg-raised); border: 1px solid var(--border); border-radius: 100px; color: var(--text-muted); }

.card-footer { padding: 0 18px 18px; }

.btn-view-details {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-view-details:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(var(--primary-rgb),0.35); }

/* List view card */
.cards-grid.list-view .travel-card { display: grid; grid-template-columns: 240px 1fr auto; align-items: stretch; }
.cards-grid.list-view .card-thumb { padding-top: 0; height: 100%; min-height: 170px; }
.cards-grid.list-view .card-body { flex: 1; }
.cards-grid.list-view .card-footer { padding: 18px; display: flex; flex-direction: column; justify-content: center; min-width: 170px; border-left: 1px solid var(--border); }
.cards-grid.list-view .see-more-btn { display: none; }

/* ===========================
   EMPTY STATE
=========================== */
.empty-state { text-align: center; padding: 90px 24px; color: var(--text-muted); }
.empty-icon { font-size: 60px; margin-bottom: 18px; opacity: 0.6; }
.empty-state h3 { font-size: 21px; font-weight: 700; color: var(--text); margin-bottom: 8px; font-family: var(--font-heading); }
.empty-state p { font-size: 15px; margin-bottom: 26px; }
.btn-reset-all { padding: 12px 30px; background: var(--primary); color: white; border: none; border-radius: 11px; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-reset-all:hover { background: var(--primary-hover); }

/* ===========================
   LOAD MORE
=========================== */
.load-more-wrap { text-align: center; margin-top: 36px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 34px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.btn-load-more:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===========================
   SIDEBAR OVERLAY
=========================== */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(4,15,13,0.6); z-index: 900; backdrop-filter: blur(4px); }
.sidebar-overlay.active { display: block; }

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(4,15,13,0.68);
  z-index: 2000; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(8px);
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 90px rgba(0,0,0,0.4);
}

@keyframes modalIn { from { opacity: 0; transform: scale(0.92) translateY(24px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.modal-close:hover { background: #fee2e2; color: #ef4444; }

.modal-hero {
  position: relative;
  height: 230px;
  background: linear-gradient(150deg, #0F6B5C, #0A2620);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.modal-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.1' stroke-width='1.2'%3E%3Cpath d='M-10 210 C 30 190, 70 230, 110 200 S 190 170, 270 200'/%3E%3Cpath d='M-10 160 C 30 140, 70 180, 110 150 S 190 120, 270 150'/%3E%3Cpath d='M-10 110 C 30 90, 70 130, 110 100 S 190 70, 270 100'/%3E%3C/g%3E%3C/svg%3E");
}
.modal-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.modal-body { padding: 26px; }
.modal-title { font-family: var(--font-heading); font-size: 23px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.modal-price { font-size: 27px; font-weight: 800; color: var(--primary); margin-bottom: 22px; }

.modal-section { margin-bottom: 22px; }
.modal-section-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 11px; }

.modal-route { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.route-stop { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 8px; padding: 6px 13px; font-size: 13px; font-weight: 600; color: var(--text); }
.route-arrow { color: var(--amber-dark); font-size: 15px; }

.modal-jadwal { display: flex; flex-wrap: wrap; gap: 8px; }
.jadwal-chip { background: var(--primary-light); color: var(--primary); border-radius: 100px; padding: 7px 15px; font-size: 13px; font-weight: 700; }

.modal-facilities { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-fac { display: flex; align-items: center; gap: 6px; background: var(--bg-raised); border: 1px solid var(--border); border-radius: 9px; padding: 8px 13px; font-size: 13px; font-weight: 600; color: var(--text); }

.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.modal-btn { padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.modal-btn.primary { background: var(--text); color: var(--bg-card); }
.modal-btn.primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.modal-btn.wa { background: var(--accent); color: white; }
.modal-btn.wa:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(34,197,94,0.35); }

/* ===========================
   CHATBOT
=========================== */
.chatbot-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 1500; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.chatbot-box {
  width: 350px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: chatIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 490px;
}
.chatbot-box.open { display: flex; }

@keyframes chatIn { from { opacity: 0; transform: scale(0.85) translateY(20px); transform-origin: bottom right; } to { opacity: 1; transform: scale(1) translateY(0); } }

.chatbot-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: linear-gradient(120deg, var(--primary), #0a4a3f);
  color: white;
}
.chatbot-avatar { width: 38px; height: 38px; background: rgba(255,255,255,0.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.chatbot-name { font-weight: 700; font-size: 14px; }
.chatbot-status { font-size: 11px; opacity: 0.85; }
.chatbot-header-close { margin-left: auto; background: none; border: none; color: white; opacity: 0.85; cursor: pointer; font-size: 18px; line-height: 1; }
.chatbot-header-close:hover { opacity: 1; }

.chatbot-messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 11px; min-height: 240px; background: var(--bg-raised); }

.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }

.chat-bubble { max-width: 85%; padding: 11px 15px; border-radius: 16px; font-size: 13px; line-height: 1.55; }
.chat-msg.bot .chat-bubble { background: var(--bg-card); color: var(--text); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.chat-msg.user .chat-bubble { background: var(--primary); color: white; border-bottom-right-radius: 4px; }

.chatbot-input-wrap { display: flex; gap: 8px; padding: 13px 15px; border-top: 1px solid var(--border); background: var(--bg-card); }
.chatbot-input-wrap input { flex: 1; border: 1.5px solid var(--border); border-radius: 11px; padding: 10px 13px; font-size: 13px; background: var(--bg); color: var(--text); outline: none; transition: var(--transition); }
.chatbot-input-wrap input:focus { border-color: var(--primary); }
.chatbot-input-wrap button { width: 40px; height: 40px; background: var(--primary); border: none; border-radius: 11px; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.chatbot-input-wrap button:hover { background: var(--primary-hover); }

/* FABS */
.chatbot-fabs { display: flex; flex-direction: column; gap: 11px; align-items: flex-end; }

.fab { width: 52px; height: 52px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition-spring); text-decoration: none; color: white; }
.fab:hover { transform: scale(1.12) translateY(-2px); }
.fab-call { background: linear-gradient(140deg, #1B9CD8, #0E6C9E); }
.fab-wa { background: linear-gradient(140deg, #2FD16B, #1E9E4F); }
.fab-chat { background: linear-gradient(140deg, var(--primary), #0a4a3f); position: relative; }

.fab-dot { position: absolute; top: 4px; right: 4px; width: 11px; height: 11px; background: var(--amber); border-radius: 50%; border: 2px solid white; animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }

/* ===========================
   SKELETON LOADER
=========================== */
.skeleton-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.skeleton-thumb { height: 160px; background: linear-gradient(90deg, var(--border) 25%, var(--border-light) 50%, var(--border) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.skeleton-body { padding: 16px; }
.skeleton-line { height: 12px; background: linear-gradient(90deg, var(--border) 25%, var(--border-light) 50%, var(--border) 75%); background-size: 200% 100%; border-radius: 6px; animation: shimmer 1.5s infinite; margin-bottom: 10px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }
.skeleton-btn { height: 40px; background: linear-gradient(90deg, var(--border) 25%, var(--border-light) 50%, var(--border) 75%); background-size: 200% 100%; border-radius: 10px; animation: shimmer 1.5s infinite; margin-top: 16px; }

@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===========================
   SCROLL REVEAL
=========================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal-group].revealed > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].revealed > *:nth-child(1) { transition-delay: 0.03s; }
[data-reveal-group].revealed > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal-group].revealed > *:nth-child(3) { transition-delay: 0.15s; }
[data-reveal-group].revealed > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal-group].revealed > *:nth-child(5) { transition-delay: 0.27s; }
[data-reveal-group].revealed > *:nth-child(6) { transition-delay: 0.33s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-group] > * { opacity: 1; transform: none; transition: none; }
}

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top-btn {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition-spring);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-3px); border-color: var(--primary); }

/* ===========================
   CARA PESAN (STEPS)
=========================== */
.steps-section { max-width: 1140px; margin: 0 auto; padding: 90px 20px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 34px; left: 12%; right: 12%; height: 0;
  border-top: 2px dashed var(--border);
  z-index: 0;
}
.step-card { position: relative; z-index: 1; text-align: center; padding: 0 14px; display: flex; flex-direction: column; align-items: center; }
.step-content { display: flex; flex-direction: column; align-items: center; }
.step-number {
  width: 68px; height: 68px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.step-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--text-muted); max-width: 260px; margin: 0 auto; line-height: 1.6; }

/* ===========================
   FAQ ACCORDION
=========================== */
.faq-section { background: var(--bg-raised); padding: 90px 20px; }
.faq-container { max-width: 780px; margin: auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.faq-question .faq-chevron { flex-shrink: 0; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-question .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer-inner { padding: 0 20px 18px; font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* Scrollbar */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ===========================
   FEATURES ("KENAPA KAMI") STRIP
=========================== */
.features-section { max-width: 1360px; margin: 0 auto; padding: 8px 28px 90px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: var(--transition-spring);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(var(--primary-rgb),0.2); }
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-family: var(--font-heading); font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   ABOUT SECTION
=========================== */
.about-section { padding: 90px 20px; background: var(--bg-raised); position: relative; overflow: hidden; }
.about-section::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%230F6B5C' stroke-opacity='0.05' stroke-width='1.4'%3E%3Cpath d='M-20 340 C 60 300, 120 380, 200 320 S 340 260, 440 320'/%3E%3Cpath d='M-20 260 C 60 220, 120 300, 200 240 S 340 180, 440 240'/%3E%3Cpath d='M-20 180 C 60 140, 120 220, 200 160 S 340 100, 440 160'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 460px 460px;
  pointer-events: none;
}

.container-about { max-width: 1140px; margin: auto; position: relative; }

.about-intro { text-align: center; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }
.about-intro h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 600; margin: 12px 0 12px; }
.about-intro p { color: var(--text-muted); font-size: 15.5px; }

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

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-spring);
  position: relative;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.about-card::before {
  content: '';
  display: block;
  width: 34px; height: 3px;
  background: var(--amber);
  border-radius: 3px;
  margin-bottom: 16px;
}
.about-card h3 { margin-bottom: 12px; font-size: 18px; font-family: var(--font-heading); font-weight: 600; }
.about-card p, .about-card li { color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.about-card ul { display: flex; flex-direction: column; gap: 8px; }
.about-card li { position: relative; padding-left: 18px; }
.about-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonial-section { padding: 90px 20px; background: var(--bg-page); }
.testimonial-container { max-width: 1140px; margin: auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: var(--transition-spring);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: var(--amber); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14.5px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--primary), #0a4a3f);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 13.5px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner { max-width: 1360px; margin: 0 auto 90px; padding: 0 28px; }
.cta-banner-inner {
  background: linear-gradient(135deg, #0B3B32 0%, #0F6B5C 55%, #0A2620 100%);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='300' viewBox='0 0 500 300'%3E%3Cpath d='M0 260 C 100 220, 160 280, 250 220 S 400 140, 500 100' fill='none' stroke='%23F2B65C' stroke-opacity='0.4' stroke-width='2' stroke-dasharray='2 12' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.7;
}
.cta-banner-inner h2 { position: relative; color: white; font-size: clamp(24px, 3vw, 32px); font-weight: 600; margin-bottom: 12px; }
.cta-banner-inner p { position: relative; color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btn-group { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary, .btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 700;
  transition: var(--transition-spring);
}
.btn-cta-primary { background: var(--accent); color: white; box-shadow: 0 10px 26px rgba(34,197,94,0.4); }
.btn-cta-primary:hover { transform: translateY(-3px); background: var(--accent-hover); }
.btn-cta-secondary { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn-cta-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }

/* ===========================
   MAP SECTION
=========================== */
.map-section { padding: 90px 20px; background: var(--bg-raised); text-align: center; }
.map-container h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 10px; font-weight: 600; }
.map-container p { color: var(--text-muted); margin-bottom: 26px; }
.map-frame { width: 100%; height: 360px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 22px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 100%; border: none; filter: saturate(0.85); }
[data-theme="dark"] .map-frame iframe { filter: saturate(0.7) invert(0.92) hue-rotate(180deg); }
.btn-map { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; background: var(--primary); color: white; border-radius: 100px; text-decoration: none; font-weight: 700; transition: var(--transition); }
.btn-map:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===========================
   FOOTER
=========================== */
.footer-main { background: #071815; color: #C7D6D0; padding: 66px 20px 24px; position: relative; overflow: hidden; }
.footer-main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--amber), var(--primary));
}
.footer-container { max-width: 1220px; margin: auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; position: relative; }

.footer-col h3 { font-family: var(--font-heading); color: white; font-size: 19px; font-weight: 600; margin-bottom: 14px; }
.footer-col h4 { color: white; font-size: 13.5px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col p, .footer-col li { font-size: 14px; color: #9CB1A9; margin-bottom: 10px; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col a { text-decoration: none; color: #9CB1A9; transition: 0.25s; }
.footer-col a:hover { color: var(--amber); padding-left: 3px; }

.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 17px; color: white; transition: 0.25s; }
.social-icons .ig { background: linear-gradient(140deg, #d6249f, #f77638); }
.social-icons .fb { background: #1877f2; }
.social-icons .wa { background: #22C55E; }
.social-icons a:hover { transform: translateY(-3px) scale(1.05); }

.footer-bottom { text-align: center; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: #7B9089; }
.dev-glitch { color: var(--amber); font-weight: 700; text-decoration: none; transition: 0.25s; }
.dev-glitch:hover { color: #F9D28C; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .marketplace-inner { grid-template-columns: 250px 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid var(--border-light); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-mini-inner { grid-template-columns: 1fr; }
  .hero-mini-search { max-width: 480px; }
  .hero-stats { max-width: 100%; }
}

@media (max-width: 768px) {
  .marketplace-inner { grid-template-columns: 1fr; }

  .filter-sidebar {
    position: fixed; top: 0; left: 0; width: 300px; height: 100vh; z-index: 950;
    border-radius: 0; overflow-y: auto; transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .filter-sidebar.mobile-open { transform: translateX(0); }
  .filter-close-btn { display: block; }
  .filter-toggle-btn { display: flex; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: var(--navbar-h);
    left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px; gap: 4px; box-shadow: var(--shadow);
  }
  .nav-cta { margin-left: 0; justify-content: center; }
  .hamburger { display: flex; }

  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid.list-view .travel-card { grid-template-columns: 1fr; }
  .cards-grid.list-view .card-thumb { height: 190px; }
  .cards-grid.list-view .card-footer { border-left: none; border-top: 1px solid var(--border); }

  .chatbot-box { width: calc(100vw - 48px); max-width: 350px; }

  .hero-mini { padding: 50px 20px 70px; }
  .topbar { gap: 10px; }
  .topbar-right { gap: 6px; }
  .result-count { display: none; }

  .modal-actions { grid-template-columns: 1fr; }

  .trust-strip { margin-top: -36px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }

  .about-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .about-card::before, .footer-col a:hover { margin-left: auto; margin-right: auto; }
  .social-icons { justify-content: center; }
  .cta-banner-inner { padding: 44px 24px; }

  /* Cara Pesan — stack vertically with a connecting side line */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 380px;
    margin: 0 auto;
  }
  .steps-grid::before {
    top: 0; bottom: 0; left: 33px; right: auto;
    width: 0; height: auto;
    border-top: none;
    border-left: 2px dashed var(--border);
  }
  .step-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    padding: 0 0 34px;
  }
  .step-card:last-child { padding-bottom: 0; }
  .step-number { margin: 0; width: 56px; height: 56px; font-size: 20px; flex-shrink: 0; background: var(--bg-page); }
  .step-content { align-items: flex-start; padding-top: 10px; }
  .step-card h3 { margin-bottom: 6px; }
  .step-card p { max-width: none; margin: 0; text-align: left; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .marketplace { padding: 20px 16px 40px; }
  .hero-mini { padding: 30px 16px 50px; }
  .fab { width: 46px; height: 46px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 11.5px; }
}
