/**
 * ============================================================
 * LOMBOK GOOD RENTCAR — assets/css/style.css
 * Design tokens: Navy (kepercayaan) + Amber (energi & matahari Lombok)
 * Display: Fraunces | Body: Plus Jakarta Sans
 * ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ===== BRAND COLORS ===== */
  --navy:        #0B5FA5;
  --navy-mid:    #073A66;
  --navy-soft:   #234274;
  --amber:       #F5A623; 
  --amber-light: #F4A94E;
  --amber-pale:  #FCE8CC;
  --sand:        #F7F9FC;
  --ink:         #1A1A1A;
  --slate:       #5B6B8C;
  --line:        #E7E1D6;
  --paper:       #FFFFFF;
  

  /* ===== STATUS COLORS (Armada) ===== */
  --status-tersedia:    #15803D;
  --status-tersedia-bg: rgba(21,128,61,.1);
  --status-maint:       #B45309;
  --status-maint-bg:    rgba(180,83,9,.1);
  --status-disewa:      #B91C1C;
  --status-disewa-bg:   rgba(185,28,28,.1);

  /* ===== TYPE ===== */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* ===== LAYOUT ===== */
  --container-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(11,30,61,.06);
  --shadow-md: 0 8px 28px rgba(11,30,61,.1);
  --shadow-lg: 0 20px 60px rgba(11,30,61,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--amber);
  outline-offset: 2px;
}

/* ===== SECTION EYEBROW / TITLE (shared) ===== */
.section { padding: 96px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--amber);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.section-desc {
  font-size: 16px;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .section-eyebrow::before { display: none; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700; font-size: 14.5px;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(224,138,44,.3);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(224,138,44,.4); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 700; font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--navy);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--paper); }

.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,.08);
  color: var(--paper);
  font-weight: 700; font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); }

