/* ============ Tokens ============ */
:root {
  --navy: #0B2A4A;
  --navy-deep: #061a32;
  --navy-soft: #133a63;
  --orange: #F5A623;
  --orange-bright: #FFB740;
  --orange-deep: #D88800;
  --cream: #F4F1EC;
  --cream-dark: #E8E2D5;
  --paper: #FBFAF7;
  --ink: #0A0A0A;
  --muted: #5C6470;
  --line: rgba(11, 42, 74, 0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(6, 26, 50, 0.06);
  --shadow: 0 16px 40px -12px rgba(6, 26, 50, 0.18);
  --shadow-lg: 0 32px 80px -24px rgba(6, 26, 50, 0.32);
  --section-pad: 120px;
  --container: 1240px;
  --gap: 32px;
}

[data-density="compact"] {
  --section-pad: 72px;
  --gap: 20px;
}

[data-density="spacious"] {
  --section-pad: 160px;
  --gap: 48px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

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

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--navy-deep);
  box-shadow: 0 8px 0 0 var(--orange-deep);
}
.btn-primary:hover { box-shadow: 0 4px 0 0 var(--orange-deep); }

.btn-dark {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 8px 0 0 var(--navy-deep);
}
.btn-dark:hover { box-shadow: 0 4px 0 0 var(--navy-deep); }

.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--cream); }

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(100% - 32px, 1280px);
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.nav.scrolled { background: rgba(251, 250, 247, 0.97); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.brand-mark {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--orange);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  transition: background .15s;
}
.nav-links a:hover { background: var(--cream); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background .15s;
}
.hamburger:hover { background: var(--cream); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 76px; left: 16px; right: 16px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 12px;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
  animation: fade .15s ease;
}
.mobile-menu a:not(.btn) {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  transition: background .15s;
}
.mobile-menu a:not(.btn):hover { background: var(--cream); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

@keyframes fade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(245, 166, 35, 0.18), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(255, 183, 64, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 620px;
  padding-block: 40px;
}

.hero h1 {
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 5px;
  background: var(--orange);
  border-radius: 999px;
  opacity: 0.5;
}

.hero-sub {
  font-size: 18px;
  color: rgba(244, 241, 236, 0.78);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-cta-row .btn-ghost {
  border-color: rgba(244, 241, 236, 0.25);
  color: var(--cream);
}
.hero-cta-row .btn-ghost:hover { background: rgba(244, 241, 236, 0.08); }

.hero-meta {
  display: flex;
  gap: 28px;
  border-top: 1px solid rgba(244, 241, 236, 0.12);
  padding-top: 24px;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  color: var(--orange);
  font-weight: 800;
}
.hero-meta span {
  font-size: 13px;
  color: rgba(244, 241, 236, 0.65);
}

.hero-visual {
  position: relative;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  border: 1px solid rgba(245, 166, 35, 0.2);
}
.hero-visual .placeholder {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(245, 166, 35, 0.06) 0 14px,
    transparent 14px 28px
  );
}
.hero-visual .ph-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  background: rgba(6, 26, 50, 0.7);
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}
.hero-visual .badge-float {
  position: absolute;
  background: var(--cream);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}
.badge-float.b1 { top: 28px; left: 28px; }
.badge-float.b2 { bottom: 80px; right: 24px; }
.badge-float .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 360px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
}

/* ============ Slider Dots ============ */
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.slider-dots button {
  width: 30px; height: 4px;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.2);
  transition: background .2s, width .2s;
}
.slider-dots button.active {
  background: var(--orange);
  width: 50px;
}

/* ============ Booking Card ============ */
.booking-card {
  position: relative;
  margin-top: -64px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 28px;
  z-index: 10;
}
.booking-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.step-pill {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.step-pill.done { background: var(--navy); }
.step-pill.active { background: var(--navy); }
.step-pill.active::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange);
  width: 50%;
}
.step-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 20px;
}
.step-head h3 { font-size: 24px; }
.step-head small {
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 800px) {
  .field-grid { grid-template-columns: 1fr 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--cream);
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: border .15s;
}
.field:focus-within { border-color: var(--navy); background: var(--paper); }
.field label {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.field input, .field select {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.field-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* ============ Section ============ */
.section { padding-block: var(--section-pad); }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 { font-size: clamp(36px, 4.6vw, 64px); }
.section-head p { font-size: 17px; color: var(--muted); max-width: 480px; }

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* ============ Stats ============ */
.stats {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-num sup { font-size: 28px; color: var(--orange); }
.stat-label { margin-top: 8px; font-size: 14px; color: var(--muted); }

@media (max-width: 800px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
}

/* ============ About ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--navy);
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(245, 166, 35, 0.08) 0 12px,
    transparent 12px 24px
  );
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 16/9; }
}

/* ============ Paket ============ */
.paket-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gap);
}
@media (max-width: 900px) {
  .paket-grid { grid-template-columns: 1fr 1fr; }
  .paket-card:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .paket-grid { grid-template-columns: 1fr; }
}
.paket-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  transition: transform .2s;
}
.paket-card:hover { transform: translateY(-4px); }
.paket-card.feat { background: var(--navy); color: var(--cream); }
.paket-card.feat .paket-price { color: var(--orange); }
.paket-card.feat .paket-meta { color: rgba(244, 241, 236, 0.65); }
.paket-card.feat .paket-tag { background: var(--orange); color: var(--navy-deep); }
.paket-tag {
  align-self: flex-start;
  padding: 5px 10px;
  background: var(--navy);
  color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  border-radius: 6px;
  margin-bottom: 16px;
}
.paket-card h3 { font-size: 28px; margin-bottom: 8px; line-height: 1.1; }
.paket-card .paket-desc { font-size: 14px; opacity: 0.8; margin-bottom: 20px; flex: 1; }
.paket-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  gap: 14px;
}
.paket-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.paket-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1.1;
}
.paket-price small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.6;
}

