﻿/* ==========================================================================
   BANGGAI ISLAND ESCAPE — Premium Tropical Travel
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --navy: #0a2740;
  --navy-deep: #061a2c;
  --navy-soft: #123654;
  --ocean: #0f4c6b;
  --sand: #f5efe4;
  --sand-deep: #ece1cd;
  --beige: #ded3bd;
  --char: #1f2933;
  --char-soft: #4b5563;
  --gold: #c8a55a;
  --gold-soft: #d9bc7e;
  --gold-dark: #a8873d;
  --white: #ffffff;
  --line: #e7dfd0;
  --shadow-sm: 0 2px 10px rgba(10, 39, 64, .06);
  --shadow-md: 0 14px 40px rgba(10, 39, 64, .12);
  --shadow-lg: 0 30px 70px rgba(6, 26, 44, .28);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--char);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: .01em;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section { padding: 104px 0; position: relative; }
.section-sand { background: var(--sand); }

.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  width: 44px;
  background: var(--gold);
  flex: 0 0 auto;
}
.eyebrow.light { color: var(--gold-soft); }

.section-title {
  font-size: clamp(30px, 4.6vw, 46px);
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-sub { color: var(--char-soft); font-size: 17px; }

/* ---------- Auttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 60px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  line-height: 1.2;
  white-space: nowrap;
}
.btn .ic { width: 17px; height: 17px; flex: 0 0 auto; }

.btn-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: var(--navy-deep); box-shadow: 0 10px 26px rgba(200, 165, 90, .35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(200, 165, 90, .45); }

.btn-wa { background: #25d366; color: #05331a; box-shadow: 0 10px 26px rgba(37, 211, 102, .35); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, .42); background: #2ee06f; }

.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }

.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, .7); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); transform: translateY(-3px); }

.btn-lg { padding: 18px 40px; font-size: 14px; }
.btn-sm { padding: 11px 20px; font-size: 11.5px; }
.btn-block { width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ocean);
  transition: gap .3s var(--ease), color .3s;
}
.btn-link .ic { width: 16px; height: 16px; }
.btn-link:hover { gap: 14px; color: var(--gold-dark); }
/* ---------- Header ---------- */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6, 26, 44, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .35s, height .35s var(--ease);
}
#site-header.is-scrolled { height: 68px; background: rgba(6, 26, 44, .96); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex: 0 0 auto;
}
.brand-mark { width: 42px; height: 42px; color: var(--gold); flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .2em;
}
.brand-text em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: .26em;
  color: rgba(255, 255, 255, .72);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav a:hover { color: var(--gold-soft); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.btn-book { padding: 12px 22px; font-size: 11.5px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.lang-switch button { color: rgba(255, 255, 255, .55); padding: 6px 7px; border-radius: 6px; transition: color .3s, background .3s; }
.lang-switch button:hover { color: var(--white); }
.lang-switch button.is-active { color: var(--gold-soft); background: rgba(200, 165, 90, .14); }
.lang-sep { color: rgba(255, 255, 255, .35); }

/* ---------- Mobile nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.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); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 999;
  background: var(--navy-deep);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform .4s var(--ease), opacity .35s, visibility .35s;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav-inner {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile-nav nav ul { display: flex; flex-direction: column; }
.mobile-nav nav a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.mobile-nav nav a:hover { color: var(--gold-soft); }
.mobile-nav-foot { display: flex; flex-direction: column; gap: 14px; }
.mobile-nav-foot .lang-switch { justify-content: center; padding: 6px 0; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}
/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-slides,
.hero-slide,
.hero-overlay { position: absolute; inset: 0; }

.hero-slide { background-size: cover; background-position: center; opacity: 0; animation: heroFade 18s infinite; }
.hero-slide.slide-1 { background-image: linear-gradient(rgba(6, 26, 44, .62), rgba(6, 26, 44, .72)), url('../wisata/paisupok%20lake.jpg'); animation-delay: 0s; }
.hero-slide.slide-2 { background-image: linear-gradient(rgba(6, 26, 44, .62), rgba(6, 26, 44, .72)), url('../wisata/oyama%20beach.jpg'); animation-delay: 6s; }
.hero-slide.slide-3 { background-image: linear-gradient(rgba(6, 26, 44, .62), rgba(6, 26, 44, .72)), url('../wisata/Mbungmbung%20beach.jpg'); animation-delay: 12s; }

@keyframes heroFade {
  0%, 28% { opacity: 0; }
  38%, 61% { opacity: 1; }
  72%, 100% { opacity: 0; }
}

.hero-overlay {
  background:
    radial-gradient(ellipse at 72% 18%, rgba(15, 76, 107, .22), transparent 55%),
    linear-gradient(90deg, rgba(6, 26, 44, .62) 0%, rgba(6, 26, 44, .42) 55%, rgba(6, 26, 44, .2) 100%),
    linear-gradient(180deg, rgba(6, 26, 44, .66) 0%, rgba(6, 26, 44, .38) 45%, rgba(6, 26, 44, .82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 80px;
  max-width: 980px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-shadow: 0 1px 10px rgba(6, 26, 44, .7), 0 2px 4px rgba(6, 26, 44, .4);
}
.hero-eyebrow::before { content: ""; width: 48px; height: 1px; background: var(--gold); box-shadow: 0 0 8px rgba(200, 165, 90, .6); }

.hero-title {
  font-size: clamp(40px, 7vw, 74px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 24px;
  max-width: 14ch;
  text-wrap: balance;
  text-shadow: 0 2px 6px rgba(6, 26, 44, .55), 0 6px 28px rgba(6, 26, 44, .65);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, .95);
  max-width: 520px;
  margin-bottom: 38px;
  font-weight: 300;
  font-size: 18px;
  text-shadow: 0 1px 8px rgba(6, 26, 44, .65);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-route {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(6, 26, 44, .62);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px 28px;
  max-width: 680px;
  box-shadow: 0 14px 40px rgba(6, 26, 44, .35);
}
.hr-leg { display: flex; flex-direction: column; line-height: 1.2; }
.hr-leg strong { font-size: 15px; letter-spacing: .08em; color: var(--white); text-shadow: 0 1px 6px rgba(6, 26, 44, .8); }
.hr-leg.is-main strong { color: var(--gold-soft); }
.hr-leg span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .72); margin-top: 4px; text-shadow: 0 1px 4px rgba(6, 26, 44, .8); }
.hr-arrow { color: var(--gold); width: 22px; height: 30px; flex: 0 0 auto; }
.hr-arrow svg { width: 100%; height: 100%; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  animation: scrollPulse 2.4s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .9; }
  50% { transform: translateX(-50%) translateY(8px); opacity: .5; }
}

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.intro-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.intro-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.intro-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s, color .35s;
}
.intro-item:hover .intro-icon { background: var(--navy); color: var(--gold-soft); }
.intro-icon svg { width: 28px; height: 28px; }
.intro-item h3 { font-size: 16px; letter-spacing: .08em; margin-bottom: 10px; }
.intro-item p { font-size: 14px; color: var(--char-soft); }

@media (max-width: 1080px) {
  .intro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .intro-grid { grid-template-columns: 1fr; }
}
/* ---------- Tours / Packages ---------- */
.tours { background: var(--white); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.tour-card-top { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; min-height: 32px; }

.tour-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--sand);
  border: 1px solid var(--beige);
  padding: 8px 14px;
  border-radius: 40px;
}
.tour-badge.soft { color: var(--ocean); background: #e8f2f6; border-color: #cfe3ec; font-size: 10px; letter-spacing: .1em; }
.tour-badge.ghost { color: var(--white); background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .35); }

.tour-desc { font-size: 14.5px; color: var(--char-soft); margin-bottom: 24px; }

.tour-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.spec { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.spec dt { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--char-soft); font-weight: 600; }
.spec dd { font-size: 14px; font-weight: 600; color: var(--navy); text-align: right; }

.tour-price {
  background: linear-gradient(135deg, #fbf7ef, var(--sand));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.price-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 2px; }
.price-main { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.price-rate { font-size: 12px; color: var(--char-soft); margin-left: 4px; }

.tour-note { font-size: 12px; color: var(--char-soft); margin-bottom: 18px; font-style: italic; }

.tour-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* Open trip price rows */
.open-price { display: flex; flex-direction: column; margin-bottom: 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.open-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.open-row:last-child { border-bottom: 0; }
.open-row:nth-child(even) { background: #fbfaf7; }
.or-guests { font-weight: 700; color: var(--navy); }
.or-price { font-weight: 700; color: var(--navy); text-align: right; }
.or-per { font-size: 11px; color: var(--char-soft); }

/* Custom tour */
.tour-card-custom { background: var(--grad-navy); border: 0; color: var(--white); overflow: hidden; }
.tour-custom-bg { position: absolute; inset: 0; opacity: .16; background-image: url('../wisata/paisupok%20lake.jpg'); background-size: cover; background-position: center; }
.tour-card-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 44, .4) 0%, rgba(6, 26, 44, .72) 100%);
  z-index: 0;
}
.tour-card-custom > * { position: relative; z-index: 1; }
.tour-card-custom .tour-desc,
.tour-card-custom .tour-custom-list { color: rgba(255, 255, 255, .88); text-shadow: 0 1px 6px rgba(6, 26, 44, .6); }
.tour-custom-title { color: var(--white); font-size: 26px; margin-bottom: 14px; text-shadow: 0 2px 10px rgba(6, 26, 44, .7); }
.tour-custom-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; margin-bottom: 28px; }
.tour-custom-list li { display: flex; align-items: flex-start; gap: 10px; }
.tour-custom-list li::before { content: "\2713"; color: var(--gold-soft); font-weight: 700; flex: 0 0 auto; }

@media (max-width: 1080px) {
  .tours-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
}
/* ---------- Route band ---------- */
.route-band {
  padding: 104px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% -10%, rgba(200, 165, 90, .18), transparent 55%),
    radial-gradient(ellipse at 85% 110%, rgba(15, 76, 107, .1), transparent 50%),
    linear-gradient(165deg, #fbf8f1 0%, #f3ecd9 50%, #eae0c9 100%);
}
.route-head { position: relative; z-index: 1; max-width: 720px; margin: 0 auto 56px; text-align: center; }
.route-head .eyebrow { color: var(--gold-dark); }
.route-head .eyebrow::before,
.route-head .eyebrow::after { background: var(--gold); }
.route-head .section-title { color: var(--navy); }
.route-sub { color: var(--char-soft); font-size: 16px; }

.route-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.rt-leg { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.rt-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(168, 135, 61, .45); }
.rt-leg.is-focus .rt-dot { background: var(--gold); box-shadow: 0 0 0 8px rgba(200, 165, 90, .22); }
.rt-leg h3 { color: var(--navy); font-size: 20px; letter-spacing: .05em; }
.rt-leg.is-focus h3 { color: var(--ocean); }
.rt-pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 40px;
  padding: 8px 16px;
  box-shadow: 0 4px 14px rgba(10, 39, 64, .08);
}
.rt-pill.soft { color: var(--gold-dark); border-color: var(--gold); background: rgba(200, 165, 90, .14); }
.rt-copy { font-size: 13.5px; color: var(--char-soft); max-width: 200px; }
.rt-line { width: 90px; height: 1.5px; background: linear-gradient(90deg, rgba(200, 165, 90, .8), rgba(200, 165, 90, .2)); position: relative; }
.rt-line::after { content: "\25A8"; position: absolute; right: -2px; top: -10px; color: var(--gold-dark); font-size: 13px; }

@media (max-width: 860px) {
  .route-track { grid-template-columns: 1fr; gap: 30px; }
  .rt-line { width: 1.5px; height: 60px; background: linear-gradient(180deg, rgba(200, 165, 90, .8), rgba(200, 165, 90, .2)); justify-self: center; }
  .rt-line::after { content: "\25AE"; right: -4px; top: auto; bottom: -14px; }
}
/* ---------- Destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dest-grid-laut { grid-template-columns: repeat(3, 1fr); }
.dest-grid-hotels { grid-template-columns: repeat(3, 1fr); }

.dest-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.dest-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-deep); }
.dest-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.dest-card:hover .dest-media img { transform: scale(1.06); }

.dest-media.noimg {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 60%, var(--ocean) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
}
.dest-initial {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 600;
  color: rgba(255, 255, 255, .22);
  line-height: 1;
}
.dest-soon { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }

.dest-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: rgba(6, 26, 44, .55);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.dest-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dest-body h3 { font-size: 19px; letter-spacing: .04em; }
.dest-body p { font-size: 14px; color: var(--char-soft); flex: 1; }
.dest-body .btn-link { align-self: flex-start; margin-top: 4px; }

.laut-section { background: var(--white); }
.dest-section { background: var(--sand); }

@media (max-width: 1080px) {
  .dest-grid,
  .dest-grid-laut,
  .dest-grid-hotels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .dest-grid,
  .dest-grid-laut,
  .dest-grid-hotels { grid-template-columns: 1fr; }
}
/* ---------- Hotels ---------- */
.hotels-section { background: var(--sand); }
.hotel-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(6, 26, 44, .55);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 40px;
  padding: 7px 15px;
}
.hotel-note {
  text-align: center;
  color: var(--char-soft);
  font-size: 13.5px;
  font-style: italic;
  margin-top: 34px;
}
/* ---------- Gallery ---------- */
.gallery { background: var(--sand); }