.btn-full { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700; font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1FB855; transform: translateY(-1px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 500;
  background: rgba(11,30,61,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--paper); }
.logo-tagline { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.nav-links a {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-call {
  display: flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav-call:hover { color: var(--amber-light); }

.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none;
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 22px;
  gap: 4px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Rule navbar mobile lama dipindahkan & diperbaiki — lihat bagian
   akhir file ini: "FIX UTAMA: OVERFLOW MOBILE PADA NAVBAR" */
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.18); }
.nav-links a.active-link { color: var(--amber-light); }
.nav-links a.active-link::after { width: 100%; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  padding: 90px 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(224,138,44,.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(35,66,116,.6), transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding-bottom: 64px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  font-size: 12.5px; font-weight: 600;
  padding: 8px 16px 8px 12px;
  border-radius: 50px;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 0 4px rgba(244,169,78,.25);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--paper);
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.headline-amber {
  color: var(--amber-light);
  font-style: italic;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* ===== Signature: Route strip (Bandara → Mandalika → Senggigi) ===== */
.route-strip-wrap {
  position: relative; z-index: 2;
  overflow-x: auto;
  padding: 0 0 40px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.route-strip-wrap::-webkit-scrollbar { display: none; }
.route-strip {
  display: flex; align-items: flex-start;
  min-width: 560px;
}
.route-stop {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}
.route-stop-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--amber-light);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(244,169,78,.3);
  margin-bottom: 2px;
}
.route-stop-label {
  font-size: 12.5px; font-weight: 700;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.route-stop-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.route-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed rgba(244,169,78,.35);
  margin: 5px 10px 0;
  min-width: 28px;
}

@media (max-width: 700px) {
  .hero { padding-top: 76px; }
  .hero-content { padding-bottom: 44px; }
  .hero-cta-row { margin-bottom: 40px; }
  .hero-cta-row a { flex: 1; min-width: 150px; }
}

/* ============================================================
   WHY US — Value Proposition strip
   ============================================================ */
.why-strip {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.why-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.why-item:last-child { border-right: none; }
.why-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--paper);
  border: 1.5px solid var(--amber-pale);
  color: var(--amber);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-text-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.why-text-desc { font-size: 12px; color: var(--slate); }

@media (max-width: 900px) {
  .why-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2) { border-right: none; }
  .why-item { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .why-strip-inner { grid-template-columns: 1fr; }
  .why-item { border-right: none; }
}

/* ============================================================
   FLEET / ARMADA SECTION
   ============================================================ */
.fleet-section { background: var(--paper); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fleet-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.fleet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.fleet-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  overflow: hidden;
}
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fleet-status {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: .2px;
  backdrop-filter: blur(6px);
}
.fleet-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-tersedia { background: rgba(21,128,61,.92); color: #fff; }
.status-maintenance { background: rgba(180,83,9,.92); color: #fff; }
.status-disewa { background: rgba(185,28,28,.92); color: #fff; }

.fleet-type-chip {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(11,30,61,.75);
  color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 600;
  padding: 5px 11px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.fleet-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.fleet-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.fleet-specs { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.fleet-spec-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--slate); font-weight: 500;
}
.fleet-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; margin-top: auto;
  border-top: 1px solid var(--line);
}
.fleet-price { display: flex; flex-direction: column; }
.price-label { font-size: 11px; color: var(--slate); }
.price-value { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); }
.price-value span { font-size: 12px; font-weight: 500; color: var(--slate); }
.btn-fleet-detail {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--amber);
  transition: gap var(--transition);
}
.btn-fleet-detail:hover { gap: 9px; }

.fleet-cta-row { text-align: center; margin-top: 44px; }

@media (max-width: 980px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .fleet-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LAYANAN SECTION
   ============================================================ */
.services-section { background: var(--sand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--amber-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 18px; }
.service-link { font-size: 13px; font-weight: 700; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-link:hover { gap: 9px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-visual { position: relative; }
.about-image-stack { position: relative; aspect-ratio: 1/1.05; }
.about-img-main {
  position: absolute; inset: 0 12% 12% 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; right: 0; bottom: 0;
  width: 52%; aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute; top: 18px; left: 18px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: flex-start;
}
.float-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; }
.float-label { font-size: 11px; color: var(--slate); font-weight: 600; margin-top: 4px; }

.about-text { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.about-pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.pillar { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink); font-weight: 500; }
.pillar-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); margin-top: 7px; flex-shrink: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--navy); position: relative; overflow: hidden; }
.testi-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 90% 10%, rgba(224,138,44,.14), transparent 60%);
  pointer-events: none;
}
.testi-section .section-title, .testi-section .section-eyebrow { color: var(--paper); }
.testi-section .section-eyebrow { color: var(--amber-light); }
.testi-section .section-desc { color: rgba(255,255,255,.6); }
.testi-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  backdrop-filter: blur(6px);
}
.testi-card.testi-featured { background: rgba(244,169,78,.08); border-color: rgba(244,169,78,.25); }
.testi-stars { color: var(--amber-light); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.testi-name { display: block; font-size: 13.5px; font-weight: 700; color: var(--paper); }
.testi-role { display: block; font-size: 12px; color: rgba(255,255,255,.5); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ESTIMASI BIAYA SEWA (Kalkulator)
   ============================================================ */
.calc-section { background: var(--sand); }
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 56px;
  align-items: center;
}
.calc-desc { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
.calc-note { font-size: 12.5px; color: var(--slate); font-style: italic; }
.calc-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.calc-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 22px; }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.calc-field select, .calc-field input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
  background: var(--paper);
}
.calc-field select:focus, .calc-field input:focus { border-color: var(--amber); }

.tenor-options { display: flex; gap: 8px; flex-wrap: wrap; }
.tenor-btn {
  flex: 1; min-width: 70px;
  padding: 10px 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 13px; font-weight: 700;
  color: var(--slate);
  transition: var(--transition);
}
.tenor-btn:hover { border-color: var(--amber); color: var(--navy); }
.tenor-btn.active { background: var(--navy); border-color: var(--navy); color: var(--paper); }

.calc-result {
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 22px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.result-label { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; }
.result-amount { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--amber-light); }

