*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0B3C45;
  --primary-dark: #07292F;
  --accent: #FF7A1A;
  --accent-dark: #CC5200;
  --accent-soft: #FFE8D6;
  --surface: #F4FBFB;
  --bg: #F6FAFB;
  --white: #FFFFFF;
  --text: #0B3C45;
  --text-muted: #6B8A90;
  --border: #E6F0F2;
  --shadow: 0 6px 30px rgba(11,60,69,0.08);
  --shadow-lg: 0 20px 60px rgba(11,60,69,0.18);
  --fire:   #FF6600; /* sama dengan accent — untuk marquee bar */
  --muted:  #F4FBFB; /* background hover yang lembut */
  --off:    #F8F9FA; /* alias bg */
  --radius: 20px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --glow: 0 0 40px rgba(255,102,0,0.35);
}


html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 700; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ══ SEO HIDDEN ══ */
.seo-static-trips {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ══ SECTION HELPERS ══ */
.section-container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.section-head.centered { flex-direction: column; align-items: center; text-align: center; }
.sec-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 0.4rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 0.5rem; }
.sec-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 500px; }
.section-head.centered .sec-sub { margin: 0 auto; }
.accent { color: var(--accent); }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('noise.png');
  opacity: 0.03;
  pointer-events: none;
}

/* ══ BUTTONS ══ */
.btn-lihat-semua {
  display: inline-block; padding: 0.75rem 2rem;
  background: var(--primary); color: white; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.3px;
  transition: all var(--transition);
}
.btn-lihat-semua:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,102,0,0.3); color: white; }

.btn-lihat-semua-outline {
  display: inline-block; padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--primary); color: var(--primary); border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem; transition: all var(--transition);
}
.btn-lihat-semua-outline:hover { background: var(--primary); color: white; }


/* ══ HEADER ══ */
#mainHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(244,251,251,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,66,77,0.08);
  transition: all var(--transition);
}
#mainHeader.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(8,66,77,0.1);
}
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.logo img { border-radius: 8px; width: 52px; height: 52px; }
nav ul { display: flex; list-style: none; gap: 0.2rem; }
nav a {
  display: block; padding: 0.45rem 0.85rem;
  font-size: 0.83rem; font-weight: 600; color: var(--text-muted);
  border-radius: 8px; transition: all 0.2s;
}
nav a:hover, nav a.active { color: var(--accent); background: rgba(255,102,0,0.08); }
.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.btn-bikin {
  padding: 0.55rem 1.3rem; background: var(--primary); color: white;
  border-radius: var(--radius-sm); font-size: 0.83rem; font-weight: 700;
  transition: all var(--transition); white-space: nowrap;
}
.btn-bikin:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--glow); }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }

/* ══ SIDEBAR MOBILE ══ */
.sidebar-glass {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  padding: 2rem 1.7rem; z-index: 2000;
  background: rgba(8,66,77,0.93); backdrop-filter: blur(16px);
  border-radius: 24px 0 0 24px;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sidebar-glass.open { right: 0; }
.sidebar-glass ul { list-style: none; margin-top: 60px; }
.sidebar-glass ul li { margin-bottom: 0.3rem; }
.sidebar-glass ul li a {
  display: block; padding: 0.8rem 1rem; color: rgba(255,255,255,0.85);
  font-size: 1rem; font-weight: 600; border-radius: 10px; transition: all 0.2s;
}
.sidebar-glass ul li a:hover { color: white; background: rgba(255,255,255,0.1); }
.sidebar-glass .sidebar-cta a {
  margin-top: 1rem; background: var(--accent); color: white;
  text-align: center; border-radius: 10px; padding: 0.85rem; display: block;
}
.close-btn { font-size: 1.6rem; cursor: pointer; color: rgba(255,255,255,0.8); background: none; border: none; display: block; text-align: right; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); z-index: 1500; display: none; }

/* ══ HERO SECTION ══ */
/* ══ HERO SLIDER ══ */
.hero-slider {
  position: relative; width: 100%;
  padding-top: 70px; /* header height */
  background: var(--primary-dark);
}
.slider-inner {
  position: relative; width: calc(100%);
  margin: 1.5rem auto 0; height: 75vh; min-height: 480px;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slider-container {
  display: flex; height: 100%; width: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.slide { flex: 1 0 100%; position: relative; overflow: hidden; }
.slide video { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,66,77,0.6) 0%, rgba(8,66,77,0.2) 60%, transparent 100%);
}
.slide-content {
  position: absolute; top: 50%; left: 8%; transform: translateY(-50%);
  color: white; max-width: 520px; z-index: 2;
}
.slide-tag {
  display: inline-block; background: rgba(255,102,0,0.9);
  color: white; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 0.35rem 1rem; border-radius: 20px; margin-bottom: 1rem;
}
.slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 0.9rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-content p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,0.88); max-width: 440px; }
.slide-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-slide-primary {
  display: inline-block; padding: 0.75rem 1.6rem;
  background: var(--accent); color: white; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem; transition: all var(--transition);
}


