/* ══ RESET & BASE ══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

:root {
  --primary:      #0B3C45;
  --primary-dark: #072830;
  --accent:       #FF7A1A;
  --accent-dark:  #CC5200;
  --accent-soft:  #FFF3E8;
  --teal:         #0D6B74;
  --teal-soft:    #E4F4F5;
  --surface:      #F4FBFB;
  --bg:           #F6FAFB;
  --white:        #FFFFFF;
  --text:         #0B3C45;
  --text-muted:   #6B8A90;
  --border:       #E0EEEF;
  --shadow:       0 2px 16px rgba(11,60,69,0.07);
  --shadow-lg:    0 12px 40px rgba(11,60,69,0.13);
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ══ PROGRESS BAR ══ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 2001;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  width: 0%; transition: width 0.1s linear;
}

/* ══ HEADER (tidak diubah) ══ */
#mainHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(244,251,251,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,60,69,0.08);
  transition: all var(--transition);
}
#mainHeader.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 2px 20px rgba(11,60,69,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; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.logo-name em { font-style: italic; color: var(--accent); }
.logo-tagline { font-size: 0.65rem; color: var(--text-muted); }
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,122,26,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); }
.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(11,60,69,0.96); 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 !important; 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; }

/* ══ BREADCRUMB ══ */
.ud-breadcrumb { padding-top: 70px; background: var(--white); border-bottom: 1px solid var(--border); }
.ud-breadcrumb-inner { max-width: 1320px; margin: 0 auto; padding: 0.75rem 2rem; font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.ud-breadcrumb-inner a { color: var(--primary); font-weight: 600; transition: color 0.2s; }
.ud-breadcrumb-inner a:hover { color: var(--accent); }
.sep { color: var(--border); }

/* ══ PAGE CONTAINER ══ */
.page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.detail-container { width: 100%; }

/* ══ HERO ══ */
.detail-hero {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
}

.detail-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 6s ease;
}
.detail-hero:hover .hero-img { transform: scale(1.03); }

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,40,48,0.82) 0%,
    rgba(7,40,48,0.3) 50%,
    rgba(7,40,48,0.05) 100%
  );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
  gap: 14px;
}

.hero-top-badges {
  position: absolute;
  top: 24px;
  left: 28px;
  display: flex;
  gap: 8px;
}

.meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.meta .badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.badge {
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
}

.muted {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

.price-box {
  text-align: right;
}

.price {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.price-label {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-title-group { flex: 1; }

.hero-trip-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.btn-cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
  border: none;
}
.btn-cta-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-cta-secondary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 11px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.25); }

/* ══ SECTION TITLE INTRO ══ */
.section { margin: 24px 0; }
.trip-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.25;
}
.lead {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: justify;
  margin-top: 8px;
  max-width: 740px;
}

/* ══ GRID LAYOUT ══ */
.grid-wrap {
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 28px;
  align-items: start;
}
.grid-left { min-width: 0; }
.grid-right { position: relative; }

/* ══ CARD BASE ══ */
.card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* Section header inside card */
.card-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.card h3, .card h4 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

/* ══ HIGHLIGHTS ══ */
#highlightList {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
#highlightList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}
#highlightList li::before {
  content: "◆";
  color: var(--accent);
  font-size: 9px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ══ ITINERARY ══ */
.itinerary-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.itinerary-tab {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.itinerary-tab:hover { border-color: var(--teal); color: var(--teal); }
.itinerary-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11,60,69,0.2);
}

.itinerary-content { display: flex; flex-direction: column; gap: 0; }
.itinerary-item {
  padding: 12px 14px 12px 40px;
  border-left: 2px solid var(--border);
  margin-left: 16px;
  position: relative;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}
.itinerary-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.itinerary-item:first-child { padding-top: 4px; }
.itinerary-item:last-child { border-color: transparent; }

/* ══ HARGA PAKET ══ */
.harga-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.harga-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
}
.harga-card:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,107,116,0.1);
}

.harga-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.harga-info-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.harga-card .harga {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
  text-align: right;
}