/* ============================================================
   ARTIKEL SECTION (Homepage preview)
   ============================================================ */
.artikel-section { background: var(--paper); }
.artikel-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}
.article-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.article-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
}
.article-featured .article-image { aspect-ratio: 16/11; }
.article-card .article-body { padding: 20px 22px 24px; }
.article-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.article-card .article-title {
  font-family: var(--font-display);
  font-size: 17.5px; font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}
.article-featured .article-title { font-size: 21px; }
.article-excerpt { font-size: 13.5px; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }
.article-link { font-size: 13px; font-weight: 700; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.article-link:hover { gap: 9px; }
.artikel-cta { text-align: center; margin-top: 44px; }

@media (max-width: 900px) { .artikel-grid { grid-template-columns: 1fr 1fr; } .article-featured { grid-column: span 2; } }
@media (max-width: 600px) { .artikel-grid { grid-template-columns: 1fr; } .article-featured { grid-column: span 1; } }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--navy); position: relative; overflow: hidden; }
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 5% 90%, rgba(224,138,44,.16), transparent 60%);
  pointer-events: none;
}
.contact-section .section-eyebrow { color: var(--amber-light); }
.contact-section .section-title { color: var(--paper); }
.contact-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 32px; max-width: 460px; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(244,169,78,.12);
  border: 1px solid rgba(244,169,78,.3);
  color: var(--amber-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.ci-label { display: block; font-size: 11.5px; color: rgba(255,255,255,.45); font-weight: 600; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .4px; }
.ci-value { display: block; font-size: 14.5px; color: var(--paper); font-weight: 600; line-height: 1.6; }
a.ci-value:hover { color: var(--amber-light); }

.btn-whatsapp-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-weight: 700; font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-whatsapp-lg:hover { background: #1FB855; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.3); }

.contact-form-wrap {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 22px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13.5px; font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { resize: vertical; min-height: 90px; }
.form-privacy { font-size: 11.5px; color: var(--slate); text-align: center; margin-top: 14px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 22px; }
}
@media (max-width: 480px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #081530; color: rgba(255,255,255,.55); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding: 72px 24px 48px;
}
.footer-desc { font-size: 13.5px; line-height: 1.75; margin: 18px 0 20px; max-width: 320px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 11px;
  border-radius: 50px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--amber); color: var(--navy); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--paper); letter-spacing: .3px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--amber-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding: 20px 24px;
  font-size: 12px; color: rgba(255,255,255,.4);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 36px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===== WhatsApp Floating Button ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.12); }
}
@media (max-width: 600px) {
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

/* ===== Generic section variants ===== */
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); }

/* ============================================================
   CTA BANNER PENUTUP
   ============================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-soft) 100%);
  overflow: hidden;
  padding: 76px 0;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 70% at 92% 50%, rgba(224,138,44,.25), transparent 65%),
    radial-gradient(ellipse 30% 50% at 5% 10%, rgba(244,169,78,.12), transparent 60%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-banner-text { max-width: 560px; }
.cta-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 14px;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 12px;
}
.cta-banner-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 700px) {
  .cta-banner { padding: 56px 0; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions a { flex: 1; min-width: 150px; }
}

/* ===== Empty state (dipakai oleh render JS dinamis) ===== */
.empty-state {
  text-align: center; padding: 60px 24px;
  color: var(--slate);
}
.empty-state-icon { font-size: 38px; margin-bottom: 12px; }
.empty-state-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.empty-state-desc { font-size: 13.5px; color: var(--slate); }

/* ============================================================
   HALAMAN DALAM (Inner Pages) — Sewa Mobil, Detail Armada, dst
   Ditambahkan agar konsisten dengan design system utama
   (Navy + Amber, font Poppins/Inter) yang dipakai di homepage.
   ============================================================ */