/* ============ Testimonials ============ */
.testi-section { overflow: hidden; }
.testi-head {
  text-align: center;
  margin-bottom: 40px;
}
.testi-head h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 12px;
}
.testi-head p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.testi-stars-top { color: var(--orange); font-size: 28px; letter-spacing: 4px; margin-bottom: 12px; }

.testi-marquee { overflow: hidden; width: 100%; padding: 8px 0 24px; }
.testi-marquee-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testi-scroll 28s linear infinite;
}
.testi-marquee-inner:hover { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testi-photo-item { flex-shrink: 0; width: 260px; cursor: pointer; }
.testi-photo-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-photo-item:hover .testi-photo-img {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.testi-photo-caption {
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
}

/* ============ Routes ============ */
.routes-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .routes-layout { grid-template-columns: 1fr; gap: 40px; } }

.routes-left h2 { font-size: clamp(28px, 4vw, 44px); margin: 12px 0 16px; }
.routes-left p { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.routes-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.routes-book-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

/* Accordion */
.accordion-list { display: flex; flex-direction: column; gap: 8px; }
.accordion-item { border-radius: 8px; overflow: hidden; }
.accordion-trigger {
  width: 100%;
  background: var(--orange);
  color: var(--navy-deep);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 22px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: filter .15s;
}
.accordion-trigger:hover { filter: brightness(1.07); }
.accordion-chevron {
  display: inline-block;
  font-size: 16px;
  transition: transform .25s;
  flex-shrink: 0;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  background: #f8f8f8;
  padding: 4px 22px 8px;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.accordion-route {
  display: block;
  padding: 11px 0;
  color: #0060df;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color .15s;
}
.accordion-route:last-child { border-bottom: none; }
.accordion-route:hover { color: var(--orange); text-decoration: underline; }

/* ============ Tentang Kami ============ */

/* Hero */
.tentang-hero-wrap { background: var(--navy-deep); color: #fff; padding: 80px 0 0; }
.tentang-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 960px) { .tentang-hero-grid { grid-template-columns: 1fr; } }
.tentang-hero-h1 { font-size: clamp(30px, 4vw, 48px); color: #fff; margin: 12px 0 20px; line-height: 1.15; }
.tentang-hero-sub { color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 14px; font-size: 15px; }
.tentang-owner-row { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); }
.tentang-owner-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.tentang-owner-name { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.tentang-owner-title { font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; }
.tentang-hero-logo { display: flex; align-items: center; justify-content: center; padding: 20px 0; }
.tentang-logo-img { width: 200px; height: 200px; object-fit: contain; }
.tentang-profil-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 32px; }
.tentang-profil-eyebrow { font-size: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; line-height: 1.5; }
.tentang-profil-title { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.tentang-profil-box p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.tentang-cta-btn { display: inline-block; margin-top: 8px; padding: 12px 24px; background: var(--orange); color: #fff; font-weight: 700; font-size: 14px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.tentang-cta-btn:hover { background: #e07800; }

/* Why Choose */
.tentang-why-section { background: var(--navy-deep); color: #fff; padding: 60px 0; }
.tentang-why-title { font-size: clamp(22px, 3vw, 34px); color: #fff; margin: 8px 0 36px; }
.tentang-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .tentang-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .tentang-why-grid { grid-template-columns: 1fr; } }
.tentang-why-card { border-left: 3px solid var(--orange); padding-left: 16px; }
.tentang-why-card h4 { font-size: 15px; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.tentang-why-card p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.65; }

/* Booking Steps */
.tentang-steps-list { display: flex; flex-direction: column; gap: 16px; max-width: 820px; margin: 40px auto 0; }
.tentang-step-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.tentang-step-header { background: var(--navy-deep); color: #fff; padding: 20px 28px; }
.tentang-step-num { font-size: 13px; color: var(--orange); font-weight: 700; display: block; margin-bottom: 4px; }
.tentang-step-header h4 { font-size: clamp(20px, 3vw, 28px); color: #fff; margin: 0; font-weight: 800; }
.tentang-step-body { background: #fff; padding: 20px 28px; }
.tentang-step-sub { margin-bottom: 12px; }
.tentang-step-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tentang-step-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--navy-deep); }
.tentang-step-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.tentang-step-note { margin-top: 12px; font-size: 15px; color: var(--navy-deep); }
.tentang-wa-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.tentang-wa-btn { display: block; text-align: center; padding: 14px; background: #25d366; color: #fff; font-weight: 700; font-size: 16px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.tentang-wa-btn:hover { background: #1da851; }

/* Visi Misi */
.tentang-vm-section { background: var(--navy-deep); color: #fff; padding: 80px 0; }
.tentang-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .tentang-vm-grid { grid-template-columns: 1fr; } }
.tentang-vm-label { font-size: 22px; color: var(--orange); margin: 16px 0 8px; }
.tentang-vm-left p { color: rgba(255,255,255,.8); line-height: 1.7; font-size: 15px; margin-bottom: 10px; }
.tentang-misi-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tentang-misi-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,.8); }
.tentang-misi-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.tentang-vm-right { border-radius: 12px; overflow: hidden; }
.tentang-vm-img { width: 100%; height: 360px; object-fit: cover; object-position: center; display: block; }

/* Komitmen */
.tentang-komitmen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .tentang-komitmen-grid { grid-template-columns: 1fr; } }
.tentang-komitmen-img-wrap { border-radius: 12px; overflow: hidden; }
.tentang-komitmen-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.tentang-komitmen-text h3 { font-size: 28px; margin: 8px 0 16px; }
.tentang-komitmen-text p { color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.tentang-komitmen-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 10px; }
.tentang-komitmen-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--navy-deep); }
.tentang-komitmen-list li::before { content: '◉'; color: var(--orange); flex-shrink: 0; }

/* Lokasi */
.tentang-lokasi-section { background: var(--navy-deep); color: #fff; padding: 80px 0; }
.tentang-lokasi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .tentang-lokasi-grid { grid-template-columns: 1fr; } }
.tentang-lokasi-left h3 { font-size: 28px; color: #fff; margin: 10px 0 16px; }
.tentang-lokasi-left p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.tentang-maps-btn { display: inline-block; margin-top: 8px; padding: 10px 20px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 8px; color: #fff; font-size: 14px; text-decoration: none; transition: border-color .15s; }
.tentang-maps-btn:hover { border-color: var(--orange); color: var(--orange); }
.tentang-info-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 24px; display: flex; gap: 16px; margin-bottom: 16px; }
.tentang-info-icon { font-size: 28px; flex-shrink: 0; }
.tentang-info-card strong { display: block; color: #fff; font-size: 16px; margin-bottom: 6px; }
.tentang-info-card p { color: rgba(255,255,255,.75); font-size: 14px; margin: 2px 0; }
.tentang-maps-link { color: var(--orange); font-size: 13px; text-decoration: none; }
.tentang-maps-link:hover { text-decoration: underline; }

/* Logo navbar */
.nav-logo-img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; }
.detail-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy-deep);
  text-decoration: none;
  letter-spacing: -.02em;
}
.detail-brand img { height: 36px; width: auto; object-fit: contain; }

.about-more-link { display: inline-block; margin-top: 8px; font-size: 14px; font-weight: 700; color: var(--orange); text-decoration: none; }
.about-more-link:hover { text-decoration: underline; }
.tentang-icon { font-size: 28px; margin-bottom: 12px; }
.tentang-visi-text {
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: rgba(255,255,255,.85);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  line-height: 1.7;
  max-width: 560px;
}
.tentang-misi-wrap { margin-top: 48px; }
.tentang-misi-title { margin-bottom: 20px; }
.tentang-misi-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}
.detail-feature-card { display: flex; align-items: flex-start; gap: 0; }

.tentang-pilar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .tentang-pilar-grid { grid-template-columns: 1fr; } }
.tentang-pilar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.tentang-pilar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tentang-pilar-icon { font-size: 40px; margin-bottom: 16px; }
.tentang-pilar-card h4 { font-size: 20px; margin-bottom: 12px; color: var(--navy-deep); }
.tentang-pilar-card p { color: var(--muted); line-height: 1.7; }