.gal-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.gal-filters button {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--char-soft);
  padding: 12px 22px;
  border-radius: 40px;
  border: 1px solid var(--beige);
  background: var(--white);
  transition: all .3s;
}
.gal-filters button:hover { border-color: var(--gold); color: var(--gold-dark); }
.gal-filters button.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 16px;
}
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.g-item.is-feature { grid-column: span 2; grid-row: span 2; }
.g-link { display: block; width: 100%; height: 100%; position: relative; }
.g-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.g-item:hover .g-link img { transform: scale(1.07); }
.g-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 44, .05) 45%, rgba(6, 26, 44, .85) 100%);
  opacity: .8;
  transition: opacity .4s;
}
.g-item:hover .g-link::after { opacity: .95; }
.g-link figcaption {
  position: absolute;
  left: 18px; bottom: 14px;
  right: 18px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--ease);
  text-shadow: 0 1px 6px rgba(6, 26, 44, .9);
}
.g-link figcaption::before { content: "\2716"; color: var(--gold-soft); font-size: 11px; transform: rotate(45deg); }
.g-item:hover .g-link figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 620px) {
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-item.is-feature { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 14, 24, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-stage {
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb-stage img { max-width: 100%; max-height: 76vh; object-fit: contain; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-stage figcaption { font-size: 14px; letter-spacing: .05em; color: rgba(255, 255, 255, .85); font-family: var(--font-body); }
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  z-index: 3;
}
.lb-btn:hover { background: rgba(255, 255, 255, .22); }
.lb-close { top: 24px; right: 24px; transform: none; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
@media (max-width: 640px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
/* ---------- Vehicle rental ---------- */
.vehicles { background: var(--grad-navy); position: relative; overflow: hidden; }
.vehicles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../wisata/oyama%20beach.jpg');
  background-size: cover;
  background-position: center;
  opacity: .06;
}
.vehicles .container { position: relative; z-index: 1; }
.vehicles .eyebrow,
.vehicles .section-title,
.vehicles .section-sub { text-shadow: 0 2px 12px rgba(6, 26, 44, .8); }
.vehicles .section-sub { color: rgba(255, 255, 255, .85); }

.veh-group { margin-bottom: 48px; }
.veh-group-title {
  color: var(--gold-soft);
  font-size: 15px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 1px 8px rgba(6, 26, 44, .8);
}
.veh-group-title span { background: rgba(6, 26, 44, .55); border: 1px solid rgba(200, 165, 90, .45); padding: 10px 20px; border-radius: 40px; }

.veh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.veh-grid:last-child { margin-bottom: 0; }
.veh-grid-cars {
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin-inline: auto;
}
.veh-grid-cars .veh-media { height: 190px; }

.veh-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 24px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .35s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(6, 26, 44, .18);
}
.veh-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(6, 26, 44, .3); border-color: var(--beige); }

.veh-media {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  margin-bottom: 10px;
  padding: 8px 10px;
}
.veh-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Foto studio berlatar putih menyatu mulus dengan kartu (tanpa kotak terlihat) */
  mix-blend-mode: multiply;
  transition: transform .7s var(--ease);
}
.veh-card:hover .veh-media img { transform: scale(1.06); }
.veh-media img.is-cutout { filter: drop-shadow(0 12px 14px rgba(10, 39, 64, .16)); }

.veh-card h4 { color: var(--navy); font-size: 18px; letter-spacing: .03em; }
.veh-type { font-size: 12px; color: var(--char-soft); letter-spacing: .04em; }
.veh-actions { display: flex; gap: 10px; margin-top: 14px; }
.veh-actions .btn { flex: 1; }

.veh-note { text-align: center; color: rgba(255, 255, 255, .65); font-size: 14px; max-width: 640px; margin-inline: auto; }

@media (max-width: 1080px) {
  .veh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .veh-grid { grid-template-columns: 1fr; }
}

/* ---------- International ---------- */
.intl { position: relative; padding: 0; overflow: hidden; background: var(--navy-deep); }
.intl-media {
  position: absolute;
  inset: 0;
}
.intl-media img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.intl-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 26, 44, .97) 0%, rgba(6, 26, 44, .88) 40%, rgba(6, 26, 44, .55) 100%); }