/* ===== PAGE HERO (header halaman dalam, pengganti hero besar homepage) ===== */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 150px 0 64px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(224,138,44,.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(35,66,116,.6), transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 600;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero-subtitle {
  font-size: 15.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--amber-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* Variasi breadcrumb di atas background terang (misal halaman detail) */
.breadcrumb.on-light { color: var(--slate); }
.breadcrumb.on-light a { color: var(--amber); }
.breadcrumb.on-light a:hover { color: var(--navy); }
.breadcrumb.on-light span { color: var(--line); }

/* ===== FILTER TABS (Sewa Mobil) ===== */
.filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-size: 13.5px; font-weight: 600;
  color: var(--slate);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--amber); color: var(--navy); }
.filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}

/* ===== CAR CARD (alias dari .fleet-card, dipakai di grid sewa-mobil) ===== */
.car-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.car-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.car-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  overflow: hidden;
}
.car-card-image img { width: 100%; height: 100%; object-fit: cover; }
.car-badge {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: .2px;
  backdrop-filter: blur(6px);
}
.car-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.car-badge.available { background: rgba(21,128,61,.92); color: #fff; }
.car-badge.habis { background: rgba(185,28,28,.92); color: #fff; }
.car-category {
  background: rgba(11,30,61,.75);
  color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 600;
  padding: 5px 11px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.car-card-image .car-category {
  position: absolute; bottom: 14px; left: 14px;
}
.car-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.car-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.car-specs { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.car-spec { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--slate); font-weight: 500; }
.car-pricing { margin-bottom: 18px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.price-row .price-label { font-size: 12px; color: var(--slate); }
.price-row .price-value { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--navy); }
.price-row .price-value.primary { color: var(--amber); font-size: 17px; }
.car-card-actions { display: flex; gap: 10px; margin-top: auto; }
.car-card-actions .btn-outline,
.car-card-actions .btn-primary { flex: 1; font-size: 13px; padding: 12px 16px; }

@media (max-width: 980px) { #fleetGrid.fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { #fleetGrid.fleet-grid { grid-template-columns: 1fr; } }

/* ===== DETAIL ARMADA — Thumbnail strip & info panel ===== */
.detail-gallery-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
}
.detail-gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-gallery-thumbs img {
  width: 76px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid var(--line);
  transition: border-color var(--transition);
}
.detail-gallery-thumbs img:hover { border-color: var(--amber); }
.detail-gallery-empty {
  width: 100%; aspect-ratio: 4/3;
  background: var(--sand);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate); font-size: 14px;
}

.detail-info-panel { padding-top: 4px; }
.detail-type-chip {
  display: inline-block;
  background: var(--navy);
  color: var(--paper);
  font-size: 11px; font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.detail-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.detail-status-line { font-size: 14px; color: var(--slate); margin-bottom: 22px; }
.detail-status-line strong { color: var(--navy); }
.detail-status-line .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.detail-status-line .dot.tersedia { background: var(--status-tersedia); }
.detail-status-line .dot.maintenance { background: var(--status-maint); }
.detail-status-line .dot.disewa { background: var(--status-disewa); }

.detail-desc { color: var(--ink); line-height: 1.8; font-size: 14.5px; margin-bottom: 26px; }

.detail-invoice-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 24px;
}
.detail-invoice-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 14px;
}
.detail-invoice-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: rgba(255,255,255,.85);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.detail-invoice-row:last-child { border-bottom: none; }
.detail-invoice-row span:last-child { font-family: var(--font-display); font-weight: 600; color: var(--paper); }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ============================================================
   AIRPORT TRANSFER PAGE — Tambahan style khusus
   Konsisten dengan design token utama (Navy + Amber)
   ============================================================ */

/* ===== ROUTE SELECTOR (Peta Interaktif Rute) ===== */
.route-section { background: var(--sand); }
.route-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.route-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: sticky;
  top: 90px;
}
.route-map-wrap iframe { width: 100%; height: 460px; border: 0; display: block; }