.tentang-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .tentang-fleet-grid { grid-template-columns: 1fr; } }
.tentang-fleet-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.tentang-fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tentang-fleet-img-wrap { height: 200px; overflow: hidden; }
.tentang-fleet-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tentang-fleet-body { padding: 20px 22px 24px; }
.tentang-fleet-cap {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.tentang-fleet-body h4 { font-size: 18px; margin-bottom: 8px; color: var(--navy-deep); }
.tentang-fleet-body p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.tentang-fleet-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.tentang-fleet-link:hover { text-decoration: underline; }

.acc-dest-label {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 10px;
}
.acc-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 4px;
}
.dest-tag {
  padding: 6px 14px;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.dest-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
/* ============ Utility ============ */
.pt-0 { padding-top: 0; }
.mini-note { color: var(--muted); font-size: 14px; max-width: 880px; }
.quick-info-grid .field { min-height: 78px; }
.simple-booking { margin-bottom: 10px; }

/* ============ Hero Visual Override ============ */
.bus-photo-card {
  background:
    linear-gradient(135deg, rgba(11, 42, 74, .82), rgba(6, 26, 50, .92)),
    radial-gradient(circle at 75% 20%, rgba(245, 166, 35, .22), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 183, 64, .16), transparent 35%);
}

/* ============ About Override ============ */
.about-photo {
  background:
    linear-gradient(180deg, rgba(11, 42, 74, .88), rgba(6, 26, 50, .98)),
    radial-gradient(circle at 50% 30%, rgba(245, 166, 35, .18), transparent 40%);
}
.about-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--orange);
  color: var(--navy-deep);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
}
.about-stamp {
  position: absolute;
  right: 24px; bottom: 24px;
  background: rgba(251, 250, 247, .08);
  border: 1px solid rgba(251, 250, 247, .12);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 14px 16px;
  border-radius: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  z-index: 1;
}
.about-copy { display: grid; gap: 18px; }
.about-copy p { color: var(--ink); font-size: 17px; }
.bullet-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--muted);
}
.bullet-list li { line-height: 1.6; }

