/* =========================================================
   Jelajah Nusantara — Tour & Travel
   ========================================================= */
:root {
  --ink: #0f2a2e;
  --ink-soft: #4a5f62;
  --teal: #0d5c63;
  --teal-dark: #083d42;
  --coral: #ff6b4a;
  --coral-dark: #e8532f;
  --sand: #f6efe4;
  --cream: #fffaf2;
  --white: #ffffff;
  --line: rgba(15, 42, 46, 0.1);
  --radius: 22px;
  --shadow: 0 20px 50px -20px rgba(8, 61, 66, 0.35);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--coral); color: var(--white); box-shadow: 0 10px 25px -8px rgba(255, 107, 74, .6); }
.btn--primary:hover { background: var(--coral-dark); }
.btn--light { background: var(--white); color: var(--teal-dark); }
.btn--outline { border: 1.5px solid var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); }
.btn--sm { padding: 10px 20px; font-size: .9rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Eyebrow & titles ---------- */
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #ffd9a8; margin-bottom: 14px;
}
.eyebrow--dark { color: var(--coral); }
.section { padding: 110px 0; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--teal-dark); color: var(--white); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.01em;
}

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.logo span:not(.logo__mark) { color: var(--coral); }
.logo__mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--coral); color: var(--white);
}
.logo__mark svg { width: 22px; height: 22px; }

/* ---------- Navbar ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; padding: 20px 0; color: var(--white); transition: all .3s ease; }
.nav.is-scrolled {
  padding: 12px 0; color: var(--ink);
  background: rgba(255, 250, 242, .85); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__links { display: flex; align-items: center; gap: 32px; font-weight: 500; }
.nav__links a:not(.btn) { position: relative; opacity: .9; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--coral); transition: width .25s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { color: var(--white) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--white); padding: 140px 0 100px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 40, 44, .55) 0%, rgba(8, 40, 44, .25) 40%, rgba(8, 40, 44, .85) 100%),
    url("https://images.unsplash.com/photo-1573790387438-4da905039392?w=2000&q=80&auto=format&fit=crop") center/cover,
    linear-gradient(135deg, #0d5c63, #083d42);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem); line-height: 1.02; letter-spacing: -.02em;
  max-width: 820px; margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: #ffd9a8; }
.hero__sub { font-size: 1.15rem; max-width: 560px; opacity: .9; margin-bottom: 40px; }

.search {
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 8px;
  background: var(--white); color: var(--ink); padding: 10px; border-radius: 26px;
  max-width: 900px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45);
}
.search__field { display: flex; flex-direction: column; padding: 10px 18px; border-radius: 18px; transition: background .2s; }
.search__field:hover { background: var(--sand); }
.search__field + .search__field { border-left: 1px solid var(--line); }
.search__field span { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.search__field select, .search__field input { border: none; background: transparent; font-weight: 600; padding: 4px 0; outline: none; cursor: pointer; }
.search__btn { border-radius: 18px; padding-inline: 28px; }

.hero__stats { display: flex; gap: 56px; margin-top: 56px; flex-wrap: wrap; }
.hero__stats strong { display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.hero__stats span { font-size: .9rem; opacity: .8; }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; translate: -50% 0;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 20px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; translate: -50% 0; width: 4px; height: 8px;
  background: var(--white); border-radius: 4px; animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 24px; } }

/* ---------- Filters ---------- */
.filters { display: flex; gap: 8px; background: var(--white); padding: 6px; border-radius: 999px; box-shadow: 0 0 0 1px var(--line); }
.filter { padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); transition: .25s; }
.filter:hover { color: var(--ink); }
.filter.is-active { background: var(--teal); color: var(--white); }

/* ---------- Destination grid ---------- */
.dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 20px;
  grid-auto-flow: dense;
}
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  transition: opacity .4s ease, transform .4s ease;
}
.dest--tall { grid-row: span 2; }
.dest--wide { grid-column: span 2; }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8, 30, 33, .85)); }
.dest:hover img { transform: scale(1.08); }
.dest__info { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: var(--white); }
.dest__info h3 { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.1; }
.dest__info p { font-size: .88rem; opacity: .85; }
.dest__tag {
  display: inline-block; font-size: .72rem; font-weight: 700; padding: 5px 12px; margin-bottom: 8px;
  border-radius: 999px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
}
.dest.is-hidden { display: none; }

