:root {
  --bg: #f4f2ec;
  --surface: #ffffff;
  --surface-soft: #fbfaf6;
  --ink: #171717;
  --muted: #6b6962;
  --line: #dfddd4;
  --red: #d71920;
  --red-dark: #9f1117;
  --black: #101010;
  --gold: #c59a3a;
  --green: #0f766e;
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 25, 32, 0.06), transparent 30%),
    linear-gradient(180deg, #faf8f1 0%, var(--bg) 44%, #f8f7f2 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: var(--glass);
  border-bottom: 1px solid rgba(223, 221, 212, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(225px, 18vw, 320px);
  height: auto;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: linear-gradient(135deg, var(--black) 0 48%, var(--red) 49% 100%);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  border-radius: 8px;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: #34332f;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--red);
}

.header-action,
.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.icon-action {
  gap: 8px;
}

.icon-action img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.header-action,
.primary-button {
  background: var(--red);
  color: #fff;
}

.secondary-button {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.text-button {
  min-height: 40px;
  background: #fff5f5;
  color: var(--red);
  border-color: rgba(215, 25, 32, 0.18);
}

.header-action:hover,
.primary-button:hover,
.secondary-button:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover,
.header-action:hover {
  background: var(--red-dark);
}

.secondary-button:hover,
.text-button:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 6vw, 5.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy p,
.section-heading p,
.contact-section p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-strip span,
.area-chips span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #3b3934;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.panel-logo {
  position: relative;
  z-index: 1;
  width: min(260px, 74%);
  height: auto;
  margin-bottom: 4px;
  mix-blend-mode: multiply;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.11), transparent 52%);
  pointer-events: none;
}

.panel-top,
.route-card,
.fleet-preview,
.quick-list {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: grid;
  gap: 4px;
}

.panel-top span,
.route-card span,
.route-card small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.panel-top strong {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.route-card {
  display: grid;
  gap: 2px;
  padding: 18px;
  background: var(--black);
  color: #fff;
  border-radius: 8px;
}

.route-card strong {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.route-card span,
.route-card small {
  color: #d8d5cc;
}

.fleet-preview {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 11 / 10;
}

.fleet-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-list span {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.section,
.process-section,
.fleet-section,
.area-section,
.package-section,
.faq-section,
.contact-section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 104px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.service-grid,
.process-grid,
.price-grid {
  display: grid;
  gap: 14px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(22, 22, 22, 0.04);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.18);
  box-shadow: 0 16px 38px rgba(22,22,22,0.09);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

.service-card h3 {
  min-height: 2.6em;
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  color: var(--red);
  background: #fff5f5;
  border: 1px solid rgba(215, 25, 32, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0.72;
}

.process-section {
  background: var(--black);
  color: #fff;
}

.process-section .eyebrow {
  color: var(--gold);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 200ms;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.09);
}

.process-step-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.process-grid strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 8px;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.process-step h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.process-step span {
  color: #c4c0b6;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.fleet-section {
  background: var(--surface-soft);
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 14px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.06);
  overflow: hidden;
}

.vehicle-link {
  text-decoration: none;
  color: inherit;
  display: contents;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.card-actions .text-button {
  flex: 1;
  justify-content: center;
  padding: 8px;
}

.whatsapp-action {
  background: var(--red);
  color: white !important;
}

.whatsapp-action img {
  filter: brightness(0) invert(1);
}

.vehicle-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: #fff;
}

.vehicle-photo-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 11 / 10;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: #faf8f1;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.flyer-photo {
  object-fit: contain;
  padding: 8px;
  background: #ffffff;
}

.vehicle-type {
  width: fit-content;
  padding: 5px 9px;
  background: #f5eeef;
  color: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.price-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.price-card dl div {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.price-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card dd {
  margin: 0;
  color: var(--black);
  font-weight: 900;
}

.area-section,
.package-section {
  background:
    linear-gradient(90deg, rgba(244, 242, 236, 0.98), rgba(244, 242, 236, 0.8)),
    repeating-linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0 12px, transparent 12px 34px);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.faq-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: rgba(244, 242, 236, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.package-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(22, 22, 22, 0.08);
}

.package-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.package-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.package-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #eaf6f5;
}

.package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 24px 26px 22px;
}

.package-card h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.35;
}

