﻿@charset "UTF-8";

/* =========================================================
   Ichigo Tour - Spesialis Private Tour Jepang
   ========================================================= */

:root {
  --red: #e03446;          /* merah stroberi ichigo */
  --red-dark: #b8243a;
  --brown: #6e3a3d;        /* cokelat script logo ichigo */
  --leaf: #3f9d58;         /* hijau daun stroberi */
  --navy: #1c2437;
  --ink: #2b3245;
  --muted: #6b7385;
  --cream: #fffaf7;
  --pink: #fdeef1;
  --line: #eee3e0;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1eb958;
  --shadow: 0 10px 30px rgba(28, 36, 55, 0.10);
  --shadow-sm: 0 4px 14px rgba(28, 36, 55, 0.08);
  --radius: 18px;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 92%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(214, 48, 75, 0.35);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); }
.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { background: var(--wa-dark); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-light {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-cta { padding: 10px 16px; font-size: 0.88rem; flex-shrink: 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand img { height: 52px; width: auto; max-width: none; display: block; }
.brand .logo-light { display: none; }
.header.scrolled .brand .logo-dark { display: none; }
.header.scrolled .brand .logo-light { display: block; }
.brand-mark { line-height: 0; display: grid; place-items: center; }
.brand-text {
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
}
.brand-mark img { height: 54px; width: auto; max-width: none; display: block; }
.brand-name {
  font-family: "Leckerli One", "Brush Script MT", cursive;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--white);
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.header.scrolled .brand-name { color: var(--brown); }
.brand-footer .brand-name { color: var(--white); }
.brand-text small {
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.header.scrolled .brand-text { color: var(--brown); }

.nav { display: flex; gap: 12px; }
.nav-link {
  font-weight: 700;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.2s ease;
}
.nav-link:hover, .nav-link.active { border-color: var(--red); }
.header.scrolled .nav-link { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.header.scrolled .nav-toggle span,
.header.nav-open .nav-toggle span { background: var(--navy); }
.header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 82svh, 780px);
  display: flex;
  align-items: flex-start;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("../assets/hero-fuji-sakura.jpg") center 44% / cover no-repeat,
    linear-gradient(160deg, #33456e, #17203a);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 26, 45, 0.66) 0%, rgba(20, 26, 45, 0.52) 45%, rgba(20, 26, 45, 0.76) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 86px 0 64px;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(12, 17, 32, 0.6);
}
.hero-title em {
  color: #ffd6df;
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 22px rgba(255, 179, 193, 0.34);
}
.typed { display: inline-block; min-width: 5.2ch; text-align: left; }
.type-cursor {
  display: inline-block;
  width: 4px;
  height: 0.82em;
  background: #ffb3c1;
  margin-left: 5px;
  vertical-align: -0.06em;
  border-radius: 2px;
  animation: kedip 1s steps(1) infinite;
}
@keyframes kedip { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .type-cursor { display: none; }
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 620px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  text-shadow: 0 1px 10px rgba(12, 17, 32, 0.65);
}
.hero-sub em { color: #ffb3c1; font-style: italic; }
.hero-dest {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 26px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.6rem; font-weight: 800; }
.stat span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.8); }
.season-canvas {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.sakura-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sakura-canvas--page {
  position: fixed;
  inset: 0;
  z-index: 4;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; }

/* ---------- Sections ---------- */
.section { padding: 54px 0 90px; }
.section-alt { background: var(--pink); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 54px; }
.section-eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-title em {
  color: var(--red);
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.section-sub { margin-top: 14px; color: var(--muted); }

/* ---------- Keunggulan ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  font-size: 1.7rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--pink);
  border-radius: 16px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--navy); }
.feature-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Filter chips ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}
.chip {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(214, 48, 75, 0.3);
}

/* ---------- Paket ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card.hidden { display: none; }
.package-img {
  position: relative;
  height: 210px;
  background-size: cover;
  background-position: center;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge-hot { background: var(--red); color: var(--white); }
.badge-season { left: auto; right: 14px; }
.package-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.package-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.package-route {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.package-list { margin-bottom: 20px; flex: 1; }
.package-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.package-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.package-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.price small { display: block; font-size: 0.72rem; color: var(--muted); }
.price strong { font-size: 1.3rem; color: var(--navy); font-weight: 800; }
.price span { font-size: 0.8rem; color: var(--muted); }

/* Gambar destinasi & paket (Unsplash, dengan warna fallback) */
.img-sakura      { background-color: #e8a7b7; background-image: url("https://images.unsplash.com/photo-1522383225653-ed111181a951?auto=format&fit=crop&w=900&q=75"); }
.img-tokyo       { background-color: #4b5875; background-image: url("https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=900&q=75"); }
.img-osaka       { background-color: #38507a; background-image: url("https://images.unsplash.com/photo-1590559899731-a382839e5549?auto=format&fit=crop&w=900&q=75"); }
.img-kyoto       { background-color: #b8442f; background-image: url("https://images.unsplash.com/photo-1478436127897-769e1b3f0f36?auto=format&fit=crop&w=900&q=75"); }
.img-fuji        { background-color: #7d95b5; background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?auto=format&fit=crop&w=900&q=75"); }
.img-hokkaido    { background-color: #9db4c9; background-image: url("https://images.unsplash.com/photo-1548189797-58d370c9d788?auto=format&fit=crop&w=900&q=75"); }
.img-shirakawago { background-color: #8fa3b8; background-image: url("https://images.unsplash.com/photo-1578637387939-43c525550085?auto=format&fit=crop&w=900&q=75"); }
.img-kamakura    { background-color: #7aa6b7; background-image: url("https://images.unsplash.com/photo-1528360983277-13d401cdc186?auto=format&fit=crop&w=900&q=75"); }
.img-kamikochi   { background-color: #6e9b7a; background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=75"); }

/* ---------- Custom CTA ---------- */
.custom-cta {
  margin-top: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.custom-cta h3 { font-size: 1.3rem; margin-bottom: 6px; }
.custom-cta p { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }

/* ---------- Destinasi ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.dest-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 20, 35, 0.85));
  transition: background 0.25s ease;
}
.dest-info {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 22px;
}
.dest-info h3 { font-size: 1.25rem; margin-bottom: 2px; }
.dest-info p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.85); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(214, 48, 75, 0.35);
}
.step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Tim ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin-inline: auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--brown);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 16px;
  border: 3px solid #f6c9d4;
}
.team-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 2px; }
.team-role {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.team-ig { color: var(--muted); font-size: 0.88rem; }
.team-ig:hover { color: var(--red); }

/* ---------- Testimoni ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 14px; }
.testi-card blockquote {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.testi-card figcaption strong { display: block; color: var(--navy); }
.testi-card figcaption span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Instagram ---------- */
.ig-section { padding-top: 0; }
.ig-card {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
  box-shadow: var(--shadow-sm);
}
.ig-icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7);
}
.ig-icon--retro {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6d17a 0 28%, #b9784c 29% 58%, #5e3428 59% 100%);
  border: 3px solid #3b2a24;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.18), 0 10px 22px rgba(28, 36, 55, 0.14);
}
.ig-icon--retro::before {
  content: "";
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 8px;
  inline-size: 13px;
  block-size: 13px;
  border-radius: 3px;
  background: #5f8fb7;
  border: 2px solid #2f211d;
}
.ig-icon--retro::after {
  content: "";
  position: absolute;
  inset-block-start: 9px;
  inset-inline-end: 9px;
  inline-size: 11px;
  block-size: 11px;
  border-radius: 999px;
  background: #2f211d;
}
.ig-retro-lens {
  inline-size: 26px;
  block-size: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 38% 35%, #f8fbff 0 12%, #78a5c5 13% 30%, #26374b 31% 58%, #111827 59% 100%);
  border: 4px solid #2f211d;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
}
.ig-text { flex: 1; min-width: 240px; }
.ig-text h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 6px; }
.ig-text p { color: var(--muted); font-size: 0.95rem; }
.btn-ig {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 36, 55, 0.18);
}
.btn-ig:hover {
  background: var(--red-dark);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  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(--red);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background:
    linear-gradient(120deg, rgba(176, 31, 56, 0.93), rgba(214, 48, 75, 0.88)),
    url("https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-inner p { margin-bottom: 28px; color: rgba(255, 255, 255, 0.92); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.8); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding: 64px 0 44px;
}
.brand-footer .brand-text { color: var(--white); }
.footer-desc { margin-top: 16px; font-size: 0.9rem; }
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 0.82rem;
  text-align: center;
}

/* ---------- Kalkulator estimasi ---------- */
.est-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px 28px;
  box-shadow: var(--shadow-sm);
}
.est-form { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.est-form label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }
.est-form select, .est-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
}
.est-form select:focus, .est-form input:focus { outline: 2px solid var(--red); border-color: var(--red); }
.est-hasil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 18px;
}
.est-hasil > div {
  background: var(--pink);
  border-radius: 14px;
  padding: 16px 20px;
}
.est-hasil small { display: block; color: var(--muted); font-size: 0.78rem; margin-bottom: 2px; }
.est-hasil strong { font-size: 1.55rem; font-weight: 800; color: var(--red-dark); font-variant-numeric: tabular-nums; }
.est-catatan { color: var(--muted); font-size: 0.8rem; margin-top: 14px; }
@media (max-width: 560px) {
  .est-form, .est-hasil { grid-template-columns: 1fr; }
}

/* ---------- Tips & trik ---------- */
.tips-kelompok { margin: 44px 0 18px; }
.tips-kelompok:first-of-type { margin-top: 0; }
.tips-judul { font-size: 1.3rem; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.tips-judul span { font-size: 1.5rem; }
.tips-sub { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 10px;
}
.tips-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.tips-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.tips-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Multi-halaman: topbar, site guide, journey ---------- */
.page-spacer {
  height: 46px;
  background: var(--cream);
}

@media (max-width: 520px) {
  .page-spacer {
    height: 52px;
  }
}.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.explore-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #f3b8c4; }
.explore-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--pink);
  border-radius: 14px;
  margin-bottom: 8px;
}
.explore-card h3 { color: var(--navy); font-size: 1.05rem; }
.explore-card p { color: var(--muted); font-size: 0.88rem; }
.explore-go { color: var(--red); font-weight: 700; font-size: 0.9rem; margin-top: 10px; }

.journey { padding: 6px 0 80px; background: var(--cream); }
.journey-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--line);
  padding-top: 28px;
}
.journey-prev { color: var(--muted); font-weight: 600; }
a.journey-prev:hover { color: var(--red); }
.journey-hint {
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.journey-hint [lang="ja"] {
  font-style: italic;
  font-size: 1.35rem;
  color: var(--red-dark);
  opacity: 1;
}

/* ---------- Galeri klien ---------- */
.gallery-grid {
  columns: 4 240px;
  column-gap: 16px;
  margin-bottom: 44px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--pink);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Berita / Japan Updates ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.news-tag {
  background: var(--pink);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.news-meta time { color: var(--muted); font-size: 0.8rem; }
.news-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 10px; line-height: 1.35; }
.news-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.news-links { margin-bottom: 16px; }
.news-links li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.news-links li::before { content: "\2192"; position: absolute; left: 0; color: var(--red); }
.news-links a:hover { color: var(--red); text-decoration: underline; }
.news-src { margin-top: auto; color: var(--red); font-weight: 700; font-size: 0.88rem; }
.news-src:hover { text-decoration: underline; }
.news-disclaimer {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 720px;
  margin-inline: auto;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    gap: 6px;
    padding: 96px 30px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
  }
  .header.nav-open .nav { right: 0; }
  .nav-link, .header .nav-link { color: var(--ink); font-size: 1.05rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .section { padding: 46px 0 70px; }
  .custom-cta { text-align: center; justify-content: center; }
}

@media (max-width: 520px) {
  .page-topbar {
    padding: 70px 0 10px;
  }

  .crumbs {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .hero-inner { padding-top: 94px; }
  .hero-stats { gap: 14px 26px; }
  .stat strong { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .package-foot { flex-direction: column; align-items: stretch; }
  .package-foot .btn { justify-content: center; }
}


/* ---------- Cost estimator floating popup ---------- */
.estimate-float {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 92;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(224, 52, 70, 0.32);
  cursor: pointer;
  text-align: center;
  animation: float-bob 3.2s ease-in-out infinite;
  white-space: nowrap;
}

.estimate-float span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.estimate-float strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.1;
}

.estimate-float:hover {
  transform: translateY(-3px);
}

@keyframes float-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.est-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  padding: 24px;
}

.est-modal.is-open {
  display: grid;
  place-items: center;
}

.modal-open {
  overflow: hidden;
}

.est-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 45, 0.68);
  backdrop-filter: blur(8px);
}

.est-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 26px 70px rgba(12, 17, 32, 0.38);
  padding: clamp(22px, 4vw, 34px);
}

.est-modal__head {
  margin-bottom: 22px;
}

.est-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.est-modal .est-card {
  box-shadow: none;
}

@media (max-width: 640px) {
  .estimate-float {
    right: 16px;
    left: auto;
    bottom: 88px;
    width: auto;
    min-width: 0;
  }

  .est-modal {
    padding: 14px;
  }
}


.section-action {
  margin-top: 34px;
  text-align: center;
}

.why-testi-grid {
  margin-top: 8px;
}