.intl .container { position: relative; z-index: 1; }
.intl-grid { display: flex; justify-content: flex-start; }
.intl-copy { max-width: 560px; padding: 120px 0; }

.intl-copy .section-title { font-size: clamp(30px, 4.6vw, 46px); text-shadow: 0 2px 12px rgba(6, 26, 44, .75); }
.intl-sub { color: rgba(255, 255, 255, .9); font-size: 17px; margin-bottom: 34px; text-shadow: 0 1px 8px rgba(6, 26, 44, .7); }

.intl-feats { display: flex; flex-direction: column; gap: 18px; margin-bottom: 38px; }
.intl-feats li { display: flex; flex-direction: column; gap: 4px; padding-left: 20px; border-left: 2px solid var(--gold); }
.intl-feats strong { color: var(--gold-soft); font-size: 14px; letter-spacing: .14em; text-shadow: 0 1px 6px rgba(6, 26, 44, .7); }
.intl-feats span { color: rgba(255, 255, 255, .85); font-size: 14px; text-shadow: 0 1px 6px rgba(6, 26, 44, .6); }

.intl-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .intl-copy { padding: 80px 0; }
  .intl-media::after { background: linear-gradient(180deg, rgba(6, 26, 44, .88) 0%, rgba(6, 26, 44, .78) 100%); }
}
/* ---------- Why choose us ---------- */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  background: var(--sand);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .4s var(--ease), background .35s, border-color .35s;
}
.why-item:hover { transform: translateY(-6px); background: var(--white); border-color: var(--beige); box-shadow: var(--shadow-md); }
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .4s var(--ease);
}
.why-item:hover .why-icon { transform: rotate(-6deg) scale(1.05); }
.why-icon svg { width: 26px; height: 26px; }
.why-item h3 { font-size: 15px; letter-spacing: .06em; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--char-soft); }