.route-destination-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.route-dest-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
}
.route-dest-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.route-dest-card.active {
  border-color: var(--amber);
  background: linear-gradient(135deg, rgba(245,166,35,.06), var(--paper));
  box-shadow: 0 6px 18px rgba(245,166,35,.15);
}
.route-dest-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--amber-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.route-dest-card.active .route-dest-icon { background: var(--amber); color: var(--navy); }
.route-dest-info { flex: 1; min-width: 0; }
.route-dest-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.route-dest-meta { font-size: 12px; color: var(--slate); display: flex; gap: 10px; }
.route-dest-meta span { display: flex; align-items: center; gap: 4px; }
.route-dest-price {
  text-align: right;
  flex-shrink: 0;
}
.route-dest-price .from { font-size: 10.5px; color: var(--slate); display: block; }
.route-dest-price .amount { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--amber); }

/* ===== FARE TABLE (Tarif per Kelas Kendaraan) ===== */
.fare-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 20px;
}
.fare-panel-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 4px;
}
.fare-panel-dest {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  color: var(--paper);
  margin-bottom: 18px;
}
.fare-class-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fare-class-row:last-of-type { border-bottom: none; }
.fare-class-info { display: flex; align-items: center; gap: 12px; }
.fare-class-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-light);
  flex-shrink: 0;
}
.fare-class-name { font-size: 14px; font-weight: 600; color: var(--paper); }
.fare-class-sub { font-size: 11.5px; color: rgba(255,255,255,.5); }
.fare-class-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--paper); text-align: right; white-space: nowrap; }

.fare-cta-row { margin-top: 22px; }
.fare-cta-row .btn-whatsapp-lg { width: 100%; justify-content: center; }

/* ===== MEKANISME / ATURAN ANTAR-JEMPUT (Steps) ===== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.rule-card {
  display: flex;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}
.rule-card:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.rule-number {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber-light);
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rule-content h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.rule-content p { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

@media (max-width: 760px) {
  .rules-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--amber); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--navy);
  background: none; border: none; width: 100%; text-align: left;
}
.faq-toggle-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--navy);
}
.faq-item.open .faq-toggle-icon { background: var(--amber); color: var(--navy); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 13.5px; color: var(--slate); line-height: 1.75; }

/* ===== Responsive: Route Layout ===== */
@media (max-width: 900px) {
  .route-layout { grid-template-columns: 1fr; }
  .route-map-wrap { position: static; }
  .route-map-wrap iframe { height: 320px; }
}

/* ============================================================
   BLOG PAGES — Listing & Detail Artikel
   Konsisten dengan design token utama (Navy + Amber)
   ============================================================ */

/* ===== BLOG LISTING — filter kategori ===== */
.blog-filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Grid blog listing sedikit berbeda dari preview homepage —
   tidak ada "featured besar", semua kartu rata, karena ini
   halaman arsip lengkap, bukan ringkasan 3 artikel teratas. */
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .blog-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-archive-grid { grid-template-columns: 1fr; } }

/* ===== ARTICLE DETAIL — Hero & Meta ===== */
.article-detail-hero {
  background: var(--navy);
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}
.article-detail-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(224,138,44,.22), transparent 60%);
  pointer-events: none;
}
.article-detail-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.article-detail-category {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: 11px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.article-detail-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--paper);
  line-height: 1.3;
  margin-bottom: 18px;
}
.article-detail-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.article-detail-meta span { display: flex; align-items: center; gap: 6px; }

/* ===== ARTICLE DETAIL — Body Layout ===== */
.article-detail-body-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 0;
}
.article-detail-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
}

/* ===== PROSE — Typography untuk konten HTML artikel ===== */
.article-prose {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
}
.article-prose p { margin-bottom: 22px; }
.article-prose h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: var(--navy);
  margin: 40px 0 18px;
  line-height: 1.35;
}
.article-prose h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  color: var(--navy);
  margin: 32px 0 14px;
}
.article-prose ul, .article-prose ol { margin: 0 0 22px; padding-left: 22px; }
.article-prose li { margin-bottom: 8px; line-height: 1.75; }
.article-prose a { color: var(--amber); text-decoration: underline; text-decoration-color: rgba(245,166,35,.4); }
.article-prose a:hover { text-decoration-color: var(--amber); }
.article-prose img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}
.article-prose blockquote {
  border-left: 3px solid var(--amber);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-style: italic;
  color: var(--slate);
  font-size: 16.5px;
}
.article-prose strong { color: var(--navy); font-weight: 600; }
.article-prose hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }

/* ===== ARTICLE DETAIL — Share & Tags (opsional) ===== */
.article-detail-footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}

/* ===== ARTICLE DETAIL — CTA Box ===== */
.article-cta-box {
  max-width: 760px;
  margin: 48px auto 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(224,138,44,.2), transparent 60%);
  pointer-events: none;
}
.article-cta-box-inner { position: relative; z-index: 1; }
.article-cta-box h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--paper);
  margin-bottom: 10px;
}
.article-cta-box p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.article-cta-box-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== Related Articles ===== */
.related-articles-section { background: var(--sand); }

@media (max-width: 600px) {
  .article-cta-box { padding: 28px 24px; }
}

/* ============================================================
   NAVBAR — Perbaikan Overflow Mobile & Language Switcher
   ============================================================ */

/* ===== LANGUAGE SWITCHER (Desktop Dropdown) ===== */
.lang-switcher {
  position: relative;
}
.lang-switcher-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.lang-switcher-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.lang-switcher-caret { transition: transform var(--transition); }
.lang-switcher-menu.open + .lang-switcher-caret,
.lang-switcher-btn[aria-expanded="true"] .lang-switcher-caret { transform: rotate(180deg); }

.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.lang-switcher-menu.open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.lang-switcher-menu .lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink);
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.lang-switcher-menu .lang-option:hover { background: var(--sand); color: var(--navy); }
.lang-flag { font-size: 16px; line-height: 1; }

/* ===== LANGUAGE SWITCHER (Mobile Menu — baris pilihan bahasa) ===== */
.mobile-lang-row {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-lang-label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 10px;
}
.mobile-lang-options {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.mobile-lang-options .lang-option {
  padding: 7px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: 12.5px; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-lang-options .lang-option:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ===== FIX UTAMA: OVERFLOW MOBILE PADA NAVBAR =====
   Akar masalah sebelumnya: tombol "Sewa Sekarang" (.btn-whatsapp)
   di dalam .nav-actions tidak pernah disembunyikan total di mobile —
   sebelumnya hanya teksnya yang hilang lewat
   ".nav-actions .btn-whatsapp span { display:none }", tapi ikon dan
   padding tombolnya tetap memakan tempat, sehingga total lebar
   (logo + tombol bahasa + tombol WA + hamburger) melebihi layar
   dan menyebabkan horizontal overflow di perangkat mobile.

   Solusi: sembunyikan SELURUH tombol .btn-whatsapp di .nav-actions
   pada lebar ≤980px — fungsinya tetap ada lewat tombol WhatsApp
   yang sudah tersedia di dalam mobile-menu (lihat header.php). */
@media (max-width: 980px) {
  .nav-links, .nav-call { display: none; }
  .nav-actions .btn-whatsapp { display: none; }
  .hamburger { display: flex; }

  /* Pastikan navbar tidak pernah memicu scroll horizontal,
     sebagai pengaman tambahan selain fix di atas. */
  .navbar, .nav-inner { overflow-x: hidden; max-width: 100%; }
}

/* Pada layar sangat sempit, beri sedikit lagi kelonggaran spasi
   supaya tombol bahasa + hamburger tidak terlalu rapat. */
@media (max-width: 380px) {
  .nav-inner { padding: 12px 16px; gap: 10px; }
  .lang-switcher-btn span:not(.lang-switcher-current) { display: none; }
  .lang-switcher-btn { padding: 8px 10px; }
}

/* Pengaman global tambahan: cegah elemen lebar (misal akibat konten
   panjang tak terduga) memaksa body untuk bisa di-scroll horizontal. */
html, body { overflow-x: hidden; max-width: 100%; }