/* ---------- Packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 0 var(--line); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pkg__img { position: relative; height: 230px; overflow: hidden; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.pkg__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg:hover .pkg__img img { transform: scale(1.06); }
.pkg__badge {
  position: absolute; top: 16px; left: 16px; background: var(--coral); color: var(--white);
  font-size: .75rem; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.pkg__fav {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--ink-soft); transition: .2s;
}
.pkg__fav svg { width: 18px; height: 18px; }
.pkg__fav.is-liked { color: var(--coral); }
.pkg__fav.is-liked svg { fill: currentColor; }
.pkg__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.pkg__meta { display: flex; gap: 16px; font-size: .85rem; color: var(--ink-soft); margin-bottom: 8px; }
.pkg__meta span { display: inline-flex; align-items: center; gap: 5px; }
.pkg__body h3 { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.2; margin-bottom: 12px; }
.pkg__incl { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pkg__incl span { font-size: .75rem; font-weight: 600; background: var(--sand); padding: 4px 10px; border-radius: 8px; color: var(--teal); }
.pkg__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px dashed var(--line); }
.pkg__price small { display: block; font-size: .75rem; color: var(--ink-soft); }
.pkg__price strong { font-size: 1.3rem; color: var(--teal); }
.pkg__price s { font-size: .8rem; color: var(--ink-soft); margin-left: 4px; }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: 30px; height: 560px; width: 100%; object-fit: cover; background: var(--teal); }
.why__badge {
  position: absolute; right: -24px; bottom: 40px; background: var(--coral); color: var(--white);
  padding: 22px 26px; border-radius: 22px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow);
}
.why__badge strong { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.why__badge span { font-size: .85rem; line-height: 1.3; }
.why__text .section__title { margin-bottom: 36px; }
.features { display: grid; gap: 26px; }
.feature { display: flex; gap: 18px; }
.feature__icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sand); color: var(--teal);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h4 { font-size: 1.08rem; margin-bottom: 2px; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.slider { max-width: 760px; margin-inline: auto; overflow: hidden; }
.slider__track { display: flex; transition: transform .6s cubic-bezier(.65, 0, .35, 1); }
.testi { flex: 0 0 100%; text-align: center; padding: 0 10px; }
.testi__stars { color: #ffc34d; letter-spacing: 4px; font-size: 1.2rem; margin-bottom: 18px; }
.testi blockquote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.75rem); line-height: 1.45; margin-bottom: 30px; }
.testi figcaption { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.testi small { display: block; opacity: .7; }
.avatar {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-weight: 700;
  background: hsl(var(--h) 70% 60%); color: var(--white);
}
.slider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.slider__dots button { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.3); transition: .3s; }
.slider__dots button.is-active { width: 32px; background: var(--coral); }

/* ---------- CTA ---------- */
.cta {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, var(--coral), #ff9166); color: var(--white);
  border-radius: 32px; padding: 60px; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,.1); right: -120px; top: -160px;
}
.cta h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; margin-bottom: 10px; }
.cta h2 em { font-style: italic; }
.cta p { opacity: .92; }
.cta__form { display: flex; gap: 8px; background: rgba(255,255,255,.2); padding: 8px; border-radius: 999px; position: relative; }
.cta__form input { flex: 1; min-width: 0; border: none; background: transparent; padding: 0 18px; color: var(--white); outline: none; }
.cta__form input::placeholder { color: rgba(255,255,255,.8); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.logo--light { color: var(--white); }
.footer__about { margin-top: 16px; max-width: 280px; }
.footer h5 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer a:not(.logo) { display: block; margin-bottom: 10px; transition: color .2s; }
.footer a:not(.logo):hover { color: var(--coral); }
.footer p { margin-bottom: 10px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 60px; padding: 24px 0; font-size: .88rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 40; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white); display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: .3s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8, 30, 33, .6); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; background: var(--cream); border-radius: 26px; padding: 36px; width: min(480px, 100%);
  max-height: calc(100vh - 40px); overflow-y: auto;
  transform: translateY(20px) scale(.97); transition: transform .3s ease;
}
.modal.is-open .modal__box { transform: none; }
.modal__close { position: absolute; top: 14px; right: 18px; font-size: 1.8rem; line-height: 1; color: var(--ink-soft); }
.modal__box h3 { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.2; }
.modal__price { color: var(--teal); font-weight: 700; margin: 4px 0 22px; }
.booking { display: grid; gap: 14px; }
.booking label { display: grid; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.booking input {
  padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--white);
  font-weight: 500; color: var(--ink); outline: none; transition: border-color .2s;
}
.booking input:focus { border-color: var(--teal); }
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking__total { font-size: .95rem; }
.booking__total strong { color: var(--coral); font-size: 1.15rem; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; translate: -50% 120px; z-index: 120;
  background: var(--ink); color: var(--white); padding: 14px 24px; border-radius: 14px; font-weight: 500;
  transition: translate .4s cubic-bezier(.2, .9, .3, 1.2); max-width: calc(100% - 40px);
}
.toast.is-show { translate: -50% 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why { gap: 50px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(300px, 80%); flex-direction: column; align-items: flex-start;
    background: var(--cream); color: var(--ink); padding: 100px 32px; gap: 24px;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: -20px 0 50px rgba(0,0,0,.2);
  }
  .nav__links.is-open { transform: none; }
  .nav__toggle { position: relative; z-index: 60; }
  .nav__toggle.is-open { color: var(--ink); }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .search { grid-template-columns: 1fr 1fr; }
  .search__field + .search__field { border-left: none; }
  .search__btn { grid-column: 1 / -1; padding: 14px; }

  .why { grid-template-columns: 1fr; }
  .why__media img { height: 400px; }
  .why__badge { right: 16px; }
  .cta { grid-template-columns: 1fr; padding: 40px 28px; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 80px 0; }
  .search { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .hero__stats strong { font-size: 1.9rem; }
  .filters { width: 100%; overflow-x: auto; }
  .filter { flex: 1; padding: 10px 12px; white-space: nowrap; }
  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .dest--tall, .dest--wide { grid-row: auto; grid-column: auto; }
  .pkg-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta__form { flex-direction: column; border-radius: 20px; }
  .cta__form input { padding: 12px 16px; }
  .booking__row { grid-template-columns: 1fr; }
}


/* =========================================================
   DATE PICKER
   ========================================================= */
.dp { position: relative; }
.dp__trigger {
  width: 100%; display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 10px 14px 10px 10px; border-radius: 16px; background: var(--white);
  border: 1.5px solid var(--line); transition: border-color .2s, box-shadow .2s, transform .2s;
}
.dp__trigger:hover { border-color: rgba(13, 92, 99, .35); }
.dp__trigger:focus-visible, .dp__trigger[aria-expanded="true"] {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13, 92, 99, .12);
}
.dp__tile {
  flex-shrink: 0; width: 44px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--sand); color: var(--teal); overflow: hidden; position: relative;
}
.dp__tile svg { width: 22px; height: 22px; }
.dp__tile.is-filled {
  display: flex; flex-direction: column; background: var(--white);
  box-shadow: 0 0 0 1.5px var(--line), 0 6px 14px -8px rgba(8, 61, 66, .5);
}
.dp__tile-m {
  width: 100%; background: var(--coral); color: var(--white); font-size: .6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; text-align: center; padding: 3px 0 2px;
}
.dp__tile-d { flex: 1; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); line-height: 1; }
.dp__tile.is-flip { animation: tileFlip .55s cubic-bezier(.3, 1.4, .5, 1); transform-origin: top center; }
@keyframes tileFlip { 0% { transform: rotateX(-90deg); } 100% { transform: rotateX(0); } }
.dp__text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dp__caption { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.dp__value { font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp__value.is-empty { color: #9aa7a8; font-weight: 500; }
.dp__chev { color: var(--ink-soft); transition: transform .25s; display: grid; }
.dp__chev svg { width: 16px; height: 16px; transform: rotate(90deg); }
.dp__trigger[aria-expanded="true"] .dp__chev { transform: rotate(180deg); }
.dp.has-error .dp__trigger { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 107, 74, .15); animation: dpShake .45s; }
@keyframes dpShake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }

/* varian di kotak pencarian hero: tampil "polos" seperti field lain */
.search__field--dp { padding: 0; }
.search__field--dp .dp__trigger { border: none; background: transparent; padding: 8px 12px 8px 8px; border-radius: 18px; box-shadow: none; }
.search__field--dp .dp__trigger:hover { background: var(--sand); }
.search__field--dp .dp__tile { width: 38px; height: 40px; }
.search__field--dp .dp__tile-d { font-size: 1.05rem; }

/* ---------- panel ---------- */
.dp-panel {
  position: fixed; z-index: 200; width: 348px; background: var(--white); border-radius: 24px;
  box-shadow: 0 30px 70px -20px rgba(8, 40, 44, .45), 0 0 0 1px rgba(15, 42, 46, .06);
  overflow: hidden; visibility: hidden; opacity: 0; transform: translateY(-8px) scale(.97);
  transform-origin: top left; transition: opacity .22s ease, transform .28s cubic-bezier(.2, .9, .3, 1.15), visibility .22s;
  color: var(--ink); font-family: var(--font-body);
}
.dp-panel.is-up { transform-origin: bottom left; transform: translateY(8px) scale(.97); }
.dp-panel.is-open { visibility: visible; opacity: 1; transform: none; }

.dp-panel__head {
  position: relative; overflow: hidden; color: var(--white); padding: 18px 22px 16px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 70%);
}
.dp-panel__head::after { /* ombak */
  content: ""; position: absolute; left: -10%; right: -10%; bottom: -26px; height: 44px;
  background: radial-gradient(40px 18px at 50% 0, transparent 97%, rgba(255,255,255,.07) 100%) 0 0 / 60px 44px repeat-x;
}
.dp-panel__sun {
  position: absolute; right: -24px; top: -24px; width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, #ffd9a8 0 28%, rgba(255, 217, 168, .25) 29% 46%, rgba(255, 217, 168, .08) 47% 64%, transparent 65%);
  animation: sunPulse 5s ease-in-out infinite;
}
@keyframes sunPulse { 50% { transform: scale(1.08); } }
.dp-panel__eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ffd9a8; }
.dp-panel__big { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; line-height: 1.2; margin: 4px 0 6px; position: relative; }
.dp-panel__big em { font-style: italic; color: #ffd9a8; }
.dp-panel__trip { font-size: .85rem; opacity: .9; display: flex; align-items: center; gap: 6px; min-height: 1.3em; position: relative; }
.dp-panel__trip svg { width: 15px; height: 15px; transform: rotate(45deg); color: #ffd9a8; }

.dp-panel__chips { display: flex; gap: 6px; padding: 14px 16px 4px; overflow-x: auto; scrollbar-width: none; }
.dp-panel__chips::-webkit-scrollbar { display: none; }
.dp-chip {
  flex-shrink: 0; font-size: .78rem; font-weight: 600; padding: 7px 12px; border-radius: 999px;
  background: var(--sand); color: var(--teal); transition: background .2s, color .2s, transform .15s;
}
.dp-chip:hover { background: #efe3cf; transform: translateY(-1px); }
.dp-chip.is-active { background: var(--teal); color: var(--white); }

.dp-panel__nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px 4px; }
.dp-panel__month { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.dp-panel__month span { color: var(--coral); }
.dp-panel__arrow {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--ink);
  transition: background .2s;
}
.dp-panel__arrow svg { width: 18px; height: 18px; }
.dp-panel__arrow:hover:not(:disabled) { background: var(--sand); }
.dp-panel__arrow:disabled { opacity: .25; cursor: default; }

.dp-panel__week, .dp-panel__grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 0 14px; }
.dp-panel__week span { text-align: center; font-size: .7rem; font-weight: 700; color: var(--ink-soft); padding: 6px 0; text-transform: uppercase; letter-spacing: .04em; }
.dp-panel__week .is-weekend { color: var(--coral); }
.dp-panel__gridwrap { overflow: hidden; padding-bottom: 6px; }
.dp-panel__grid { row-gap: 3px; }
.dp-panel__grid.slide-next { animation: slideNext .32s ease; }
.dp-panel__grid.slide-prev { animation: slidePrev .32s ease; }
@keyframes slideNext { from { opacity: 0; transform: translateX(30px); } }
@keyframes slidePrev { from { opacity: 0; transform: translateX(-30px); } }

.dp-day {
  position: relative; height: 40px; display: grid; place-items: center; font-size: .9rem; font-weight: 600;
  color: var(--ink); isolation: isolate;
}
.dp-day.is-blank { pointer-events: none; }
.dp-day span {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  transition: background .15s, color .15s, transform .15s; position: relative;
}
.dp-day:not(:disabled):hover span { background: var(--sand); }
.dp-day:focus-visible { outline: none; }
.dp-day:focus-visible span { box-shadow: 0 0 0 2px var(--teal); }
.dp-day.is-weekend { color: var(--coral-dark); }
.dp-day.is-today span::after {
  content: ""; position: absolute; bottom: 4px; left: 50%; width: 4px; height: 4px; margin-left: -2px;
  border-radius: 50%; background: var(--teal);
}
.dp-day.is-disabled { color: #c3cbcc; cursor: not-allowed; }
.dp-day.is-disabled span { text-decoration: line-through; text-decoration-color: rgba(0,0,0,.15); }
.dp-day.is-holiday span::before {
  content: ""; position: absolute; top: 3px; right: 4px; width: 6px; height: 6px; border-radius: 50%;
  background: #e0245e; box-shadow: 0 0 0 2px var(--white);
}

/* pita rentang trip (terpilih & pratinjau hover) */
.dp-day.is-range::before, .dp-day.is-preview::before {
  content: ""; position: absolute; inset: 3px 0; z-index: -1; background: rgba(13, 92, 99, .1);
}
.dp-day.is-preview::before { background: rgba(255, 107, 74, .12); }
.dp-day.is-preview:not(.is-range) span { color: var(--coral-dark); }
.dp-day.is-start::before, .dp-day.is-pstart::before, .dp-day.is-row-start::before { left: 2px; border-top-left-radius: 20px; border-bottom-left-radius: 20px; }
.dp-day.is-end::before, .dp-day.is-pend::before, .dp-day.is-row-end::before { right: 2px; border-top-right-radius: 20px; border-bottom-right-radius: 20px; }
.dp-day.is-pstart:not(.is-start) span { background: rgba(255, 107, 74, .2); }
.dp-day.is-pend:not(.is-end) span { box-shadow: inset 0 0 0 1.5px var(--coral); }
.dp-day.is-start span { background: var(--coral) !important; color: var(--white); box-shadow: 0 8px 16px -6px rgba(255, 107, 74, .8); }
.dp-day.is-end:not(.is-start) span { background: var(--teal) !important; color: var(--white); }
.dp-day.is-range:not(.is-start):not(.is-end) span { color: var(--teal); }
.dp-day.is-pop span { animation: dayPop .4s cubic-bezier(.3, 1.6, .5, 1); }
@keyframes dayPop { 0% { transform: scale(.6); } 100% { transform: scale(1); } }

.dp-panel__foot {
  display: flex; align-items: center; gap: 14px; padding: 10px 16px 14px; border-top: 1px dashed var(--line); margin-top: 4px;
  font-size: .74rem; color: var(--ink-soft);
}
.dp-panel__legend { display: inline-flex; align-items: center; gap: 6px; }
.dp-panel__legend .dot { width: 7px; height: 7px; border-radius: 50%; background: #e0245e; }
.dp-panel__legend .band { width: 18px; height: 8px; border-radius: 6px; background: rgba(13, 92, 99, .18); }
.dp-panel__done { margin-left: auto; font-weight: 700; font-size: .85rem; color: var(--white); background: var(--teal); padding: 8px 16px; border-radius: 999px; }
.dp-panel__done:hover { background: var(--teal-dark); }

.dp-backdrop { display: none; }

/* mobile: bottom sheet */
@media (max-width: 600px) {
  .dp-panel.is-sheet {
    left: 0 !important; right: 0; bottom: 0; top: auto !important; width: 100%;
    border-radius: 26px 26px 0 0; transform: translateY(100%); transition: transform .35s cubic-bezier(.2, .9, .3, 1), visibility .35s, opacity .2s;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .dp-panel.is-sheet.is-open { transform: none; }
  .dp-panel.is-sheet .dp-panel__head { padding-top: 26px; }
  .dp-panel.is-sheet .dp-panel__head::before {
    content: ""; position: absolute; top: 9px; left: 50%; width: 40px; height: 4px; margin-left: -20px; border-radius: 4px; background: rgba(255,255,255,.4);
  }
  .dp-panel.is-sheet .dp-day { height: 46px; }
  .dp-panel.is-sheet .dp-day span { width: 42px; height: 42px; }
  .dp-backdrop {
    display: block; position: fixed; inset: 0; z-index: 199; background: rgba(8, 30, 33, .5);
    opacity: 0; visibility: hidden; transition: .3s;
  }
  .dp-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* =========================================================
   STEPPER PESERTA
   ========================================================= */
.stepper {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px; border-radius: 16px; border: 1.5px solid var(--line); background: var(--white);
}
.stepper button {
  width: 38px; height: 38px; border-radius: 12px; background: var(--sand); color: var(--teal);
  font-size: 1.3rem; font-weight: 700; line-height: 1; transition: background .2s, transform .1s;
}
.stepper button:hover { background: #efe3cf; }
.stepper button:active { transform: scale(.92); }
.stepper button:disabled { opacity: .35; cursor: default; }
.stepper output { font-weight: 700; font-size: 1.05rem; }
.stepper output small { font-weight: 500; color: var(--ink-soft); font-size: .85rem; }

/* =========================================================
   BOOKING FORM (modal & halaman detail)
   ========================================================= */
.field-label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.booking__summary {
  display: flex; justify-content: space-between; align-items: baseline; padding: 14px 16px; border-radius: 16px;
  background: var(--sand); font-size: .9rem;
}
.booking__summary strong { font-size: 1.3rem; color: var(--coral-dark); font-family: var(--font-display); }
.booking__error { color: var(--coral-dark); font-size: .85rem; font-weight: 600; min-height: 1em; }
.booking__success { text-align: center; padding: 10px 0 4px; display: none; }
.booking__success.is-show { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }
.booking__check {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center;
  background: rgba(37, 211, 102, .12); color: #1faa55; font-size: 2rem;
}
.booking__success h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.booking__success p { color: var(--ink-soft); margin-bottom: 18px; }
.booking__code { display: inline-block; font-weight: 700; letter-spacing: .06em; background: var(--sand); padding: 4px 12px; border-radius: 8px; color: var(--teal); }
.btn--wa { background: #25d366; color: var(--white); box-shadow: 0 10px 25px -8px rgba(37, 211, 102, .7); }
.btn--wa:hover { background: #1fb858; }
.btn.is-loading { opacity: .7; pointer-events: none; }

/* kartu paket: judul & gambar jadi link */
.pkg__img > a { display: block; height: 100%; }
.pkg__body h3 a:hover { color: var(--teal); }
.pkg-filter-note {
  display: none; align-items: center; justify-content: center; gap: 10px; margin: -24px 0 30px; font-weight: 600;
}
.pkg-filter-note.is-show { display: flex; }
.pkg-filter-note button { color: var(--coral-dark); text-decoration: underline; font-weight: 700; }
.pkg.is-hidden { display: none; }
.dest { display: block; }

/* =========================================================
   HALAMAN DETAIL PAKET
   ========================================================= */
.detail-hero {
  position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--white);
  padding: 140px 0 56px; background: var(--teal-dark);
}
.detail-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.detail-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,40,44,.45), rgba(8,40,44,.25) 40%, rgba(8,40,44,.9)); }
.detail-hero .container { position: relative; }
.crumbs { display: flex; gap: 8px; font-size: .88rem; opacity: .85; margin-bottom: 14px; flex-wrap: wrap; }
.crumbs a:hover { color: #ffd9a8; }
.detail-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; max-width: 820px; margin-bottom: 18px; }
.detail-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-hero__meta span {
  display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
}

.detail { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; padding: 64px 0 100px; }
.detail__main > section + section { margin-top: 56px; }
.detail__main h2 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 18px; }
.detail__lead { font-size: 1.15rem; color: var(--ink-soft); }
.prose { color: var(--ink-soft); }
.prose p + p { margin-top: 12px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 10px; }
.gallery a { border-radius: 16px; overflow: hidden; background: var(--sand); }
.gallery a:first-child { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery a:hover img { transform: scale(1.06); }

.timeline { position: relative; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: repeating-linear-gradient(var(--line) 0 6px, transparent 6px 12px); }
.tl-item { position: relative; display: flex; gap: 20px; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-day {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; z-index: 1;
  background: var(--teal); color: var(--white); font-weight: 700; font-size: .95rem;
}
.tl-item:first-child .tl-day { background: var(--coral); }
.tl-item:last-child .tl-day { background: var(--teal-dark); }
.tl-body { padding-top: 6px; }
.tl-body small { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.tl-body h4 { font-size: 1.08rem; margin: 2px 0 4px; }
.tl-body p { color: var(--ink-soft); }

.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.incl__box { background: var(--white); border-radius: 20px; padding: 22px; box-shadow: 0 0 0 1px var(--line); }
.incl__box h4 { margin-bottom: 12px; }
.incl__box ul { list-style: none; display: grid; gap: 8px; }
.incl__box li { display: flex; gap: 10px; color: var(--ink-soft); }
.incl__box li::before { content: "✓"; color: #1faa55; font-weight: 800; }
.incl__box--no li::before { content: "✕"; color: var(--coral); }

.book-card {
  position: sticky; top: 96px; background: var(--white); border-radius: 26px; padding: 26px;
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
}
.book-card__price small { display: block; color: var(--ink-soft); font-size: .8rem; }
.book-card__price strong { font-family: var(--font-display); font-size: 2rem; color: var(--teal); }
.book-card__price s { color: var(--ink-soft); margin-left: 6px; }
.book-card__save { display: inline-block; margin-left: 8px; font-size: .75rem; font-weight: 700; color: var(--white); background: var(--coral); padding: 3px 9px; border-radius: 999px; vertical-align: middle; }
.book-card .booking { margin-top: 20px; }
.book-card__trust { display: flex; justify-content: center; gap: 16px; margin-top: 14px; font-size: .78rem; color: var(--ink-soft); }

.related { padding: 0 0 110px; }

@media (max-width: 960px) {
  .detail { grid-template-columns: 1fr; gap: 40px; }
  .book-card { position: static; }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; }
  .incl { grid-template-columns: 1fr; }
  .detail-hero { min-height: 52vh; }
}

.booking[hidden] { display: none; }


.detail > aside { align-self: stretch; }
.book-card__price s { white-space: nowrap; }


/* ---------- Logo (nama & gambar diatur dari admin) ---------- */
.logo span.logo__name { color: inherit; white-space: nowrap; }
.logo .logo__name span { color: var(--coral); }
.logo__img { height: 42px; width: auto; max-width: 180px; object-fit: contain; }
.nav.is-scrolled .logo__img { height: 36px; }
@media (max-width: 600px) { .logo { font-size: 1.15rem; } .logo__img { height: 34px; } }