@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------- */
.price-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.pt-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
}
.pt-row:last-child { border-bottom: 0; }
.pt-head { background: var(--navy); border-bottom: 0 !important; }
.pt-head span {
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.pt-private { background: linear-gradient(135deg, #fbf7ef, var(--sand)); }
.pt-key { font-size: 14px; color: var(--char); font-weight: 600; }
.pt-key strong { display: block; color: var(--navy); font-size: 15px; }
.pt-key small { display: block; color: var(--char-soft); font-weight: 400; font-size: 12px; margin-top: 2px; }
.pt-price { font-size: 14px; color: var(--navy); font-weight: 700; }
.pt-row.pt-open .price-main { font-size: 15px; }

.price-note { text-align: center; color: var(--char-soft); font-size: 14px; margin-top: 24px; font-style: italic; }

@media (max-width: 700px) {
  .pt-row { padding: 14px 16px; }
}

/* ---------- Location ---------- */
.location { background: var(--white); }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.loc-copy { max-width: 460px; }
.loc-sub { color: var(--char-soft); font-size: 16.5px; margin-bottom: 22px; }
.loc-addr { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 600; font-size: 15px; margin-bottom: 28px; }
.loc-addr .ic { width: 20px; height: 20px; color: var(--gold-dark); }

.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; }
}
/* ---------- About ---------- */
.about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  width: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  left: -18px; bottom: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}
.about-badge span { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }

.about-p { color: var(--char-soft); font-size: 16px; margin-bottom: 14px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.about-chips li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 40px;
  padding: 10px 18px;
}
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 520px; }
}

/* ---------- Contact ---------- */
.contact { background: var(--grad-navy); }
.contact-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 56px 48px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.contact-head .eyebrow::before,
.contact-head .eyebrow::after { background: var(--gold); }
.contact-sub { color: rgba(255, 255, 255, .75); font-size: 15px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}
.contact-block {
  background: rgba(6, 26, 44, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform .4s var(--ease), border-color .35s;
}
.contact-block:hover { transform: translateY(-6px); border-color: rgba(200, 165, 90, .5); }
.contact-ico {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(200, 165, 90, .16);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-ico svg { width: 24px; height: 24px; }
.contact-block h4 { color: var(--white); font-size: 14px; letter-spacing: .1em; margin-bottom: 10px; }
.contact-big a { color: var(--gold-soft); font-weight: 700; font-size: 16px; letter-spacing: .02em; }
.contact-big a:hover { color: var(--white); }
.contact-list { font-size: 14px; color: rgba(255, 255, 255, .8); line-height: 1.7; }
.contact-list li + li { margin-top: 2px; }
.contact-cta { text-align: center; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .contact-card { padding: 40px 22px; }
  .contact-grid { grid-template-columns: 1fr; }
}
/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); padding: 80px 0 34px; color: rgba(255, 255, 255, .7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer-wa { margin-top: 16px; }
.footer-wa a { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-soft); font-weight: 600; font-size: 14.5px; }
.footer-wa a:hover { color: var(--white); }
.footer-wa .ic { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, .7); transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 30px;
  font-size: 13px;
}
.footer-copy { color: rgba(255, 255, 255, .55); }
.footer-note { color: rgba(255, 255, 255, .4); }
.footer .lang-switch button { color: rgba(255, 255, 255, .5); }
.footer .lang-switch button:hover { color: var(--white); }
.footer .lang-switch button.is-active { color: var(--gold-soft); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Aack to top ---------- */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .4s var(--ease);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--navy-deep); }

