/* ===== Design tokens ===== */
:root {
  --teal-900: #0b3b38;
  --teal-700: #0f766e;
  --teal-600: #14807a;
  --teal-500: #1a9d94;
  --teal-050: #e6f5f3;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --coral: #ff7a59;
  --cream: #fbf7f0;
  --sand: #f4ece0;
  --ink: #14201f;
  --muted: #5c6b69;
  --line: #e6ded1;
  --white: #ffffff;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(11, 59, 56, 0.08);
  --shadow-md: 0 14px 40px rgba(11, 59, 56, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 59, 56, 0.18);

  --maxw: 1180px;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-head: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.container-narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--teal-700); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  --btn-bg: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal-700); color: #fff; box-shadow: 0 8px 20px rgba(15,118,110,.28); }
.btn-primary:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(15,118,110,.34); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-600); margin-bottom: 14px;
}
.stars { color: var(--amber-500); letter-spacing: 2px; }
.link-arrow { color: var(--teal-700); font-weight: 700; }
.link-arrow:hover { color: var(--amber-500); }
.highlight { color: var(--amber-500); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 240, .82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; }
.brand-mark { font-size: 1.4rem; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; }
.brand-name em { color: var(--teal-700); font-style: normal; }
.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a { padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--muted); transition: color .15s, background .15s; }
.main-nav a:hover { color: var(--teal-700); background: var(--teal-050); }
.header-cta { margin-left: 6px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; margin-left: auto;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; color: #fff; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #0b3b38;
  background-image:
    linear-gradient(90deg, rgba(11,59,56,.92) 0%, rgba(11,59,56,.74) 42%, rgba(11,59,56,.42) 100%),
    linear-gradient(180deg, rgba(11,59,56,.35), rgba(11,59,56,.55)),
    url("assets/hero.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center 30%;
  background-repeat: no-repeat;
}
@media (max-width: 940px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(11,59,56,.72), rgba(11,59,56,.82)),
      url("assets/hero.jpg");
    background-size: cover, cover;
  }
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: center;
  padding-block: 92px 108px;
}
.hero-content .eyebrow { color: var(--amber-400); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -.02em; }
.hero-sub { font-size: 1.12rem; max-width: 40ch; margin: 18px 0 28px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.hero-trust .stars { font-size: 1.15rem; }
.hero-trust p { margin: 0; font-size: .95rem; color: rgba(255,255,255,.88); }

.hero-card {
  position: relative; background: #fff; color: var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
  transform: rotate(1.5deg);
}
.hero-card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--amber-500); color: #3a2400; font-weight: 700; font-size: .78rem;
  padding: 6px 12px; border-radius: 999px;
}
.hero-card::before {
  content: ""; display: block; height: 190px;
  background-color: var(--teal-050);
  background-image: linear-gradient(180deg, rgba(11,59,56,.05), rgba(11,59,56,.28)), url("assets/hero-card-jogja.jpg");
  background-size: cover; background-position: center;
}
.hero-card-body { padding: 18px 20px 22px; }
.hero-card-body h3 { font-size: 1.3rem; }
.hero-card-body p { margin: 4px 0 12px; color: var(--muted); font-size: .92rem; }
.hero-card-price { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--teal-700); }
.hero-card-price span { font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--muted); display: block; }