/* ============ Fleet / Armada ============ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 960px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .fleet-grid { grid-template-columns: 1fr; }
}
.fleet-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.fleet-visual {
  min-height: 230px;
  position: relative;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
}
.fleet-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(245, 166, 35, .08) 0 16px,
    transparent 16px 32px
  );
}
.fleet-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--navy-deep);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em;
  z-index: 1;
}
.fleet-photo-label {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(6, 26, 50, .7);
  color: var(--cream);
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  padding: 8px 10px;
  border-radius: 8px;
  z-index: 1;
}
.fleet-body {
  padding: 24px;
  display: grid;
  gap: 14px;
  flex: 1;
}
.fleet-topline {
  color: var(--orange-deep);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em;
}
.fleet-body h3 { font-size: 28px; color: var(--navy); }
.fleet-desc { color: var(--muted); }
.fleet-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
  font-weight: 800;
}
.fleet-price small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.feature-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.feature-list li { line-height: 1.5; }

/* ============ Layanan / Service ============ */
.service-alt { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  font-size: 24px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p { color: var(--muted); font-size: 14px; }

/* ============ FAQ ============ */
.faq-area { background: var(--cream); }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  gap: 16px;
}
.faq-q strong {
  font-size: 22px;
  color: var(--orange-deep);
  flex-shrink: 0;
}
.faq-a {
  padding: 0 22px 20px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ Maps Hero ============ */
.maps-hero-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px rgba(6,26,50,.18);
}
@media (max-width: 768px) { .maps-hero-wrap { height: 420px; } }

.maps-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.maps-overlay-card {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(6,26,50,.22);
  z-index: 10;
}
@media (max-width: 640px) {
  .maps-overlay-card { position: static; width: 100%; border-radius: 0 0 20px 20px; }
  .maps-hero-wrap { height: auto; flex-direction: column; display: flex; }
  .maps-iframe { height: 300px; flex-shrink: 0; }
}

.maps-overlay-dark {
  background: var(--navy-deep);
  color: #fff;
}
.maps-overlay-dark p,
.maps-overlay-dark .maps-contact-row span:last-child { color: rgba(255,255,255,.75); }

.maps-overlay-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  background: rgba(245,166,35,.12);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.maps-overlay-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--navy-deep);
}
.maps-overlay-dark h3 { color: #fff; }
.maps-overlay-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}
.maps-overlay-divider {
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 14px 0;
}
.maps-overlay-dark .maps-overlay-divider { background: rgba(255,255,255,.12); }
.maps-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}
.maps-contact-row span:first-child { flex-shrink: 0; font-size: 14px; }
.maps-open-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  margin-top: 4px;
}
.maps-open-btn:hover { background: #e07800; }

.contact-actions-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============ Kontak ============ */
.contact-final { background: var(--paper); }
.contact-grid-final {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid-final { grid-template-columns: 1fr; }
}
.contact-stack { display: grid; gap: 16px; margin-top: 24px; }
.contact-box {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-box h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 20px;
}
.contact-box p {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 15px;
}
.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}
.contact-form-card h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-card > p {
  color: var(--muted);
  margin-bottom: 20px;
}
.contact-actions { display: grid; gap: 12px; }
.mini-contact-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ============ CTA Band ============ */
.cta-band {
  background: linear-gradient(135deg, #0db4d9, #0891b2);
  color: white;
  padding: 48px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
@media (max-width: 800px) {
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
.cta-band h3 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
  color: white;
}
.cta-band p {
  max-width: 820px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
}
.cta-band .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ============ Footer ============ */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: white;
}
.footer p {
  color: rgba(244, 241, 236, .72);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 17px;
}
.footer-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(244, 241, 236, .72);
  font-size: 14px;
}
.footer-list a {
  color: rgba(244, 241, 236, .72);
  transition: color .15s;
}
.footer-list a:hover { color: var(--orange); }
.footer-list li { line-height: 1.5; }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  color: rgba(244, 241, 236, .45);
  border-top: 1px solid rgba(244, 241, 236, .08);
  font-size: 13px;
}

/* ============ Fleet Actions ============ */
.fleet-mulai {
  font-size: 13px;
  color: var(--orange-deep);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}
.fleet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .fleet-actions { grid-template-columns: 1fr; }
}

/* ============ Real Photos ============ */
.hero-bus-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: .72;
}

.fleet-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fleet-visual:has(.fleet-img)::before {
  background: linear-gradient(180deg, rgba(6,26,50,.15) 0%, rgba(6,26,50,.52) 100%);
}
.fleet-badge { z-index: 2; }

.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: .52;
}
.about-badge,
.about-stamp { z-index: 1; }
}

/* ===========================
   MOBILE RESPONSIVE FIXES
   =========================== */

/* Container: tighter padding on phones */
@media (max-width: 480px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding-block: 64px; }
}