.package-features svg {
  box-sizing: content-box;
  width: 14px;
  height: 14px;
  padding: 4px;
  fill: #fff;
  background: #2ea65a;
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-price {
  padding: 2px 0 0;
  margin-top: 0;
}

.package-price small {
  display: block;
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 2px;
}

.package-price strong {
  display: block;
  font-size: 1.18rem;
  color: #475569;
  font-weight: 900;
}

.package-price strong span {
  font-size: 1.02rem;
  font-weight: 900;
  color: inherit;
}

.package-action {
  display: flex;
  justify-content: center;
  padding: 16px 26px;
  border-top: 1px solid var(--line);
}

.package-card .primary-button {
  width: auto;
  min-width: 190px;
  min-height: 46px;
  padding: 10px 22px;
  background: #151a93;
  border-radius: 999px;
  justify-content: center;
}

.package-card .primary-button:hover {
  background: #0e136f;
}

.image-credit {
  max-width: 1320px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.image-credit a {
  color: inherit;
  text-decoration: underline;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.contact-box {
  display: grid;
  gap: 12px;
  justify-items: center;
  justify-self: center;
  width: 100%;
  max-width: 460px;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-align: center;
}

.contact-logo {
  width: min(230px, 76%);
  height: auto;
  margin-bottom: 12px;
}

.contact-box strong {
  font-size: clamp(1.28rem, 2.3vw, 1.62rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-box > span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.full-width {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  justify-content: center;
}

.contact-list {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--black);
  font-weight: 800;
}

.contact-list img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.contact-list a:hover {
  color: var(--red);
}

.hours-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  color: #13793a;
  background: #edfff4;
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: 999px;
  font-weight: 800;
}

/* ── Floating WhatsApp (all screens) ───────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp img { width: 32px; height: 32px; }

/* ── Header scroll state ────────────────────────────────────────────── */
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 20px rgba(20,20,20,0.1);
}

/* ── Hamburger button ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 240ms 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); }

/* ── Mobile nav overlay ────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: flex;
  align-items: flex-start;
  background: rgba(16,16,16,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav nav {
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 90px 22px 28px;
  background: #fff;
  min-height: 100dvh;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open nav { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  border-radius: 8px;
  transition: background 140ms, color 140ms;
}
.mobile-nav-link:hover { background: #fdf1f1; color: var(--red); }
.mobile-wa-btn {
  margin-top: 14px;
  padding: 14px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-wa-btn img { width: 22px; height: 22px; }

/* ── Scroll animations ─────────────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }

/* ── Service icons ─────────────────────────────────────────────────── */
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #fdf1f1;
  border: 1px solid rgba(215, 25, 32, 0.08);
  border-radius: 8px;
  margin-bottom: 0;
  color: var(--red);
}
.service-icon svg { width: 24px; height: 24px; }

/* ── Process icons ─────────────────────────────────────────────────── */
.process-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  margin-bottom: 2px;
  color: var(--gold);
}
.process-icon svg { width: 24px; height: 24px; }

/* ── Fleet filter ──────────────────────────────────────────────────── */
.fleet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ── Price card hover ──────────────────────────────────────────────── */
.price-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(22,22,22,0.13);
}

/* ── Testimonial section ───────────────────────────────────────────── */
.testimonial-section {
  padding: clamp(54px, 7vw, 88px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  scroll-margin-top: 104px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%),
    #202020;
  color: #fff;
}
.testimonial-section .eyebrow { color: var(--gold); }
.testimonial-section h2 { color: #fff; }

.testimonial-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto 30px;
}

.testimonial-header .section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.testimonial-nav {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.testimonial-nav span {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-1px);
}

.testimonial-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.testimonial-slider {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 0 8px;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 6px;
}
.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: clamp(304px, 24vw, 340px);
  padding: clamp(24px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  transition: background 200ms;
}
.testimonial-card:hover { background: rgba(255, 255, 255, 0.095); }
.quote-mark {
  display: block;
  width: fit-content;
  min-height: 44px;
  color: #fff;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 0.75;
}
.stars {
  color: #ffc928;
  font-size: 1.08rem;
  letter-spacing: 2px;
  margin-top: 6px;
}
.testimonial-card p {
  color: #f1eee8;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 700;
  line-height: 1.52;
  margin: 0;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 0;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.94rem; color: #fff; }
.reviewer span { font-size: 0.8rem; color: #9c9890; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.testimonial-dots button.active {
  width: 32px;
  background: #fff;
}

/* ── Hours badge in contact ────────────────────────────────────────── */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  color: #15803d;
  font-size: 0.82rem;
  font-weight: 800;
  width: fit-content;
}

/* ── Footer improvements ───────────────────────────────────────────── */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.footer-brand { display: grid; gap: 3px; }
.footer-sub { font-size: 0.78rem; color: var(--muted); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-size: 0.86rem;
  font-weight: 700;
}
.footer-nav a:hover { color: var(--red); }