/* ---------- Modals ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(4, 14, 24, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  width: min(100%, 560px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 38px 36px;
  transform: translateY(20px);
  transition: transform .4s var(--ease);
}
.modal.is-open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--navy);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border-radius: 40px;
  padding: 8px 14px;
  margin-bottom: 16px;
}
.modal-card h3 { font-size: 25px; margin-bottom: 10px; }
.modal-lead { color: var(--char-soft); font-size: 14.5px; margin-bottom: 22px; }

.modal-specs { display: flex; flex-direction: column; margin-bottom: 24px; }
.modal-specs div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.modal-specs dt { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--char-soft); font-weight: 700; }
.modal-specs dd { font-size: 14px; color: var(--navy); font-weight: 600; }

.modal-price {
  background: linear-gradient(135deg, #fbf7ef, var(--sand));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.modal-price span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.modal-price strong { font-size: 28px; color: var(--navy); }
.modal-price small { font-size: 12px; color: var(--char-soft); }

.modal-open-pricing { margin-bottom: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.modal-open-pricing .pt-row { padding: 13px 16px; }
.modal-note { font-size: 12px; color: var(--char-soft); font-style: italic; margin-bottom: 20px; }
.modal-actions .btn { justify-content: center; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Small screens ---------- */
@media (max-width: 480px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 76px 0; }
  .hero-actions .btn { width: 100%; }
  .btn { padding: 14px 18px; font-size: 12px; }
}

/* ---------- Hero chips (Booking CTA) ---------- */
.hero-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-chip {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(6, 26, 44, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 11px 24px;
  border-radius: 40px;
}
.hero-chip-gold {
  color: var(--navy-deep);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  border-color: transparent;
}

/* ---------- Paket : Open & Private Trip ---------- */
.paket { background: var(--sand); }
.pkg-block { margin-bottom: 60px; }
.pkg-block:last-child { margin-bottom: 0; }
.pkg-block-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(200, 165, 90, .35);
}
.pkg-block-head h3 { font-size: clamp(22px, 3vw, 30px); letter-spacing: .02em; }
.pkg-block-head p { color: var(--char-soft); font-size: 14px; }

.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pkg-grid-private { grid-template-columns: repeat(5, 1fr); }
.pkg-grid-single { grid-template-columns: minmax(0, 460px); justify-content: center; }
.pkg-single { max-width: 460px; width: 100%; }

.pkg-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.pkg-card .btn { margin-top: 4px; }

.pkg-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pkg-name { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--navy); }
.pkg-duration {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--ocean);
  background: rgba(15, 76, 107, .08);
  border: 1px solid rgba(15, 76, 107, .18);
  padding: 5px 12px;
  border-radius: 40px;
  white-space: nowrap;
}
.pkg-price { display: flex; align-items: baseline; gap: 6px; }
.pkg-price strong { font-size: clamp(21px, 2.1vw, 25px); color: var(--navy); letter-spacing: -.01em; }
.pkg-price span { font-size: 13px; color: var(--char-soft); font-weight: 600; }

.pkg-info { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pkg-info li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--char-soft); }
.pkg-info .pi { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: var(--ocean); }

.pkg-featured { border: 2px solid var(--gold); box-shadow: 0 18px 44px rgba(200, 165, 90, .25); }
.pkg-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  padding: 7px 16px;
  border-radius: 40px;
  box-shadow: 0 6px 16px rgba(168, 135, 61, .35);
}

.pkg-private .pkg-pax {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: -8px;
}

/* ---------- Private Trip : single card + detail ---------- */
.priv-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.priv-detail {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 28px;
  box-shadow: var(--shadow-sm);
}
.priv-lead { font-size: 16px; color: var(--char); line-height: 1.75; margin-bottom: 22px; }
.priv-block { margin-bottom: 20px; }
.priv-block h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.priv-check {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}
.priv-check li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--char-soft);
  font-weight: 500;
}
.priv-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(15, 76, 107, .08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f4c6b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.priv-dests { font-size: 14px; line-height: 1.8; color: var(--char-soft); }
.priv-note {
  font-size: 14px;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin: 4px 0 20px;
}
.priv-quote {
  background: var(--white);
  border: 1px dashed rgba(200, 165, 90, .6);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.priv-quote h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 8px;
}
.priv-quote p { font-size: 14px; color: var(--char-soft); line-height: 1.7; }
.priv-close {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ocean);
}

@media (max-width: 960px) {
  .priv-layout { grid-template-columns: 1fr; }
  .priv-detail { padding: 24px 20px; }
}
@media (max-width: 560px) {
  .priv-check { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid-private { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid.pkg-grid-single { grid-template-columns: minmax(0, 460px); justify-content: center; }
}
@media (max-width: 640px) {
  .pkg-grid, .pkg-grid-private { grid-template-columns: 1fr; }
  .pkg-grid.pkg-grid-single { grid-template-columns: minmax(0, 460px); justify-content: center; }
  .pkg-featured { margin-top: 14px; }
}

/* ---------- Itinerary : Trip Schedules ---------- */
.iti { background: var(--white); }
.iti-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.iti-day { display: grid; grid-template-columns: 92px 1fr; gap: 20px; align-items: start; position: relative; }
.iti-day::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 92px;
  bottom: -26px;
  width: 2px;
  background: linear-gradient(180deg, rgba(200, 165, 90, .7), rgba(200, 165, 90, .12));
}
.iti-day:last-child::before { display: none; }
.iti-badge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--navy), var(--ocean));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--gold-soft);
}
.iti-badge span { font-size: 10px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); }
.iti-badge strong { font-family: var(--font-head); font-size: 34px; line-height: 1.1; }
.iti-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.iti-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.iti-spots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 24px; }
.iti-spots li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; font-weight: 600; color: var(--navy); }
.iti-spots .pi { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; color: var(--gold-dark); }

@media (max-width: 640px) {
  .iti-day { grid-template-columns: 64px 1fr; gap: 14px; }
  .iti-badge { width: 64px; height: 64px; }
  .iti-badge strong { font-size: 24px; }
  .iti-badge span { font-size: 8px; letter-spacing: .2em; }
  .iti-day::before { left: 31px; top: 64px; }
  .iti-spots { grid-template-columns: 1fr; }
  .iti-card { padding: 20px; }
}