/* Nav: shrink logo + hide booking btn text on tiny screens */
@media (max-width: 380px) {
  .nav-book { font-size: 11px; padding: 10px 14px; }
}

/* Hero: fix font + layout on mobile */
@media (max-width: 640px) {
  .hero-inner { padding-top: 100px; }
  .hero h1 { font-size: clamp(36px, 9vw, 60px); }
  .hero-sub { font-size: 15px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-meta { gap: 12px; }
}

/* Stats: reduce padding + font on mobile */
@media (max-width: 640px) {
  .stats { padding: 20px 16px; gap: 16px; }
  .stat-num { font-size: clamp(26px, 7vw, 42px); }
  .stat-label { font-size: 12px; }
  .stat { padding-right: 12px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; padding: 16px 12px; }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
}

/* QuickBooking: stack heading + button vertically */
@media (max-width: 640px) {
  .step-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .field-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .field-grid { grid-template-columns: 1fr; }
  .field input { font-size: 13px; }
}

/* Section head */
@media (max-width: 480px) {
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 48px); }
}

/* About section: reduce about-visual height on mobile */
@media (max-width: 640px) {
  .about-visual { aspect-ratio: 4/3; min-height: 0; }
}

/* Fleet: ensure price doesn't overflow */
@media (max-width: 480px) {
  .fleet-price { font-size: 28px; }
}

/* Routes layout: reduce gap */
@media (max-width: 480px) {
  .routes-layout { gap: 28px; }
  .accordion-trigger { font-size: 14px; padding: 15px 16px; }
  .accordion-body { padding: 4px 16px 8px; }
  .accordion-route { font-size: 14px; }
  .routes-book-btn { font-size: 12px; padding: 12px 18px; }
}

/* Paket section */
@media (max-width: 480px) {
  .paket-grid { grid-template-columns: 1fr; }
}

/* Testimonials */
@media (max-width: 480px) {
  .testi-photo-item { width: 200px; }
  .testi-photo-img { height: 260px; }
}

/* Contact section */
@media (max-width: 480px) {
  .contact-form-card { padding: 20px; }
  .contact-form-card h3 { font-size: 22px; }
  .contact-box p { font-size: 13px; word-break: break-word; }
}

/* FAQ */
@media (max-width: 480px) {
  .detail-faq-q { font-size: 14px; padding: 15px 16px; }
  .detail-faq-a { font-size: 13px; }
}

/* Footer */
@media (max-width: 480px) {
  .footer-grid { gap: 28px; }
}

/* ============================================================
   PAGE: RUTE
   ============================================================ */

.rute-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 140px 0 80px;
  overflow: hidden;
}
.rute-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(245,166,35,.18), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(19,58,99,.5), transparent 50%),
    linear-gradient(160deg, #061a32 0%, #0b2a4a 100%);
  z-index: 0;
}
.rute-hero::before {
  content:''; position: absolute; inset:0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 1px, transparent 1px 60px)
              repeating-linear-gradient(0deg, rgba(255,255,255,.015) 0 1px, transparent 1px 60px);
  z-index:0;
}
.rute-hero-inner { position: relative; z-index: 1; }
.rute-hero-h1 {
  font-size: clamp(36px, 6vw, 72px);
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1;
}
.rute-hero-h1 em { color: var(--orange); font-style: normal; }
.rute-hero-sub { color: rgba(255,255,255,.75); font-size: 18px; max-width: 580px; line-height: 1.6; margin-bottom: 40px; }
.rute-hero-sub strong { color: var(--orange); font-weight: 700; }
.rute-hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.rute-stat { display: flex; flex-direction: column; }
.rute-stat strong { font-size: 28px; font-weight: 800; color: var(--orange); font-family: 'Bricolage Grotesque', sans-serif; }
.rute-stat span { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 2px; }
.rute-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--navy-deep);
  padding: 14px 28px; border-radius: 999px;
  font-weight: 800; font-size: 15px;
  box-shadow: 0 8px 0 0 var(--orange-deep);
  text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.rute-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 0 0 var(--orange-deep); }

.rute-section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
  margin-bottom: 48px;
}
.rute-section-head h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--navy-deep); }
.rute-section-head p { color: var(--muted); font-size: 16px; line-height: 1.7; padding-top: 8px; }
@media (max-width: 768px) { .rute-section-head { grid-template-columns: 1fr; gap: 12px; } }

.rute-highlight-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .rute-highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rute-highlight-grid { grid-template-columns: 1fr; } }

.rute-card {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rute-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: var(--orange);
}
.rute-card-tag {
  display: inline-flex; align-items: center;
  padding: 5px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em; width: fit-content;
}
.rute-card-route {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.rute-from { font-size: 17px; font-weight: 700; color: var(--navy-deep); }
.rute-arrow { color: var(--orange); font-size: 20px; font-weight: 800; }
.rute-to { font-size: 17px; font-weight: 700; color: var(--navy); }
.rute-card-time { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.rute-time-icon { font-size: 15px; }
.rute-card-cta { font-size: 13px; font-weight: 700; color: var(--orange); margin-top: auto; }

/* Coverage Section */
.rute-coverage-section {
  background: var(--navy-deep); padding: 100px 0;
  position: relative; overflow: hidden;
}
.rute-coverage-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,rgba(255,255,255,.02) 0 1px,transparent 1px 80px)
              repeating-linear-gradient(0deg,rgba(255,255,255,.02) 0 1px,transparent 1px 80px);
}
.rute-coverage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
@media (max-width: 960px) { .rute-coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rute-coverage-grid { grid-template-columns: 1fr; } }