.harga-card .small {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.harga-card .btn-wa {
  padding: 9px 16px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.harga-card .btn-wa:hover {
  background: #1fa856;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,211,102,0.4);
}

/* ══ MEETING POINT ══ */
.meeting-info { margin-bottom: 20px; }
.meeting-info:last-child { margin-bottom: 0; }
.meeting-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.meeting-info h5::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.mp-list { list-style: none; padding: 0; }
.mp-list li {
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: var(--surface);
  color: var(--text);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mp-list li:hover { background: var(--teal-soft); }

/* ══ ACCORDION ══ */
.accordion {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.accordion-header {
  padding: 16px 22px;
  background: var(--primary);
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--teal); }

.accordion-arrow {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}
.accordion.open .accordion-arrow { transform: rotate(180deg); }

.accordion-content {
  padding: 22px;
  border-top: 1px solid var(--border);
  display: none;
}
.accordion.open .accordion-content { display: block; }

/* Include/exclude boxes */
.include-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.include-box:last-child { margin-bottom: 0; }

.include-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.include-box ul { list-style: none; padding: 0; }
.include-box ul li {
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.include-box ul li:last-child { border-bottom: none; }

#syaratList {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#syaratList li {
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
  border-left: 3px solid var(--border);
  text-align: justify;
}

.green { color: #16a34a; }
.red { color: #dc2626; }

/* ══ FAQ ══ */
#faqList { list-style: none; padding: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  gap: 12px;
}
.faq-q span {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; opacity: 1; padding-top: 8px; }
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* ══ GALERI / PERJALANAN ══ */
.Perjalananmu {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perjalananmu-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
}
.perjalananmu-item:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  transform: translateX(4px);
}

.perjalananmu-item img {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.perjalananmu-item:hover img { transform: scale(1.05); }

.perjalananmu-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ══ JADWAL SIDEBAR ══ */
.card h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.jadwal-calendar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.calendar-nav {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--teal);
  transition: background 0.2s;
}
.calendar-nav:hover { background: var(--teal-soft); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 12px;
}

.calendar-day {
  padding: 7px 2px;
  border-radius: 8px;
  cursor: default;
  font-size: 12px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.calendar-day.available {
  background: rgba(13,107,116,0.1);
  color: var(--teal);
  font-weight: 700;
  cursor: pointer;
}
.calendar-day.available:hover { background: var(--teal); color: #fff; }
.calendar-day.active { background: var(--accent); color: #fff; font-weight: 700; }

.calendar-legend {
  display: flex;
  gap: 14px;
  font-size: 11px;
  margin-top: 12px;
  color: var(--text-muted);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.legend-available { background: var(--teal); }
.legend-limited { background: var(--accent); }

/* Tanggal list */
.tanggal-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.tanggal-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}
.tanggal-item:hover { border-color: var(--teal); background: var(--teal-soft); }
.tanggal-item.active {
  border-color: var(--teal);
  background: var(--teal-soft);
  font-weight: 600;
  color: var(--teal);
}
.tanggal-item.soldout { opacity: 0.45; pointer-events: none; }

.tanggal-item .badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 4px;
  display: inline-block;
  font-weight: 700;
}
.tanggal-item.soldout .badge { background: #dc2626; color: #fff; }
.tanggal-item.almost .badge { background: var(--accent); color: #fff; }

.tanggal-list.secondary {
  margin-top: 14px;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}

/* Status sidebar */
.status-sidebar { margin-top: 4px; font-size: 0.875rem; }
.status-sidebar .status { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.status-sidebar .count { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 10px; }
.status-sidebar .sisa { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

.progress-wrap {
  background: var(--border);
  border-radius: 8px;
  height: 8px;
  overflow: hidden;
  margin-top: 8px;
}
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), #1bb88e); transition: width 0.6s ease; border-radius: 8px; }

.status.soldout { color: #dc2626; }
.status.almost { color: var(--accent); }
.status.available { color: #16a34a; }

/* ══ REKOMENDASI ══ */
#rekomendasiWrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rekom-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px;
  transition: all 0.25s;
}
.rekom-card:hover {
  border-color: var(--teal);
  transform: translateX(3px);
  background: var(--teal-soft);
}

.rekom-card img {
  width: 80px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.rekom-card .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rekom-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin: 0;
}

.rekom-card span {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

/* ══ LIGHTBOX ══ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 999999;
}
.lightbox.show { opacity: 1; visibility: visible; pointer-events: auto; }

.lightbox-img {
  max-width: 90%;
  max-height: 88vh;
  border-radius: 16px;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.lightbox.show .lightbox-img { transform: scale(1); opacity: 1; }

.close-lightbox {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  user-select: none;
}
.close-lightbox:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  z-index: 9999;
}
.lightbox-nav .nav-btn {
  pointer-events: auto;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav .nav-btn:hover { background: rgba(255,255,255,0.28); }

@media (max-width: 768px) {
  .lightbox-nav .nav-btn { display: none !important; }
}

/* ══ PRICE STICKY ══ */
.price-sticky-wrapper { height: fit-content; }
.price-sticky { position: sticky; top: 88px; z-index: 20; }

/* ══ WA FLOAT ══ */
.chat-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9998;
  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;
  animation: waPulse 2.5s ease-in-out infinite;
}
.chat-whatsapp:hover { background: #1eb356; transform: scale(1.05); }
@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.65)} }

/* ══ FOOTER (tidak diubah) ══ */
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; }
.footer-logo-name { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: white; }
.footer-logo-name em { font-style: italic; color: #fca5a5; }
.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: 'Fraunces', 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); }

/* ══ RESPONSIVE ══ */
@media (max-width: 992px) {
  nav { display: none; }
  .menu-toggle { display: flex !important; }
  .grid-wrap { grid-template-columns: 1fr; }
  .grid-right { order: 2; }
  .grid-left { order: 1; }
  .price-sticky { position: relative; top: auto; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 3; }
  .detail-hero { height: 380px; }
  .hero-trip-title { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex !important; }
  .detail-hero { height: 320px; border-radius: 14px; }
  .hero-overlay { padding: 20px 20px; }
  .hero-trip-title { font-size: 1.3rem; }
  .price { font-size: 22px; }
  .card { padding: 18px; }
  .harga-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .harga-card .harga { text-align: left; }
  .footer-top { grid-template-columns: 1fr 1fr; 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; }
  .trip-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .page-container { padding: 0 16px; }
  .detail-hero { height: 260px; margin-top: 12px; }
  .hero-trip-title { font-size: 1.15rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .detail-container p { font-size: 14px; text-align: justify; }
  .itinerary-item, #highlightList li, .mp-list li, #syaratList li { font-size: 13px; }
}



/* ══ BOOKING MODAL ══ */
.booking-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.booking-overlay.open {
  opacity: 1; visibility: visible;
}
.booking-modal {
  background: white; border-radius: 20px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.booking-overlay.open .booking-modal {
  transform: translateY(0);
}

.bm-header {
  background: var(--primary); color: white;
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: flex-start;
  position: sticky; top: 0; z-index: 2;
  border-radius: 20px 20px 0 0;
}
.bm-header .bm-label {
  font-size: 0.68rem; opacity: 0.6;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px;
}
.bm-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem; font-weight: 600;
  color: white; line-height: 1.3; margin: 0;
}
.bm-close {
  background: rgba(255,255,255,0.12); border: none; color: white;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 0.9rem; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.bm-close:hover { background: rgba(255,255,255,0.22); }

.bm-summary {
  background: var(--teal-soft);
  border-bottom: 1px solid var(--border);
  padding: 12px 22px;
  display: flex; gap: 20px; flex-wrap: wrap;
}
.bm-sum-item .bm-sum-label {
  font-size: 0.68rem; color: var(--text-muted);
  display: block; margin-bottom: 2px;
}
.bm-sum-item .bm-sum-val {
  font-size: 0.85rem; font-weight: 700; color: var(--primary);
}
.bm-sum-item .bm-sum-val.price { color: var(--teal); font-size: 0.95rem; }

.bm-steps {
  display: flex; padding: 16px 22px 0; gap: 0;
}
.bm-step {
  flex: 1; text-align: center;
  font-size: 0.68rem; font-weight: 700;
  color: var(--text-muted); padding-bottom: 10px;
  position: relative;
}
.bm-step.active { color: var(--primary); }
.bm-step.done { color: var(--teal); }
.bm-step::after {
  content: ''; position: absolute; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px; border-radius: 2px;
  background: var(--border);
}
.bm-step.active::after { background: var(--accent); }
.bm-step.done::after { background: var(--teal); }
.bm-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem; margin: 0 auto 4px;
  background: white;
}
.bm-step.active .bm-step-num { border-color: var(--accent); background: var(--accent); color: white; }
.bm-step.done .bm-step-num { border-color: var(--teal); background: var(--teal); color: white; }

.bm-body { padding: 18px 22px 6px; }
.bm-row { margin-bottom: 14px; }
.bm-label-field {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 5px;
}
.req { color: var(--accent); }
.bm-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.88rem; color: var(--text);
  background: white; outline: none;
  transition: border 0.2s; font-family: inherit;
  appearance: none;
}
.bm-input:focus { border-color: var(--teal); }
textarea.bm-input { resize: none; }
select.bm-input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8A90' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; background-color: white; }

.bm-peserta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.bm-counter {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden;
}
.bm-counter-btn {
  width: 36px; height: 38px; background: var(--surface);
  border: none; font-size: 1.1rem; color: var(--primary);
  cursor: pointer; transition: background 0.15s;
}
.bm-counter-btn:hover { background: var(--teal-soft); }
.bm-counter-num {
  width: 44px; text-align: center; font-weight: 700;
  font-size: 1rem; color: var(--primary);
}
.bm-peserta-hint { font-size: 0.72rem; color: var(--text-muted); }
.bm-price-calc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.bm-price-calc .lbl { font-size: 0.75rem; color: var(--text-muted); }
.bm-price-calc .total { font-weight: 700; color: var(--teal); font-size: 1rem; }

.bm-footer {
  padding: 12px 22px 22px;
  display: flex; gap: 10px; position: sticky; bottom: 0;
  background: white; border-top: 1px solid var(--border);
}
.bm-btn-cancel {
  padding: 10px 18px; background: none;
  border: 1.5px solid var(--border); border-radius: 50px;
  color: var(--text-muted); font-weight: 700;
  font-size: 0.85rem; cursor: pointer;
}
.bm-btn-submit {
  flex: 1; padding: 12px; background: #25D366; color: white;
  border: none; border-radius: 50px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s;
}
.bm-btn-submit:hover { background: #1fa855; }
.bm-btn-submit img { border-radius: 0; }

@media (max-width: 480px) {
  .booking-modal { border-radius: 16px 16px 0 0; max-height: 95vh; }
  .booking-overlay { align-items: flex-end; padding: 0; }
}