.hero-adventure {
  margin-top: 70px;
  position: relative;
  min-height: 82vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: 
    linear-gradient(160deg, rgba(7,41,47,0.75) 0%, rgba(7,41,47,0.35) 50%, rgba(7,41,47,0.8) 100%),
    url('https://images.unsplash.com/photo-1533130061792-64b345e4a833?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.03);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}

/* Animated terrain lines */
.hero-terrain {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 3;
  width: 100%; max-width: 1320px; margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: flex-end;
}


.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,122,26,0.2); border: 1px solid rgba(255,122,26,0.4);
  color: #FFB77A; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.3rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: #FF7A1A; display: inline-block; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800; color: white; line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-h1 em { font-style: italic; color: #FFB77A; }

.hero-p { font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 460px; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn-hero-primary {
  padding: 0.9rem 2rem; background: var(--accent); color: white;
  border-radius: var(--radius-sm); font-weight: 800; font-size: 0.9rem;
  transition: all var(--transition); box-shadow: 0 4px 20px rgba(255,122,26,0.35);
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,122,26,0.5); color:white; }
.btn-hero-ghost {
  padding: 0.9rem 2rem; background: rgba(255,255,255,0.1); color: white;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem; transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.2); color: white; }

.hero-stats-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
  padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.hstat { text-align: center; }
.hstat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: white;
  line-height: 1; margin-bottom: 0.3rem;
}
.hstat-num span { color: var(--accent); }
.hstat-lbl { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); }

/* Breadcrumb */
.breadcrumb-bar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.breadcrumb-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-inner span { color: var(--accent); font-weight: 600; }

/* ══ ACTIVITY FILTER BAR ══ */
.filter-section {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 70px; z-index: 50;
  box-shadow: 0 4px 20px rgba(11,60,69,0.06);
}
.filter-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 1rem; overflow-x: auto;
  scrollbar-width: none; height: 68px;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); flex-shrink: 0; }
.filter-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.filter-pills { display: flex; gap: 0.5rem; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem; border-radius: 30px; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-muted);
  font-size: 0.8rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); color: white; border-color: var(--primary); }
.filter-pill-icon { font-size: 0.9rem; }

/* ══ SECTION LAYOUT ══ */
.section-container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.sec-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 0.4rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 0.5rem; }
.sec-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.accent { color: var(--accent); }
.btn-lihat-semua {
  display: inline-block; padding: 0.75rem 2rem;
  background: var(--primary); color: white; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem; transition: all var(--transition);
}
.btn-lihat-semua:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,102,0,0.3); color: white; }

/* ══ FEATURED PACKAGES ══ */
.featured-section {
  padding: 5rem 0 3rem;
  background: white;
}

/* Big Feature Card */
.featured-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem;
}
.feature-card-big {
  position: relative; border-radius: 24px; overflow: hidden;
  height: 520px; cursor: pointer;
  box-shadow: var(--shadow-lg);
}
.feature-card-big img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.feature-card-big:hover img { transform: scale(1.06); }
.feature-card-big .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,41,47,0.92) 0%, rgba(7,41,47,0.4) 45%, transparent 75%);
  transition: all 0.4s;
}
.feature-card-big:hover .card-overlay { background: linear-gradient(to top, rgba(7,41,47,0.95) 0%, rgba(7,41,47,0.5) 55%, rgba(7,41,47,0.1) 80%); }
.feature-card-big .card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2.2rem;
}

.featured-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-card-sm {
  position: relative; border-radius: 20px; overflow: hidden;
  flex: 1; cursor: pointer; box-shadow: var(--shadow);
}
.feature-card-sm img {
  width: 100%; height: 100%; object-fit: cover; min-height: 240px;
  transition: transform 0.6s ease;
}
.feature-card-sm:hover img { transform: scale(1.05); }
.feature-card-sm .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,41,47,0.9) 0%, transparent 65%);
}
.feature-card-sm .card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
}

/* Card Body Elements */
.card-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(255,122,26,0.9); color: white;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
  padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 0.7rem;
}
.card-tag.blue { background: rgba(59,130,246,0.9); }
.card-tag.green { background: rgba(34,197,94,0.85); }
.card-tag.purple { background: rgba(168,85,247,0.85); }