/* ---------- Fasilitas Paket ---------- */
.fac-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: start; }
.fac-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.fac-in { border-top: 4px solid #2f9e6e; }
.fac-out { border-top: 4px solid #d0533f; }
.fac-panel h3 { display: flex; align-items: center; gap: 12px; font-size: 22px; margin-bottom: 24px; }
.fac-panel h3 .pi { width: 27px; height: 27px; flex: 0 0 auto; }
.fac-in h3 .pi { color: #2f9e6e; }
.fac-out h3 .pi { color: #d0533f; }
.fac-list { display: flex; flex-direction: column; gap: 13px; }
.fac-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--char); }
.fac-list .pi { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; }
.fac-in .fac-list .pi { color: #2f9e6e; }
.fac-out .fac-list .pi { color: #d0533f; }

/* ---------- Blog / Artikel ---------- */
@media (max-width: 900px) {
  .fac-grid { grid-template-columns: 1fr; }
  .fac-panel { padding: 26px 22px; }
}
.blog-hero { background: linear-gradient(140deg, var(--navy), var(--ocean)); color: var(--white); padding: 84px 0 64px; text-align: center; }
.blog-hero .eyebrow { color: var(--gold-soft); }
.blog-hero .eyebrow::before, .blog-hero .eyebrow::after { background: var(--gold); }
.blog-hero h1 { color: var(--white); font-size: clamp(30px, 4.6vw, 46px); margin-bottom: 14px; }
.blog-hero p { color: rgba(255, 255, 255, .82); max-width: 640px; margin: 0 auto; }
.blog-wrap { padding: 72px 0 96px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-deep); }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--char-soft); }
.post-cat { font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); background: rgba(200, 165, 90, .14); padding: 4px 10px; border-radius: 40px; }
.post-body h3 { font-size: 19px; line-height: 1.3; }
.post-body p { font-size: 14px; color: var(--char-soft); flex: 1; }
.post-more { font-size: 13px; font-weight: 800; letter-spacing: .08em; color: var(--ocean); }
.post-card.featured { grid-column: 1 / -1; flex-direction: row; }
.post-card.featured .post-media { aspect-ratio: auto; min-height: 300px; }
.post-card.featured .post-body { padding: 34px 36px; }
.post-card.featured h3 { font-size: clamp(22px, 2.6vw, 30px); }
.blog-crumb { font-size: 13px; color: var(--char-soft); margin-bottom: 22px; }
.blog-crumb a { color: var(--ocean); font-weight: 700; }
.article-hero { background: linear-gradient(140deg, var(--navy), var(--ocean)); color: var(--white); padding: 76px 0 58px; }
.article-hero .post-cat { background: rgba(200, 165, 90, .2); color: var(--gold-soft); }
.article-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); line-height: 1.2; margin: 16px 0 14px; }
.article-hero .post-meta { color: rgba(255, 255, 255, .8); font-size: 13.5px; }
.article-cover { max-width: 920px; margin: -34px auto 0; padding: 0 24px; }
.article-cover img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.article-page { max-width: 760px; margin: 0 auto; padding: 56px 24px 90px; }
.article-body { font-size: 16.5px; line-height: 1.85; color: var(--char); }
.article-body h2 { font-size: 25px; margin: 38px 0 14px; }
.article-body h3 { font-size: 20px; margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px; padding-left: 4px; }
.article-body li { list-style: none; display: flex; gap: 10px; margin-bottom: 9px; align-items: flex-start; }
.article-body li::before { content: "\\2713"; color: var(--gold-dark); font-weight: 800; flex: 0 0 auto; }
.article-body a { color: var(--ocean); font-weight: 700; text-decoration: underline; }
.article-body table { width: 100%; border-collapse: collapse; margin: 18px 0 22px; font-size: 14.5px; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.article-body th { background: var(--sand); color: var(--navy); font-weight: 800; }
.article-body tr:nth-child(even) td { background: rgba(245, 239, 228, .5); }
.article-cta { background: linear-gradient(140deg, var(--navy), var(--ocean)); border-radius: var(--radius); color: var(--white); padding: 36px 32px; margin: 46px 0 0; text-align: center; }
.article-cta h3 { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.article-cta p { color: rgba(255, 255, 255, .85); font-size: 15px; margin-bottom: 22px; }
.article-cta .btn + .btn { margin-left: 10px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.related-grid .post-body h3 { font-size: 16px; }
.blog-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--ocean); margin-bottom: 26px; text-transform: uppercase; }
.mini-header { background: var(--navy); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.mini-header .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.mini-header .lang-switch button { background: none; border: 0; color: rgba(255,255,255,.75); font-weight: 800; font-size: 12px; padding: 6px 4px; cursor: pointer; }
.mini-header .lang-switch button.is-active { color: var(--gold-soft); }
.mini-header .lang-switch .lang-sep { color: rgba(255,255,255,.35); }
.mini-header .back-link { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
@media (max-width: 1080px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .post-card.featured { flex-direction: column; } .post-card.featured .post-media { min-height: 210px; } }
@media (max-width: 640px) { .blog-grid, .related-grid { grid-template-columns: 1fr; } .article-cta .btn { width: 100%; } .article-cta .btn + .btn { margin-left: 0; margin-top: 10px; } }

/* ---------- Fasilitas ringkas di section Paket ---------- */
.pkg-fac {
  margin-top: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.pkg-fac h4 { display: flex; align-items: center; gap: 11px; font-size: 20px; margin-bottom: 20px; }
.pkg-fac h4 .pi { width: 25px; height: 25px; flex: 0 0 auto; color: #2f9e6e; }
.pkg-fac-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px 20px; }
.pkg-fac-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--char); }
.pkg-fac-list .pi { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 2px; color: #2f9e6e; }
.pkg-fac-exc {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px dashed var(--beige);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--char-soft);
}
.pkg-fac-exc .pi { width: 16px; height: 16px; flex: 0 0 auto; color: #d0533f; }

@media (max-width: 900px) {
  .pkg-fac { padding: 24px 20px; }
  .pkg-fac-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pkg-fac-list { grid-template-columns: 1fr; }
}

/* ---------- Grid kartu tunggal (Open Trip Family) ---------- */
.pkg-grid-family { grid-template-columns: minmax(0, 460px); justify-content: center; }

/* ---------- Private Trip & Fasilitas (section terpisah) ---------- */
.private-trip { background: var(--white); }
#private-trip .pkg-block { margin-bottom: 0; }
#fasilitas .pkg-fac { margin-top: 0; }

/* ---------- Article premium layout ---------- */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--ocean)); z-index: 200; transition: width .1s linear; }
.article-hero { padding: 64px 0 48px; }
.article-lead { color: rgba(255, 255, 255, .88); font-size: 17.5px; max-width: 760px; margin: -4px auto 18px; }
.article-layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: 44px; align-items: start; padding-top: 8px; }
.article-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.side-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 20px 18px; box-shadow: var(--shadow-sm); }
.side-box h4 { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; color: var(--navy); }
.toc-list { display: flex; flex-direction: column; gap: 2px; counter-reset: toc; }
.toc-list li { counter-increment: toc; }
.toc-list a { display: flex; gap: 10px; align-items: baseline; font-size: 13.5px; color: var(--char-soft); padding: 7px 8px; border-radius: 8px; transition: background .25s, color .25s; }
.toc-list a::before { content: counter(toc, decimal-leading-zero); font-size: 11px; font-weight: 800; color: var(--gold-dark); }
.toc-list a:hover { background: var(--sand); color: var(--navy); }
.share-row { display: flex; flex-wrap: wrap; gap: 8px; }
.share-row a, .share-row button { font-size: 12px; font-weight: 700; color: var(--ocean); background: rgba(15, 76, 107, .07); border: 1px solid rgba(15, 76, 107, .18); border-radius: 40px; padding: 7px 14px; cursor: pointer; transition: background .25s, color .25s; }
.share-row a:hover, .share-row button:hover { background: var(--ocean); color: var(--white); }
.share-row button.copied { background: #2f9e6e; border-color: #2f9e6e; color: var(--white); }
.article-main { min-width: 0; }
.article-body { font-size: 17.5px; line-height: 1.85; color: var(--char); }
.article-body h2 { font-size: 27px; margin: 44px 0 16px; padding-top: 10px; }
.article-body h3 { font-size: 20px; margin: 30px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin: 0 0 22px; }
.article-body li { list-style: none; position: relative; padding-left: 24px; margin-bottom: 10px; }
.article-body li::before { content: "\2022"; position: absolute; left: 6px; color: var(--gold-dark); font-weight: 800; }
.article-body strong { color: var(--navy); }
.article-lead { font-size: 18px; }
.box-tip, .box-note { border-radius: var(--radius-sm); padding: 18px 20px; margin: 8px 0 24px; font-size: 15.5px; line-height: 1.7; }
.box-tip { background: rgba(200, 165, 90, .12); border: 1px solid rgba(200, 165, 90, .4); }
.box-tip .box-t { display: block; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.box-note { background: rgba(208, 83, 63, .07); border: 1px solid rgba(208, 83, 63, .3); }
.box-note .box-t { display: block; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #d0533f; margin-bottom: 6px; }
.art-pkg-card { background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius); box-shadow: 0 16px 40px rgba(200, 165, 90, .22); padding: 26px 28px; margin: 10px 0 34px; }
.art-pkg-card .pkg-t { font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); }
.art-pkg-card h3 { font-size: 24px; margin: 6px 0 4px; }
.art-pkg-card .pp { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.art-pkg-card .pd { font-size: 13.5px; color: var(--char-soft); margin-bottom: 16px; }
.art-pkg-card .btn { margin-top: 6px; }
.art-pkg-card .btn + .btn { margin-left: 10px; }
.art-faq { margin-top: 48px; }
.art-faq h2 { margin-bottom: 22px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 700; color: var(--navy); list-style: none; position: relative; padding-right: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--gold-dark); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 20px 18px; font-size: 15px; color: var(--char-soft); line-height: 1.75; }
.rel-title { margin-top: 56px; }
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-side { position: static; }
  .article-body { font-size: 17px; }
}
@media (max-width: 640px) {
  .article-hero { padding: 48px 0 36px; }
  .article-body { font-size: 16.5px; line-height: 1.8; }
  .article-body h2 { font-size: 23px; }
  .art-pkg-card { padding: 22px 18px; }
  .art-pkg-card .btn { width: 100%; }
  .art-pkg-card .btn + .btn { margin-left: 0; margin-top: 8px; }
}