.rute-coverage-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background .2s, border-color .2s;
}
.rute-coverage-card:hover { background: rgba(255,255,255,.09); border-color: var(--orange); }
.rute-coverage-city {
  font-size: 13px; font-weight: 800;
  color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.rute-coverage-list {
  list-style: none; display: grid; gap: 8px; margin-bottom: 20px;
}
.rute-coverage-list a {
  color: rgba(255,255,255,.75); font-size: 14px;
  display: flex; align-items: center; gap: 6px;
  text-decoration: none; transition: color .15s;
}
.rute-coverage-list a:hover { color: var(--orange); }
.rute-list-dot { color: var(--orange); font-size: 10px; }
.rute-coverage-book {
  font-size: 13px; font-weight: 700; color: var(--orange);
  text-decoration: none; display: block; margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px;
  transition: letter-spacing .15s;
}
.rute-coverage-book:hover { letter-spacing: .02em; }

/* Destinasi grid */
.rute-dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1024px) { .rute-dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rute-dest-grid { grid-template-columns: repeat(2, 1fr); } }

.rute-dest-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 28px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none; text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rute-dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.rute-dest-icon { font-size: 36px; line-height: 1; }
.rute-dest-name { font-size: 17px; font-weight: 700; color: var(--navy-deep); }
.rute-dest-info { font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* CTA band */
.rute-cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 56px 0;
}
.rute-cta-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.rute-cta-icon { font-size: 56px; line-height: 1; flex-shrink: 0; }
.rute-cta-inner > div { flex: 1; min-width: 240px; }
.rute-cta-inner h3 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 8px; }
.rute-cta-inner p { color: rgba(255,255,255,.7); }
.rute-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   PAGE: FAQ
   ============================================================ */