/* ── Vehicle Detail Page ─────────────────────────────────────────── */
.vehicle-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 76px;
  align-items: start;
}

.detail-image-wrapper {
  background: var(--surface-soft);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
}

.detail-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.detail-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  margin: 0;
}

.detail-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}

.spec-item svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
}

.detail-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-article h2 {
  font-size: 1.25rem;
  margin: 0 0 8px 0;
}

.detail-article p {
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.thank-you-section {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 160px 24px 96px;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.08), rgba(255, 255, 255, 0)),
    var(--surface);
}

.thank-you-content {
  width: min(100%, 720px);
  text-align: center;
}

.thank-you-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 184, 93, 0.12);
  color: #118642;
  font-size: 0.88rem;
  font-weight: 800;
}

.thank-you-content h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.thank-you-content p {
  max-width: 580px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.detail-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.1rem;
  gap: 10px;
}

.detail-cta img {
  width: 24px;
  height: 24px;
}

.package-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.package-link:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.28);
  outline-offset: 4px;
}

.tour-detail-page {
  background: #fff;
}

.tour-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 78px);
  margin-top: 76px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 34%),
    var(--surface-soft);
}

.tour-hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  max-width: 720px;
}

.tour-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.tour-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.tour-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tour-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tour-media-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.tour-media-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
}

.tour-price-panel {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: #fff;
  background: var(--black);
  border-radius: 8px;
}

.tour-price-panel small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.tour-price-panel strong {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.tour-main-card,
.tour-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.tour-main-card {
  display: grid;
  gap: 34px;
  padding: clamp(24px, 4vw, 38px);
}

.tour-main-card h2,
.tour-side-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.tour-main-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.itinerary-list {
  display: grid;
  gap: 18px;
}

.itinerary-day {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(244, 242, 236, 0.6);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.itinerary-day h3 {
  margin: 0;
  font-size: 1.08rem;
}

.tour-check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tour-check-list li {
  display: flex;
  gap: 10px;
  color: #46505f;
  line-height: 1.55;
}

.tour-check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.55em;
  background: var(--red);
  border-radius: 50%;
  flex: 0 0 auto;
}

.tour-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tour-side-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 24px;
}

.tour-side-card .primary-button {
  justify-content: center;
  width: 100%;
}

.tour-meta-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tour-meta-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.tour-meta-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-meta-list strong {
  font-size: 1rem;
}

.tour-related {
  display: grid;
  gap: 10px;
}