/* === Article detail: perbaikan perataan teks & posisi gambar === */
.article-hero { padding: 72px 0 118px; }
.article-hero .blog-crumb { color: rgba(255, 255, 255, .78); }
.article-hero .blog-crumb a { color: var(--gold-soft); }
.article-lead { max-width: 780px; margin: 10px 0 18px; }
.article-cover { max-width: none; margin: -66px auto 44px; padding: 0; }
.article-cover img { width: 100%; aspect-ratio: 2 / 1; max-height: 560px; object-fit: cover; }
.article-body h2 { scroll-margin-top: 96px; }
@media (max-width: 1080px) {
  .article-hero { padding: 60px 0 96px; }
  .article-cover { margin-top: -54px; }
}
@media (max-width: 640px) {
  .article-hero { padding: 46px 0 82px; }
  .article-lead { font-size: 16.5px; }
  .article-cover { margin-top: -46px; margin-bottom: 32px; }
  .article-cover img { aspect-ratio: 16 / 10; max-height: 320px; }
}

/* === Perapian baris meta artikel (tanggal · baca · brand) === */
.post-meta { flex-wrap: wrap; row-gap: 6px; }
.post-card .post-meta > span { white-space: nowrap; }
.article-hero .post-meta { gap: 8px 12px; }
.article-hero .post-meta .meta-item { white-space: nowrap; }
.article-hero .post-meta .meta-dot { color: rgba(255, 255, 255, .45); font-weight: 700; }
.article-hero .post-meta .meta-brand { font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .65); white-space: normal; }
@media (max-width: 720px) {
  .article-hero { padding: 46px 0 80px; }
  .article-hero h1 { font-size: clamp(24px, 6.6vw, 32px); line-height: 1.3; margin: 14px 0 12px; }
  .article-hero .article-lead { font-size: 16px; line-height: 1.7; margin: 6px 0 16px; }
  .article-hero .post-meta { font-size: 12.5px; gap: 6px 16px; }
  .article-hero .post-meta .meta-dot { display: none; }
  .article-hero .post-meta .meta-brand { letter-spacing: .07em; }
}