.faq-page-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 140px 0 80px;
  overflow: hidden;
}
.faq-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 30%, rgba(245,166,35,.15), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(19,58,99,.6), transparent 50%),
    linear-gradient(160deg, #061a32, #0b2a4a);
  z-index: 0;
}
.faq-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}
.faq-hero-inner { position: relative; z-index: 1; }
.faq-hero-h1 { font-size: clamp(36px, 6vw, 68px); color: #fff; margin: 12px 0 20px; line-height: 1.05; }
.faq-hero-sub { color: rgba(255,255,255,.75); font-size: 18px; max-width: 560px; line-height: 1.6; margin-bottom: 32px; }
.faq-hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.faq-hero-pills span {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
}

.faq-page-list-section { padding: var(--section-pad) 0; }
.faq-page-list-wrap {
  display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start;
}
@media (max-width: 900px) { .faq-page-list-wrap { grid-template-columns: 1fr; } }

/* Sidebar */
.faq-page-sidebar { position: sticky; top: 100px; display: grid; gap: 20px; }
.faq-sidebar-card {
  background: var(--navy-deep); border-radius: var(--radius-lg);
  padding: 28px 24px; display: grid; gap: 14px;
}
.faq-sidebar-icon { font-size: 36px; line-height: 1; }
.faq-sidebar-card h4 { color: #fff; font-size: 20px; }
.faq-sidebar-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; }
.faq-sidebar-btn {
  display: block; text-align: center;
  padding: 13px 16px; border-radius: 999px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  background: var(--orange); color: var(--navy-deep);
  transition: opacity .15s;
}
.faq-sidebar-btn.secondary { background: rgba(255,255,255,.12); color: #fff; margin-top: -6px; }
.faq-sidebar-btn:hover { opacity: .85; }

.faq-sidebar-info { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: grid; gap: 14px; }
.faq-info-row { display: flex; align-items: flex-start; gap: 12px; }
.faq-info-row > span { font-size: 18px; line-height: 1; }
.faq-info-row div { display: flex; flex-direction: column; gap: 2px; }
.faq-info-row strong { font-size: 14px; color: var(--navy-deep); }
.faq-info-row span:last-child { font-size: 13px; color: var(--muted); }

/* FAQ Accordion */
.faq-count { font-size: 13px; color: var(--muted); margin-bottom: 20px; font-family: 'JetBrains Mono', monospace; }
.faq-page-item {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-page-item.open { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,166,35,.1); }
.faq-page-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px;
  background: #fff; text-align: left;
  transition: background .15s;
}
.faq-page-item.open .faq-page-q { background: #fffbf2; }
.faq-q-left { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.faq-q-num {
  font-size: 11px; font-family: 'JetBrains Mono', monospace;
  color: var(--muted); min-width: 24px; padding-top: 3px;
}
.faq-q-cat {
  background: #f3f4f6; border-radius: 6px;
  padding: 3px 8px; font-size: 11px; font-weight: 600;
  color: var(--muted); white-space: nowrap; flex-shrink: 0; margin-top: 1px;
}
.faq-page-item.open .faq-q-cat { background: rgba(245,166,35,.15); color: var(--orange-deep); }
.faq-q-text { font-weight: 700; font-size: 15px; color: var(--navy-deep); line-height: 1.4; }
.faq-page-chevron {
  font-size: 20px; color: var(--muted); flex-shrink: 0;
  transition: transform .25s; display: block;
}
.faq-page-chevron.open { transform: rotate(180deg); color: var(--orange); }
.faq-page-a { padding: 0 22px 22px 58px; background: #fffbf2; }
.faq-page-a p { color: var(--muted); line-height: 1.7; font-size: 15px; margin-bottom: 16px; }
.faq-ask-btn {
  font-size: 13px; font-weight: 700; color: var(--orange);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.faq-ask-btn:hover { text-decoration: underline; }

/* FAQ Contact Section */
.faq-contact-section { background: var(--navy-deep); padding: 80px 0; }
.faq-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .faq-contact-grid { grid-template-columns: 1fr; } }
.faq-contact-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-contact-card.wa { border-color: rgba(245,166,35,.3); }
.faq-contact-icon { font-size: 40px; line-height: 1; }
.faq-contact-card h4 { color: #fff; font-size: 22px; }
.faq-contact-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; flex: 1; }
.faq-contact-btns { display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   PAGE: KONTAK
   ============================================================ */

.kontak-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 140px 0 80px;
  overflow: hidden;
}
.kontak-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(245,166,35,.2), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(6,26,50,.8), transparent 50%),
    linear-gradient(150deg, #061a32 0%, #133a63 100%);
}
.kontak-hero-inner { position: relative; z-index: 1; }
.kontak-hero-h1 { font-size: clamp(40px, 6vw, 76px); color: #fff; margin: 12px 0 20px; line-height: 1; }
.kontak-hero-sub { color: rgba(255,255,255,.75); font-size: 18px; max-width: 540px; line-height: 1.6; margin-bottom: 48px; }
.kontak-hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.kontak-badge {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px); border-radius: 14px;
  padding: 14px 20px;
}
.kontak-badge > span { font-size: 28px; line-height: 1; }
.kontak-badge > div { display: flex; flex-direction: column; gap: 2px; }
.kontak-badge strong { color: #fff; font-size: 15px; }
.kontak-badge small { color: rgba(255,255,255,.6); font-size: 12px; }

/* Kontak cards */
.kontak-cards-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .kontak-cards-grid { grid-template-columns: 1fr; } }

.kontak-card {
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.kontak-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.kontak-card.primary { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(245,166,35,.15); }
.kontak-card-icon { font-size: 40px; line-height: 1; }
.kontak-card h3 { font-size: 24px; color: var(--navy-deep); }
.kontak-card > p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.kontak-card-detail { display: grid; gap: 10px; background: var(--cream); border-radius: var(--radius); padding: 16px 18px; }
.kontak-detail-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.kontak-detail-row span { font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.kontak-detail-row strong { font-size: 15px; color: var(--navy-deep); }
.kontak-card-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* Map section */
.kontak-map-section { background: var(--navy-deep); padding: 80px 0; }
.kontak-map-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: 0;
}
.kontak-hours-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 20px 24px; min-width: 240px;
}
.kontak-hours-title { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.kontak-hours-row { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.kontak-hours-row span { font-size: 13px; color: rgba(255,255,255,.65); }
.kontak-hours-row strong { font-size: 13px; color: #fff; }
.kontak-hours-note { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 10px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 10px; }

/* CTA section */
.kontak-cta-section { padding: 80px 0; background: var(--cream); }
.kontak-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .kontak-cta-inner { grid-template-columns: 1fr; gap: 40px; } }
.kontak-cta-text h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--navy-deep); margin-bottom: 16px; }
.kontak-cta-text p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.kontak-cta-form { display: flex; flex-direction: column; gap: 16px; }
.kontak-cta-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
}
.kontak-cta-step > span {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.kontak-cta-step > p { color: var(--ink); font-size: 14px; line-height: 1.5; margin: 0; padding-top: 5px; }

/* Breadcrumb (shared) */
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.page-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb span:not(:last-child) { color: rgba(255,255,255,.35); }
.page-breadcrumb span:last-child { color: rgba(255,255,255,.7); }

.eyebrow.light { color: var(--orange); }

/* ============================================================
   BOOKING MODAL
   ============================================================ */

.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6, 26, 50, 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px;
  animation: fadeInOverlay .2s ease;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%; max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px -12px rgba(6,26,50,.45);
  animation: slideUpModal .25s cubic-bezier(.22,.68,0,1.3);
}
@keyframes slideUpModal { from { transform: translateY(32px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close-btn {
  position: sticky; top: 0; float: right;
  margin: 16px 16px 0 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(11,42,74,.08); color: var(--navy);
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: background .15s;
  z-index: 2;
}
.modal-close-btn:hover { background: rgba(11,42,74,.16); }

.modal-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 28px 32px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: -52px;
}
.modal-armada-badge {
  display: inline-block;
  background: var(--orange); color: var(--navy-deep);
  font-size: 11px; font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .1em; padding: 4px 10px;
  border-radius: 999px; margin-bottom: 12px;
}
.modal-title { color: #fff; font-size: 26px; margin-bottom: 6px; }
.modal-armada-meta { color: rgba(255,255,255,.6); font-size: 13px; font-family: 'JetBrains Mono', monospace; }

.modal-form { padding: 28px 32px 32px; }
.modal-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
@media (max-width: 520px) { .modal-form-grid { grid-template-columns: 1fr; } }

.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-field.full { grid-column: 1 / -1; }
.modal-field label { font-size: 13px; font-weight: 700; color: var(--navy-deep); }
.req { color: var(--orange); }
.optional { color: var(--muted); font-weight: 400; }
.modal-field input,
.modal-field select,
.modal-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; color: var(--ink);
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  width: 100%;
}
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.modal-field textarea { resize: vertical; min-height: 80px; }
.modal-note {
  font-size: 12px; color: var(--muted);
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 20px; line-height: 1.5;
}
.modal-form-actions {
  display: flex; gap: 12px; justify-content: flex-end;
}
.modal-form-actions .btn-ghost { color: var(--muted); border-color: var(--line); }

/* ============================================================
   HOME MAP SECTION
   ============================================================ */

.home-map-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
}
.home-map-grid {
  display: grid; grid-template-columns: 420px 1fr; gap: 56px; align-items: center;
}
@media (max-width: 960px) { .home-map-grid { grid-template-columns: 1fr; gap: 40px; } }

.home-map-info .eyebrow { color: var(--orange); }
.home-map-info h2 {
  font-size: clamp(28px, 3.5vw, 44px); color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
.home-map-info > p { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }

.home-map-details { display: grid; gap: 14px; margin-bottom: 32px; }
.hm-row {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.5;
}
.hm-row > span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.hm-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.home-map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  height: 380px;
}
.home-map-iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ============ Kontak 2-col grid ============ */
.kontak-cards-grid-2 {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start;
}
@media (max-width: 768px) { .kontak-cards-grid-2 { grid-template-columns: 1fr; } }

/* ============ FAQ contact card – text visibility on dark bg ============ */
.faq-contact-card h4 { color: #fff; }
.faq-contact-card p { color: rgba(255,255,255,.65); }
.faq-contact-link-btn {
  display: inline-flex; align-items: center;
  color: var(--orange); font-weight: 700; font-size: 14px;
  text-decoration: none; border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px; margin-top: auto; transition: letter-spacing .15s;
}
.faq-contact-link-btn:hover { letter-spacing: .02em; }
.faq-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .faq-contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   RESPONSIVE FIXES — MOBILE & TABLET
   ============================================================ */

/* Modal: bottom sheet on mobile */
@media (max-width: 600px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box { border-radius: 24px 24px 0 0; max-height: 92vh; }
  .modal-header { border-radius: 24px 24px 0 0; }
  .modal-form { padding: 20px 20px 28px; }
  .modal-form-grid { grid-template-columns: 1fr; gap: 12px; }
  .modal-form-actions { flex-direction: column-reverse; }
  .modal-form-actions .btn { width: 100%; justify-content: center; }
}

/* Home map: mobile */
@media (max-width: 640px) {
  .home-map-embed { height: 260px; }
  .home-map-info h2 { font-size: clamp(24px, 6vw, 36px); }
  .hm-ctas { flex-direction: column; gap: 10px; }
  .hm-ctas .btn { justify-content: center; }
}

/* Rute page: mobile */
@media (max-width: 600px) {
  .rute-hero { padding: 110px 0 56px; }
  .rute-hero-stats { gap: 20px; }
  .rute-stat strong { font-size: 22px; }
  .rute-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .rute-cta-inner { flex-direction: column; gap: 20px; text-align: center; }
  .rute-cta-btns { justify-content: center; }
  .rute-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

/* FAQ page: mobile */
@media (max-width: 900px) { .faq-page-sidebar { position: static; } }
@media (max-width: 600px) {
  .faq-page-hero { padding: 110px 0 56px; }
  .faq-hero-h1 { font-size: clamp(28px, 8vw, 52px); }
  .faq-hero-sub { font-size: 15px; }
  .faq-page-q { padding: 14px 16px; }
  .faq-q-cat { display: none; }
  .faq-page-a { padding: 0 16px 16px 16px; }
  .faq-page-list-section { padding: 48px 0; }
}

/* Kontak page: mobile */
@media (max-width: 600px) {
  .kontak-hero { padding: 110px 0 56px; }
  .kontak-hero-h1 { font-size: clamp(30px, 8vw, 56px); }
  .kontak-hero-sub { font-size: 15px; margin-bottom: 32px; }
  .kontak-hero-badges { flex-direction: column; gap: 10px; }
  .kontak-map-header { flex-direction: column; }
  .kontak-cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Tentang page: mobile */
@media (max-width: 700px) {
  .tentang-hero-grid { grid-template-columns: 1fr !important; }
  .tentang-hero-logo { display: none; }
  .tentang-vm-grid { grid-template-columns: 1fr !important; }
  .tentang-komitmen-grid { grid-template-columns: 1fr !important; }
  .tentang-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tentang-why-grid { grid-template-columns: 1fr; }
  .tentang-hero-h1 { font-size: clamp(28px, 8vw, 48px); }
}

/* Footer: compact on mobile */
@media (max-width: 420px) {
  .footer-brand { font-size: 22px; }
  .footer h4 { font-size: 15px; margin-bottom: 10px; }
  .footer-list { font-size: 13px; gap: 8px; }
  .footer-bottom { font-size: 11px; }
}