/* ===== Stats ===== */
.stats { background: var(--teal-900); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 34px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--amber-400); }
.stat-label { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ===== Sections ===== */
.section { padding-block: 84px; }
.section-alt { background: var(--sand); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ===== Destinasi ===== */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dest-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-media { height: 210px; background-color: var(--teal-050); background-size: cover; background-position: center; }
.dest-bandung { background-image: url("assets/dest-bandung.jpg"); }
.dest-jogja { background-image: url("assets/dest-jogja.jpg"); }
.dest-malang { background-image: url("assets/dest-malang.jpg"); }
.dest-body { padding: 22px 22px 26px; }
.dest-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.dest-body p { color: var(--muted); margin: 0 0 14px; }

/* ===== Paket ===== */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.pkg-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-featured { border-color: var(--amber-400); box-shadow: var(--shadow-md); }
.pkg-media { position: relative; height: 170px; background-color: var(--teal-050); background-size: cover; background-position: center; }
.pkg-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,0) 45%); }
.pkg-bandung { background-image: url("assets/pkg-bandung.jpg"); }
.pkg-jogja { background-image: url("assets/pkg-jogja.jpg"); }
.pkg-malang { background-image: url("assets/pkg-malang.jpg"); }
.pkg-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--teal-700);
  font-weight: 700; font-size: .74rem; padding: 5px 11px; border-radius: 999px;
}
.pkg-tag-hot { background: var(--amber-500); color: #3a2400; }
.pkg-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pkg-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.pkg-top h3 { font-size: 1.22rem; }
.pkg-rating { color: var(--amber-500); font-weight: 700; font-size: .9rem; white-space: nowrap; }
.pkg-loc { color: var(--muted); font-size: .88rem; margin: 6px 0 14px; }
.pkg-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.pkg-list li { position: relative; padding-left: 24px; font-size: .93rem; color: #2e3d3b; }
.pkg-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 800; }
.pkg-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 6px; border-top: 1px dashed var(--line); }
.pkg-price { display: flex; flex-direction: column; line-height: 1.15; }
.pkg-price span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.pkg-price strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); }
.pkg-price small { color: var(--muted); font-weight: 600; }
.pkg-note { text-align: center; margin-top: 38px; color: var(--muted); }
.pkg-note a { color: var(--teal-700); font-weight: 700; }

/* ===== Keunggulan ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat { background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .22s; }
.feat:hover { transform: translateY(-4px); }
.feat-ico { font-size: 1.9rem; width: 58px; height: 58px; display: grid; place-items: center; background: var(--teal-050); border-radius: 14px; margin-bottom: 16px; }
.feat h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feat p { color: var(--muted); margin: 0; font-size: .94rem; }

/* ===== Galeri ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px; }
.g-item { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--teal-050); box-shadow: var(--shadow-sm); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-1 { grid-column: span 2; grid-row: span 2; }
.g-4 { grid-column: span 2; }

/* ===== Testimoni ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border-radius: var(--radius); padding: 26px 24px; margin: 0; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.testi p { font-size: 1.02rem; color: #2e3d3b; margin: 14px 0 20px; }
.testi footer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.testi footer strong { display: block; font-size: .95rem; }
.testi footer small { color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 700; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-700); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 16px; color: var(--muted); }

/* ===== CTA / Kontak ===== */
.cta { background: linear-gradient(135deg, var(--teal-900), var(--teal-700)); color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.cta-copy p { color: rgba(255,255,255,.9); margin: 14px 0 22px; font-size: 1.05rem; }
.cta-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cta-points li { color: rgba(255,255,255,.92); }
.cta-form { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .88rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fdfbf7; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(26,157,148,.18);
}
.field textarea { resize: vertical; }
.field.invalid input, .field.invalid select { border-color: #dc2626; }
.err { color: #dc2626; font-size: .8rem; min-height: 1em; }
.form-status { text-align: center; font-weight: 600; margin: 0; }
.form-status.ok { color: #15803d; }

/* ===== Footer ===== */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.82); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 32px; padding-bottom: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name em { color: var(--amber-400); }
.footer-brand p { margin: 14px 0 16px; font-size: .92rem; max-width: 30ch; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); font-weight: 700; font-size: .8rem; transition: background .15s; }
.social a:hover { background: var(--amber-500); color: #3a2400; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .95rem; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; font-size: .92rem; color: rgba(255,255,255,.78); }
.footer-col a:hover { color: var(--amber-400); }
.footer-news p { font-size: .9rem; margin: 0 0 12px; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; min-width: 0; padding: 10px 12px; border: 1.5px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; border-radius: 10px; }
.news-form input::placeholder { color: rgba(255,255,255,.5); }
.news-form input:focus { outline: none; border-color: var(--amber-400); }
.footer-news .err { margin-top: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.footer-bottom nav { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

/* ===== Floating WA ===== */
.fab-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.5rem;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.4);
  transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.08); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 64px 76px; }
  .hero-card { max-width: 340px; }
  .dest-grid, .pkg-grid, .feat-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-1, .g-4 { grid-column: span 2; }
}
@media (max-width: 720px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 22px 20px; transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 8px; border-radius: 10px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .section { padding-block: 60px; }
  .dest-grid, .pkg-grid, .feat-grid, .testi-grid, .footer-grid, .gallery { grid-template-columns: 1fr; }
  .g-1, .g-4 { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