/* === Navbar: dropdown PAKET (desktop) & accordion PAKET (mobile) === */
.main-nav .has-sub { position: relative; }
.main-nav .sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}
.main-nav .sub-toggle::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav .sub-toggle:hover, .main-nav .has-sub.open .sub-toggle { color: var(--gold-soft); }
.main-nav .sub-toggle:hover::after, .main-nav .has-sub.open .sub-toggle::after { transform: scaleX(1); }
.main-nav .chev { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.main-nav .has-sub.open .chev { transform: rotate(180deg); }
.main-nav .submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(6, 26, 44, .98);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .38);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 1200;
}
.main-nav .has-sub.open .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.main-nav .submenu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.main-nav .submenu a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  transition: background .25s, color .25s, padding-left .25s;
}
.main-nav .submenu a::after { display: none; }
.main-nav .submenu a:hover { background: rgba(200, 165, 90, .12); color: var(--gold-soft); padding-left: 18px; }
@media (hover: hover) and (min-width: 1081px) {
  .main-nav .has-sub:hover .submenu,
  .main-nav .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .main-nav .has-sub:hover .chev { transform: rotate(180deg); }
}

/* Mobile: accordion submenu */
.mobile-nav .m-sub-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  cursor: pointer;
  padding: 15px 0;
  min-height: 44px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  transition: color .3s;
}
.mobile-nav .m-sub-toggle .chev { width: 16px; height: 16px; color: var(--gold-soft); transition: transform .3s var(--ease); }
.mobile-nav .m-has-sub.open .m-sub-toggle { color: var(--gold-soft); }
.mobile-nav .m-has-sub.open .m-sub-toggle .chev { transform: rotate(180deg); }
.mobile-nav .m-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.mobile-nav .m-has-sub.open .m-submenu { max-height: 300px; }
.mobile-nav .m-submenu a {
  padding: 13px 0 13px 20px;
  font-size: 14px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .66);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  position: relative;
}
.mobile-nav .m-submenu a::before { content: "—"; position: absolute; left: 0; color: var(--gold-dark); }

/* === Navbar mobile: hamburger + bahasa selalu terlihat === */
@media (max-width: 1080px) {
  .nav-tools .lang-switch {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 3px;
  }
}
@media (max-width: 640px) {
  .nav-tools { gap: 8px; }
  /* tombol booking cukup di dalam menu hamburger (sudah tersedia full-width di panel) */
  .nav-tools .btn-book { display: none; }
  /* pill bahasa jelas terlihat di samping hamburger */
  .nav-tools .lang-switch { padding: 3px; }
  .nav-tools .lang-switch button { padding: 7px 8px; font-size: 11.5px; }
  /* logo sedikit diperkecil agar semua muat dalam satu baris */
  .brand-mark { width: 34px; height: 34px; }
  .brand-text strong { font-size: 15px; letter-spacing: .16em; }
  .brand-text em { font-size: 7.5px; letter-spacing: .22em; }
  .nav-inner { gap: 10px; }
  .nav-toggle { width: 40px; height: 40px; }
}
@media (max-width: 360px) {
  .brand-text strong { font-size: 13.5px; letter-spacing: .14em; }
  .brand-text em { font-size: 7px; letter-spacing: .18em; }
  .nav-tools { gap: 6px; }
  .nav-toggle { width: 38px; height: 38px; }
}

/* === Rental & Kontak: latar terang + teks gelap agar terlihat jelas === */
.vehicles { background: var(--sand); }
.vehicles::before { display: none; }
.vehicles .eyebrow,
.vehicles .section-title,
.vehicles .section-sub,
.vehicles .veh-group-title { text-shadow: none; }
.vehicles .eyebrow.light { color: var(--gold-dark); }
.vehicles .section-title.light { color: var(--navy); }
.vehicles .section-sub { color: var(--char-soft); }
.vehicles .veh-group-title { color: var(--gold-dark); }
.vehicles .veh-group-title span { background: var(--white); border: 1px solid var(--beige); box-shadow: var(--shadow-sm); }
.vehicles .veh-note { color: var(--char-soft); }

.contact { background: var(--sand); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.contact-head .eyebrow.light { color: var(--gold-dark); }
.contact-head .section-title.light { color: var(--navy); }
.contact-sub { color: var(--char-soft); }
.contact-block { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-block:hover { border-color: rgba(200, 165, 90, .55); box-shadow: var(--shadow-md); }
.contact-ico { background: rgba(200, 165, 90, .14); color: var(--gold-dark); }
.contact-block h4 { color: var(--navy); }
.contact-big a { color: var(--gold-dark); }
.contact-big a:hover { color: var(--navy); }
.contact-list { color: var(--char); }

/* kartu Custom Tour: gradasi navy ditulis langsung agar teks putihnya terlihat */
.tour-card-custom { background: linear-gradient(140deg, var(--navy), var(--ocean)); }