.tour-related a {
  display: block;
  padding: 12px;
  color: var(--black);
  background: rgba(244, 242, 236, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.tour-related a:hover {
  border-color: rgba(215, 25, 32, 0.28);
  color: var(--red);
}

/* ── Responsive updates ────────────────────────────────────────────── */
@media (max-width: 1120px) {
  .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
  }

  .package-card,
  .package-card:nth-child(4),
  .package-card:nth-child(5) {
    grid-column: auto;
  }
}

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

  .hero, .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }

  .tour-hero,
  .tour-detail-grid {
    grid-template-columns: 1fr;
  }

  .tour-hero {
    margin-top: 68px;
  }

  .tour-side-card {
    position: relative;
    top: 0;
  }

  .testimonial-header {
    align-items: flex-start;
  }

  .testimonial-card {
    flex-basis: min(74vw, 420px);
    min-height: 310px;
  }

  .service-grid,
  .process-grid,
  .price-grid,
  .package-grid,
  .faq-grid,
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .vehicle-detail-section { grid-template-columns: 1fr; margin-top: 24px; padding-top: 24px; }
  .detail-image-wrapper { position: relative; top: 0; padding: 20px; }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 78px;
  }

  .section,
  .process-section,
  .fleet-section,
  .area-section,
  .package-section,
  .faq-section,
  .contact-section,
  .testimonial-section {
    scroll-margin-top: 78px;
  }

  .site-header { min-height: 68px; padding-inline: 14px; }
  .brand-logo { width: 140px; max-height: 48px; }
  .header-action { display: none; }

  .hero-actions,
  .quick-list,
  .service-grid,
  .process-grid,
  .faq-grid,
  .testimonial-grid { grid-template-columns: 1fr; }

  .service-card { min-height: auto; padding: 22px; }
  .service-card-header { margin-bottom: 18px; }
  .service-card h3 { min-height: 0; }

  .testimonial-header {
    display: grid;
  }

  .testimonial-controls {
    margin-bottom: 0;
  }

  .testimonial-card {
    flex-basis: 86vw;
    min-height: 260px;
    padding: 24px 22px;
  }

  .quote-mark {
    min-height: 38px;
    font-size: 3.9rem;
  }

  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .price-card { padding: 10px; gap: 8px; min-height: 180px; }
  .price-card h3 { font-size: 0.82rem; }
  .price-card dl { gap: 6px; }
  .price-card dt { font-size: 0.64rem; }
  .price-card dd { font-size: 0.78rem; }
  .price-card .text-button { font-size: 0.7rem; min-height: 32px; padding: 4px 8px; }
  .price-card .vehicle-type { font-size: 0.6rem; padding: 3px 7px; }
  .vehicle-photo { aspect-ratio: 1 / 1; }

  .package-section {
    padding-inline: 12px;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .package-card {
    grid-column: auto;
    min-width: 0;
    box-shadow: 0 10px 24px rgba(22, 22, 22, 0.07);
  }

  .package-card:nth-child(4),
  .package-card:nth-child(5) {
    grid-column: auto;
  }

  .package-photo {
    aspect-ratio: 4 / 3;
  }

  .package-body {
    gap: 8px;
    padding: 10px;
  }

  .package-card h3 {
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .package-features {
    gap: 6px;
  }

  .package-features li {
    gap: 5px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .package-features svg {
    width: 10px;
    height: 10px;
    padding: 3px;
  }

  .package-action {
    padding: 10px;
  }

  .package-card .primary-button {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .package-card .primary-button img {
    width: 15px;
    height: 15px;
  }

  .package-price small {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .package-price strong {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .package-price strong span {
    display: block;
    font-size: 0.66rem;
  }

  .tour-inclusion-grid {
    grid-template-columns: 1fr;
  }

  .tour-hero-actions {
    display: grid;
  }

  .hero-actions { display: grid; }

  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 6px 16px; }
}

/* AI assistant */
.ai-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 31;
  font-family: inherit;
}

.ai-assistant-toggle {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 8px 15px 8px 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(16, 16, 16, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-assistant-toggle span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.ai-assistant-toggle strong {
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

.ai-assistant-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.34);
}

.ai-assistant-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  width: min(360px, calc(100vw - 28px));
  max-height: min(560px, calc(100vh - 126px));
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(16, 16, 16, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 180ms ease, transform 180ms ease;
}

.ai-assistant.open .ai-assistant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: var(--black);
}

.ai-assistant-header div {
  display: grid;
  gap: 2px;
}

.ai-assistant-header strong {
  font-size: 1rem;
  line-height: 1.1;
}

.ai-assistant-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.ai-assistant-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.ai-assistant-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  overflow-y: auto;
  padding: 12px;
  background: #f8f7f2;
}

.ai-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  white-space: normal;
}

.ai-message.assistant {
  color: #24231f;
  background: #fff;
  border: 1px solid var(--line);
  border-top-left-radius: 4px;
}

.ai-message.user {
  justify-self: end;
  color: #fff;
  background: var(--red);
  border-top-right-radius: 4px;
}

.ai-assistant.loading .ai-assistant-messages::after {
  width: fit-content;
  padding: 8px 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  content: "AI sedang menyusun jawaban...";
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-assistant-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.ai-assistant-quick button {
  min-height: 32px;
  padding: 7px 10px;
  color: var(--red);
  background: #fff5f5;
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  align-items: end;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.ai-assistant-form textarea {
  width: 100%;
  max-height: 76px;
  min-height: 44px;
  resize: none;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.35;
}

.ai-assistant-form textarea:focus {
  outline: 3px solid rgba(215, 25, 32, 0.16);
  border-color: rgba(215, 25, 32, 0.36);
}

.ai-assistant-form button {
  min-height: 44px;
  padding: 0 12px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.ai-assistant-form button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.ai-assistant-wa {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 12px 12px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #16a34a);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.ai-assistant-wa:disabled {
  opacity: 0.64;
  cursor: not-allowed;
}

.ai-assistant-status {
  display: block;
  min-height: 18px;
  margin: -6px 12px 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.ai-assistant-status[data-type="success"] {
  color: #15803d;
}

.ai-assistant-status[data-type="warning"] {
  color: #b45309;
}

@media (max-width: 620px) {
  .ai-assistant {
    right: 14px;
    bottom: 18px;
  }

  .ai-assistant-panel {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 120px);
  }

  .ai-assistant-toggle {
    min-height: 48px;
    padding-right: 13px;
  }

  .ai-assistant-toggle span {
    width: 32px;
    height: 32px;
  }
}