.card-title-big {
  font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 800;
  color: white; line-height: 1.15; margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.card-title-sm {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
  color: white; line-height: 1.2; margin-bottom: 0.4rem;
}
.card-meta {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.card-meta-item {
  font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
}

.card-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
}
.card-price { color: white; }
.card-price-from { font-size: 0.68rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; }
.card-price-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: #FFB77A; line-height: 1; }
.card-price-num-sm { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #FFB77A; line-height: 1; }
.card-price-per { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.btn-card-detail {
  display: inline-block; padding: 0.6rem 1.2rem;
  background: white; color: var(--primary);
  border-radius: 8px; font-weight: 800; font-size: 0.8rem;
  transition: all 0.2s; flex-shrink: 0;
}
.btn-card-detail:hover { background: var(--accent); color: white; transform: scale(1.04); }

/* Difficulty badge */
.diff-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.63rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 0.22rem 0.65rem; border-radius: 4px;
}
.diff-easy { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.diff-moderate { background: rgba(251,191,36,0.2); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.diff-hard { background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(248,113,113,0.3); }

/* ══ ALL PACKAGES SECTION ══ */
.packages-section { padding: 4rem 0 5rem; background: var(--surface); }
.packages-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.sort-bar {
  display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0;
}
.sort-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.sort-select {
  padding: 0.5rem 1rem; border: 1.5px solid var(--border); border-radius: 8px;
  background: white; color: var(--primary); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--primary); }

/* Package Cards Grid */
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.pkg-card {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1.5px solid var(--border); box-shadow: var(--shadow);
  transition: all var(--transition); display: flex; flex-direction: column;
  position: relative;
}
.pkg-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); border-color: rgba(255,122,26,0.3); }

.pkg-img-wrap {
  position: relative; overflow: hidden; height: 220px;
}
.pkg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }

.pkg-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.pkg-badge-hot {
  display: inline-block; background: var(--accent); color: white;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.25rem 0.65rem; border-radius: 6px;
}
.pkg-badge-new {
  display: inline-block; background: #22c55e; color: white;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.25rem 0.65rem; border-radius: 6px;
}
.pkg-badge-best {
  display: inline-block; background: #8b5cf6; color: white;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.25rem 0.65rem; border-radius: 6px;
}

.pkg-price-top {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 0.5rem 0.8rem; text-align: right;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.pkg-price-coret { font-size: 0.65rem; color: #9AABAE; text-decoration: line-through; }
.pkg-price-main { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--accent); line-height: 1.1; }
.pkg-price-per { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; }

.pkg-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.pkg-category {
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.3rem;
}
.pkg-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--primary); line-height: 1.3; margin-bottom: 0.5rem;
}
.pkg-location { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.3rem; }
.pkg-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; flex-grow: 1; }

.pkg-specs {
  display: flex; gap: 1rem; flex-wrap: wrap; padding: 0.8rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.pkg-spec {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; color: var(--text-muted); font-weight: 600;
}
.pkg-spec-icon { font-size: 0.9rem; }

.pkg-footer { display: flex; gap: 0.6rem; }
.btn-pkg-detail {
  flex: 1; padding: 0.65rem; background: var(--primary); color: white;
  border-radius: 10px; font-weight: 700; font-size: 0.82rem; text-align: center;
  transition: all 0.2s;
}
.btn-pkg-detail:hover { background: var(--accent); color: white; }
.btn-pkg-wa {
  padding: 0.65rem 0.9rem; background: #25D366; color: white;
  border-radius: 10px; font-size: 0.82rem; font-weight: 700; text-align: center;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
}
.btn-pkg-wa:hover { background: #1eb356; color: white; }

/* Show more */
.show-more-wrap { text-align: center; margin-top: 3rem; }
.btn-show-more {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.5rem; border: 2px solid var(--primary); color: var(--primary);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.88rem;
  transition: all var(--transition); cursor: pointer; background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-show-more:hover { background: var(--primary); color: white; }
.btn-show-more .arrow { transition: transform 0.2s; }
.btn-show-more:hover .arrow { transform: translateY(3px); }

/* ══ EXPERIENCE STRIP ══ */
.exp-strip {
  background: var(--primary);
  padding: 3rem 0;
}
.exp-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border-radius: var(--radius); overflow: hidden;
}
.exp-item {
  padding: 2.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.exp-item:last-child { border-right: none; }
.exp-item:hover { background: rgba(255,255,255,0.05); }
.exp-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.exp-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: #FFB77A; line-height: 1; margin-bottom: 0.3rem; }
.exp-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }

/* ══ DESTINASI STRIP ══ */
.dest-strip { padding: 5rem 0; background: white; }
.dest-strip-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem;
  margin-top: 2.5rem;
}
.dest-tile {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 260px; cursor: pointer;
}
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-tile:hover img { transform: scale(1.07); }
.dest-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,41,47,0.85) 0%, transparent 60%);
}
.dest-tile:hover .dest-tile-overlay { background: linear-gradient(to top, rgba(7,41,47,0.92) 0%, rgba(7,41,47,0.2) 70%); }
.dest-tile-info {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.dest-tile-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: white; }
.dest-tile-count { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 0.15rem; }
.dest-tile-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; opacity: 0; transform: translateX(-8px);
  transition: all 0.3s;
}
.dest-tile:hover .dest-tile-arrow { opacity: 1; transform: translateX(0); }

/* ══ WHY SECTION ══ */
.why-section { padding: 5rem 0; background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-top: 3rem; }
.why-item { padding: 2.2rem 1.8rem; border-right: 1px solid var(--border); transition: background 0.2s; }
.why-item:last-child { border-right: none; }
.why-item:hover { background: white; }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); margin-bottom: 0.6rem; }
.why-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ══ CTA BAND ══ */
.cta-band { position: relative; padding: 5rem 2rem; text-align: center; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), #0a5a6a); }
.cta-band-bg::after { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1530866495561-507c9faab2ed?w=1600&q=60') center/cover; opacity: 0.12; }
.cta-band-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3rem); color: white; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-white { display: inline-block; padding: 0.9rem 2rem; background: white; color: var(--primary); border-radius: var(--radius-sm); font-weight: 800; font-size: 0.9rem; transition: all var(--transition); }
.btn-cta-white:hover { background: var(--accent); color: white; transform: translateY(-2px); }

/* ══ FOOTER ══ */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 3rem; max-width: 1320px; margin: 0 auto; padding: 4rem 2rem 3rem; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 240px; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; }
.footer-logo img { border-radius: 8px; width: 48px; height: 48px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: white; }
.footer-logo-name em { font-style: italic; color: #ffffff; }
.footer-logo-tag { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.55); padding: 0.4rem 0.9rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; transition: all 0.2s; }
.footer-social a:hover { color: white; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: white; margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: #fca5a5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 2rem; max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: #fca5a5; }
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ══ WA FLOAT ══ */
.chat-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: #25D366; color: white !important;
  padding: 0.75rem 1.3rem; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s; text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
.chat-whatsapp:hover { background: #1eb356; transform: scale(1.05); color: white !important; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 40px rgba(37,211,102,0.6)} }

/* ══ MARQUEE ══ */
.marquee-bar { background: var(--accent); padding: 9px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 4px; color: rgba(255,255,255,0.9); padding: 0 2.5rem; flex-shrink: 0; }
.marquee-dot { color: rgba(255,255,255,0.4); font-size: 0.5rem; vertical-align: middle; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ SCROLL REVEAL ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .feature-card-big { height: 420px; }
  .featured-stack { flex-direction: row; }
  .feature-card-sm { min-height: 260px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-item:nth-child(2) { border-right: none; }
  .why-item:nth-child(1),.why-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .dest-strip-grid { grid-template-columns: repeat(2,1fr); }
  .exp-inner { grid-template-columns: repeat(2,1fr); }
  .exp-item:nth-child(2) { border-right: none; }
  .exp-item:nth-child(1),.exp-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
@media (max-width: 992px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; }
  .featured-stack { flex-direction: column; }
  .dest-strip-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; border: none; gap: 1px; }
  .why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .exp-inner { grid-template-columns: repeat(2,1fr); border-radius: var(--radius); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.5rem; }
  .footer-links { justify-content: center; }
  .header-inner { padding: 0 1.2rem; }
  .section-container { padding: 0 1.2rem; }
  .hero-adventure { min-height: 70vh; }
  .hero-content { padding-bottom: 3rem; }
  .hero-h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .dest-strip-grid { grid-template-columns: 1fr; }
  .exp-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats-card { grid-template-columns: 1fr 1fr; }
}

/* CLEAR BUTTON */
.clear-btn {
  margin-left: 10px;
  padding: 6px 12px;
  background: #ddd;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.clear-btn:hover {
  background: #ccc;
}

/* ══════════════════════════════════════════
   ADVENTURE TRIP — SECTION & GRID CARDS
   Tambahkan di bawah CSS yang sudah ada
   ══════════════════════════════════════════ */

/* ══ SECTION WRAPPER ══ */
.adventure-section {
  padding: 3rem 0 5rem;
  background: var(--bg);
}

.adventure-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.adventure-header-left .sec-label {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.4rem;
}

.adventure-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.adventure-header-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

#tripCounter {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ══ FILTER BAR — REVISI ══ */
.filter-wrapper {
  max-width: 1320px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 20;
}

.filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(11,60,69,0.06);
}

.filter-bar .filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-bar .filter-btn:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.filter-bar .filter-btn .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.clear-btn {
  margin-left: auto;
  padding: 0.5rem 1rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.clear-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,102,0,0.04);
}

.filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 200px;
  background: white;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 30px rgba(11,60,69,0.12);
  padding: 1rem;
  display: none;
  z-index: 100;
  animation: panelFadeIn 0.18s ease;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.filter-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-panel ul li {
  margin-bottom: 0.5rem;
}

.filter-panel label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.filter-panel label:hover {
  background: var(--surface);
}

.filter-panel input[type="checkbox"] {
  accent-color: var(--accent);
  width: 14px;
  height: 14px;
}

/* ══ TRIP GRID ══ */
.trip-grid-new {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ══ TRIP CARD — DESAIN PREMIUM ══ */
.trip-card-new {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(11,60,69,0.06);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;

  /* reveal animation awal */
  opacity: 0;
  transform: translateY(20px);
}

.trip-card-new.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: 
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.trip-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,60,69,0.15);
  border-color: var(--accent);
}

/* Featured card — lebih besar */
.trip-card-new.card-featured {
  grid-column: span 2;
}

.trip-card-new.card-featured .card-img-wrap {
  height: 320px;
}

/* ══ GAMBAR ══ */
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.trip-card-new:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(8,66,77,0.5) 100%
  );
}

/* ══ BADGE DI ATAS GAMBAR ══ */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-featured {
  background: linear-gradient(135deg, #f59e0b, #ff7a1a);
  color: white;
  box-shadow: 0 2px 10px rgba(255,122,26,0.4);
}

.badge-new {
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  backdrop-filter: blur(4px);
}

/* ══ HARGA DI POJOK KANAN ATAS ══ */
.card-price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 0.4rem 0.75rem;
  text-align: right;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.price-from {
  display: block;
  font-size: 0.58rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.price-per {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* ══ BODY KARTU ══ */
.card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  /* Batasi 2 baris */
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══ ACTIVITY BADGES ══ */
.card-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.act-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0.2rem 0.6rem;
  background: rgba(11,60,69,0.07);
  color: var(--primary);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}

/* ══ HIGHLIGHTS ══ */
.card-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-highlights li {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 0;
}

.card-highlights li::before {
  content: none;
}

/* ══ FOOTER KARTU ══ */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.card-minpesan {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.card-cta:hover {
  background: var(--accent);
  color: white;
  gap: 8px;
}

.cta-arrow {
  transition: transform 0.2s;
}

.card-cta:hover .cta-arrow {
  transform: translateX(3px);
}

/* ══ EMPTY STATE ══ */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 0.88rem;
}

.empty-state a {
  color: var(--accent);
  font-weight: 700;
}

/* ══ CTA INLINE BANNER (muncul setelah kartu ke-3) ══ */
.cta-inline-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0a5a6a 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border: none;
  cursor: default;
}

.cta-inline-card .cta-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

.cta-inline-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  line-height: 1.3;
  margin: 0;
}

.cta-inline-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.cta-inline-card .btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.3rem;
  background: #25D366;
  color: white;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s;
}

.cta-inline-card .btn-cta-wa:hover {
  background: #1eb356;
  transform: translateY(-2px);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .trip-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .trip-card-new.card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .trip-grid-new {
    grid-template-columns: 1fr;
    padding: 0 1.2rem;
  }
  .trip-card-new.card-featured {
    grid-column: span 1;
  }
  .trip-card-new.card-featured .card-img-wrap {
    height: 220px;
  }
  .adventure-header {
    padding: 0 1.2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-wrapper {
    padding: 0 1.2rem;
  }
  .filter-bar {
    gap: 6px;
    padding: 0.8rem 1rem;
  }
  .filter-bar .filter-btn {
    font-size: 0.75rem;
    padding: 0.45rem 0.8rem;
  }
  .clear-btn {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .card-img-wrap {
    height: 190px;
  }
  .card-title {
    font-size: 0.95rem;
  }
}



/* CONTENT */
.trip-body {
  padding: 10px 20px 22px;
}

.badge-box {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
  margin-top: 12px;
  
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    background: #e8f0ff;
    color: #3366ff;
    border-radius: 8px;
    font-size: 10px;
    margin-right: 4px;
    margin-left: 4px;
}

.badge-minpesan {
  background: #ffe9e9;
  color: #b91c1c;
}
