:root {
  --green-900: #062d27;
  --green-800: #0a4238;
  --green-700: #14624e;
  --gold-600: #c78f2e;
  --gold-500: #e3b24a;
  --cream-100: #fbf7ef;
  --cream-200: #efe6d7;
  --ink: #101513;
  --muted: #64716c;
  --line: #d9ded8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 21, 19, 0.18);
  --header-h: 76px;
  --container: 1180px;
  --page-pad: 40px;
  --hero-edge: 40px;
  --hero-left: 72px;
  --section-y: 88px;
}

* {
  box-sizing: border-box;
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream-100);
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
.hero-content,
.section-inner {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding: 0 var(--page-pad);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 10px 30px rgba(16, 21, 19, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.header-cta,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 210px;
}

.brand-mark,
.floating-wa {
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--green-900);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 28px;
  color: currentColor;
  font-size: 0.94rem;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.header-cta,
.button,
.text-link,
.contact-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-cta {
  display: none;
  width: 132px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.header-cta i,
.header-cta svg {
  display: none;
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(20, 98, 78, 0.24);
  background: var(--green-800);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 68% center;
  filter: brightness(1.38) contrast(1.12) saturate(1.1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 45, 39, 0.98) 0%, rgba(6, 45, 39, 0.94) 32%, rgba(6, 45, 39, 0.58) 45%, rgba(6, 45, 39, 0.1) 56%, rgba(6, 45, 39, 0) 68%),
    linear-gradient(180deg, rgba(6, 45, 39, 0.18) 0%, rgba(6, 45, 39, 0) 40%, rgba(6, 45, 39, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--hero-edge)) var(--hero-edge) var(--hero-edge) var(--hero-left);
}

.hero-panel {
  max-width: 620px;
}

.hero-vehicle-focus {
  position: relative;
  min-height: clamp(380px, 58svh, 580px);
}

.hero-vehicle-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 58% 46%, rgba(255, 214, 122, 0.2), rgba(255, 214, 122, 0) 38%);
  pointer-events: none;
}

.vehicle-chip {
  position: absolute;
  z-index: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(227, 178, 74, 0.54);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(6, 45, 39, 0.76);
  box-shadow: 0 14px 34px rgba(6, 45, 39, 0.22);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.vehicle-chip svg {
  color: var(--gold-500);
}

.safety-chip {
  top: 8%;
  right: 0;
}

.unit-chip {
  left: 8%;
  bottom: 5%;
  background: rgba(227, 178, 74, 0.94);
  color: var(--green-900);
}

.unit-chip svg {
  color: var(--green-900);
}

.eyebrow,
.section-kicker,
.package-label,
.footer-kicker {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: 4.15rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-main {
  max-width: 620px;
}

.hero-title-accent {
  margin-top: 12px;
  color: var(--gold-500);
  font-size: 0.48em;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.6;
}

.hero-price {
  width: min(100%, 430px);
  display: grid;
  gap: 4px;
  margin-top: 22px;
  border: 1px solid rgba(227, 178, 74, 0.7);
  border-radius: 8px;
  padding: 15px 20px;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--gold-500), #f2c766);
  box-shadow: 0 18px 40px rgba(6, 45, 39, 0.22);
}

.hero-price span,
.hero-price small {
  font-weight: 900;
  text-transform: uppercase;
}

.hero-price span {
  font-size: 0.78rem;
}

.hero-price strong {
  font-size: 2rem;
  line-height: 1;
}

.hero-price small {
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  min-width: 174px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary,
.button-form {
  background: var(--gold-500);
  color: var(--green-900);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 14px;
  max-width: 570px;
  margin: 24px 0 0;
}

.hero-stats div {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 16px;
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.hero-stats dd {
  margin: 5px 0 0;
  font-size: 1.18rem;
  font-weight: 900;
}

.section {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
}

.quick-book,
.service-band,
.footer {
  padding: var(--section-y) 0;
}

.section-inner {
  max-width: var(--container);
  padding: 0 var(--page-pad);
  margin: 0 auto;
}

#armada {
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
}

#armada .section-inner {
  width: 100%;
  padding: 0 var(--hero-edge) 0 var(--hero-left);
}

/* Make content edges match hero for main sections */
#fasilitas .section-inner,
#paket .section-inner,
#prioritas .section-inner,
#galeri .section-inner,
#faq .section-inner {
  padding: 0 var(--hero-edge) 0 var(--hero-left);
}

/* Footer uses same inner padding to align with hero */
.footer .section-inner {
  padding: 0 var(--hero-edge) 0 var(--hero-left);
}

.quick-book {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.booking-layout,
.fleet-layout,
.service-layout,
.proof-layout,
.footer-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.booking-layout {
  padding-top: 32px;
  align-items: start;
}

.booking-layout > * {
  align-self: start;
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(150px, 0.9fr) minmax(170px, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  align-items: stretch;
  margin-top: 8px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form .button-form {
  grid-column: 2 / 4;
  grid-row: 2;
  justify-self: end;
  width: 100%;
  min-width: auto;
}

.booking-layout > *,
.fleet-layout > *,
.service-layout > *,
.proof-layout > *,
.footer-layout > *,
.faq-layout > *,
.amenity-grid > *,
.package-grid > *,
.proof-grid > *,
.contact-grid > * {
  min-width: 0;
}

h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  line-height: 1.7;
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(150px, 0.9fr) minmax(170px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--cream-100);
}

.button-form {
  min-height: 52px;
  border-radius: 8px;
  white-space: nowrap;
}

.copy-block p {
  max-width: 560px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg,
.text-link svg,
.contact-grid svg,
.amenity-grid svg,
.proof-grid svg {
  flex: 0 0 auto;
}

.check-list svg {
  color: var(--green-700);
}


.fleet-heading {
  max-width: min(720px, 100%);
  margin-bottom: 28px;
}

.fleet-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fleet-image-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--green-900);
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
}

.fleet-image-card img {
  width: 100%;
  height: clamp(220px, 34svh, 320px);
  object-fit: cover;
}

.fleet-image-card p {
  margin: 18px;
  font-size: 1rem;
  font-weight: 800;
}

.carousel-dots {
  display: none;
}

/* Dots specifically for fasilitas (amenities) */
.carousel-dots--amenities {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.carousel-dots--amenities button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.carousel-dots--amenities button.is-active {
  background: var(--gold-500);
  transform: scale(1.15);
}

@media (max-width: 760px) {
  /* show dots on mobile for amenities */
  .carousel-dots--amenities {
    display: flex;
  }
}

.amenities {
  background: var(--white);
}

#fasilitas {
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.amenity-grid,
.package-grid,
.proof-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.amenity-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.amenity-grid article,
.proof-grid article,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.amenity-grid article {
  min-height: 220px;
  padding: 26px;
}

.amenity-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--gold-600);
}

.amenity-grid p,
.proof-grid p,
.package-card p,
.faq-list p,
.footer p,
.service-layout p {
  color: var(--muted);
}

.service-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 45, 39, 0.98), rgba(20, 98, 78, 0.96)),
    var(--green-900);
}

.service-layout p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
}

.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.route-list span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.package-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.package-card {
  min-height: 320px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.package-card > .text-link {
  margin-top: auto;
}

.package-card.featured {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}

.package-card h3 {
  margin-top: 10px;
  font-size: 1.7rem;
}

.package-card p {
  margin: 18px 0 28px;
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  justify-content: flex-start;
  color: var(--green-700);
  font-weight: 900;
}

.featured .text-link {
  color: var(--gold-500);
}

#paket {
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
  align-content: center;
  gap: clamp(28px, 5svh, 48px);
}

#paket .section-heading {
  margin-bottom: clamp(22px, 3svh, 32px);
}

#paket .booking-layout {
  margin-top: clamp(28px, 5svh, 48px);
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 4svh, 40px);
}

#paket .booking-layout h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.proof {
  background: var(--white);
}

#prioritas {
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
}

.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.proof-grid article {
  min-height: 190px;
  padding: 24px;
}

.proof-grid svg {
  margin-bottom: 20px;
  color: var(--green-700);
}

.gallery {
  background: var(--white);
}

#galeri {
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
}

.gallery-inner {
  display: grid;
  gap: 32px;
}

.gallery-header {
  max-width: 720px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  grid-auto-rows: clamp(220px, 28svh, 280px);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--green-900);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(16, 21, 19, 0.24);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--video {
  position: relative;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.gallery-video-card {
  position: relative;
  min-height: clamp(220px, 30svh, 320px);
  overflow: hidden;
  border-radius: 16px;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.gallery-video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--green-900);
  object-fit: cover;
}

.gallery-video-card:hover img,
.gallery-video-card:hover video {
  transform: scale(1.04);
}

.gallery-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 45, 39, 0.6);
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-item--video:hover .gallery-play {
  opacity: 1;
}

.gallery-video-card .gallery-play {
  opacity: 1;
  background: rgba(6, 45, 39, 0.36);
}

.gallery-video-card .gallery-label {
  top: 0;
  bottom: auto;
  background: linear-gradient(180deg, rgba(6, 45, 39, 0.92), transparent);
  pointer-events: none;
}

.gallery-play i {
  width: 64px;
  height: 64px;
  color: var(--gold-500);
  stroke-width: 1.5;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(6, 45, 39, 0.96));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.faq-layout {
  align-items: start;
}

#faq {
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.footer {
  padding: calc(var(--header-h) + var(--hero-edge)) 0 var(--hero-edge) 0;
  color: var(--white);
  background: var(--green-900);
}

.footer h2 {
  max-width: 520px;
}

.footer .service-layout {
  margin-bottom: clamp(34px, 6svh, 72px);
}

.footer p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.contact-grid a {
  min-height: 94px;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-grid strong {
  display: block;
  margin-bottom: 4px;
}

.contact-grid svg {
  color: var(--gold-500);
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #24b35b;
  box-shadow: 0 18px 40px rgba(16, 21, 19, 0.22);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-wa svg + .fallback-icon {
  display: none;
}

.fallback-icon {
  font-size: 0.82rem;
  font-weight: 900;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 1060px) {
  :root {
    --page-pad: 28px;
    --hero-edge: 28px;
    --hero-left: 44px;
    --section-y: 72px;
  }

  .site-header {
    gap: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 3.7rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
    gap: 24px;
  }

  .hero-vehicle-focus {
    min-height: clamp(330px, 48svh, 480px);
  }

  .booking-layout,
  .fleet-layout,
  .service-layout,
  .proof-layout,
  .footer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-form {
    grid-column: 1 / -1;
  }

  .route-list {
    justify-content: flex-start;
  }

  .package-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
    --page-pad: 18px;
    --hero-edge: 28px;
    --hero-left: 18px;
    --section-y: 62px;
  }

  .site-header {
    min-height: var(--header-h);
  }

  .brand {
    min-width: auto;
  }

  .brand small,
  .header-cta span {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    align-items: start;
  }

  .hero-image {
    object-position: 72% top;
    filter: brightness(1.32) contrast(1.1) saturate(1.06);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 45, 39, 0.54), rgba(6, 45, 39, 0.08)),
      linear-gradient(180deg, rgba(6, 45, 39, 0.72) 0%, rgba(6, 45, 39, 0.4) 42%, rgba(6, 45, 39, 0.88) 72%, rgba(6, 45, 39, 0.98) 100%);
  }

  .hero-content {
    display: block;
    padding-top: calc(var(--header-h) + 18px);
    padding-bottom: 48px;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-vehicle-focus {
    display: none;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .hero-title-accent {
    margin-top: 8px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-price {
    margin-top: 22px;
    padding: 14px 16px;
  }

  .hero-price strong {
    font-size: 1.75rem;
  }

  .hero-actions,
  .hero-stats {
    gap: 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    margin-top: 30px;
  }

  .hero-stats dd {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .section,
  .quick-book,
  .service-band {
    padding: clamp(34px, 5svh, var(--section-y)) 0;
  }

  .section {
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    align-items: start;
  }

  #armada,
  #fasilitas,
  #paket,
  #prioritas,
  #galeri,
  #faq,
  .footer {
    padding: calc(var(--header-h) + 18px) 0 48px 0;
  }

  #armada .section-inner {
    display: grid;
    align-content: start;
    overflow: hidden;
  }

  .section-heading,
  .fleet-heading {
    width: 100%;
    max-width: 100%;
  }

  .section-heading h2,
  .section-heading p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .fleet-heading {
    margin-bottom: clamp(16px, 2.8svh, 22px);
  }

  #armada .section-kicker {
    margin-bottom: 8px;
  }

  #armada-title {
    font-size: clamp(1.62rem, 7vw, 2rem);
    line-height: 1.12;
  }

  #armada .fleet-heading p {
    margin: 16px 0 0;
    font-size: clamp(0.94rem, 3.9vw, 1rem);
    line-height: 1.55;
  }

  h2 {
    font-size: 1.85rem;
  }

  .booking-form,
  .amenity-grid,
  .fleet-banner-grid,
  .fleet-image-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid article {
    min-height: clamp(178px, 27svh, 220px);
  }

  .fleet-media img {
    aspect-ratio: 1 / 1;
  }

  .floating-wa {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
  }

  .floating-wa.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  :root {
    --page-pad: 16px;
    --hero-edge: 22px;
    --hero-left: 16px;
    --section-y: 54px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-copy {
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-stats {
    margin-top: 22px;
  }

  .button {
    min-width: 0;
    padding: 0 16px;
  }

  .hero-stats div {
    padding-top: 12px;
  }

  .booking-layout,
  .fleet-layout,
  .service-layout,
  .proof-layout,
  .footer-layout,
  .faq-layout {
    gap: 30px;
  }

  .amenity-grid,
  .package-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid article,
  .package-card,
  .proof-grid article {
    min-height: auto;
    padding: 22px;
  }

  .route-list span {
    min-height: 40px;
    padding: 0 14px;
  }

  .contact-grid a {
    min-height: 82px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--large {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .fleet-image-grid,
  .amenity-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, min(84vw, 360px));
    grid-auto-rows: auto;
    gap: 20px;
    margin-right: calc(var(--page-pad) * -1);
    padding: 6px calc(var(--page-pad) + 14px) 24px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: inline mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .amenity-grid {
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-auto-columns: minmax(270px, min(86vw, 380px));
    gap: 14px 20px;
  }

  .amenity-grid article {
    min-height: clamp(132px, 19svh, 164px);
    padding: 18px;
  }

  .amenity-grid svg {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
  }

  .amenity-grid h3 {
    font-size: 1rem;
  }

  .amenity-grid p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .fleet-image-grid {
    padding-bottom: 18px;
  }

  .fleet-image-grid::-webkit-scrollbar,
  .amenity-grid::-webkit-scrollbar,
  .package-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .fleet-image-grid > *,
  .amenity-grid > *,
  .package-grid > *,
  .gallery-grid > * {
    scroll-snap-align: start;
  }

  .fleet-image-card {
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(16, 21, 19, 0.14);
  }

  .fleet-image-card img {
    height: clamp(150px, 25svh, 210px);
    max-height: none;
    aspect-ratio: auto;
  }

  .fleet-image-card p {
    min-height: clamp(60px, 9svh, 76px);
    display: flex;
    align-items: center;
    margin: 0;
    padding: 16px 18px;
    font-size: 1.03rem;
    line-height: 1.35;
  }

  .package-card {
    min-height: auto;
    padding: 24px;
  }

  .package-card h3 {
    font-size: 1.42rem;
    line-height: 1.16;
  }

  .package-card p {
    margin: 14px 0 24px;
    line-height: 1.55;
  }

  #paket {
    align-content: start;
    padding-top: clamp(34px, 5svh, 46px);
    padding-bottom: clamp(42px, 6svh, 58px);
  }

  #paket > .section-inner {
    overflow: hidden;
  }

  #paket .section-heading {
    margin-bottom: 18px;
  }

  #paket .section-kicker {
    margin-bottom: 8px;
  }

  #paket-title {
    font-size: clamp(1.72rem, 7vw, 2rem);
    line-height: 1.12;
  }

  #paket .package-grid {
    padding-top: 2px;
    padding-bottom: 18px;
  }

  .carousel-dots--packages {
    margin-top: 2px;
    margin-bottom: 24px;
  }

  #paket .booking-layout {
    margin-top: 0;
    padding-top: 24px;
    gap: 18px;
  }

  #paket .booking-layout h2 {
    font-size: clamp(1.5rem, 6vw, 1.78rem);
    line-height: 1.15;
  }

  #paket .booking-layout .section-kicker {
    margin-bottom: 8px;
  }

  #paket .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
  }

  #paket .booking-form .button-form {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  #paket .booking-form input,
  #paket .booking-form select,
  #paket .button-form {
    min-height: 48px;
  }

  .gallery-grid {
    grid-auto-rows: clamp(220px, 34svh, 300px);
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .gallery-video-card {
    min-height: clamp(190px, 30svh, 240px);
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .carousel-dots--amenities {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    margin-bottom: 4px;
  }

  .carousel-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(6, 45, 39, 0.24);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
  }

  .carousel-dots--amenities button {
    width: 10px;
    height: 10px;
    background: rgba(20, 98, 78, 0.42);
  }

  .carousel-dots button.is-active {
    width: 24px;
    background: var(--gold-500);
  }

  .carousel-dots--amenities button.is-active {
    width: 30px;
    background: var(--green-700);
  }

  .gallery-item,
  .gallery-item--large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .hero-stats dt {
    font-size: 0.78rem;
  }

  .hero-stats dd {
    font-size: 0.92rem;
  }

  .floating-wa {
    width: 50px;
    height: 50px;
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  .hero {
    min-height: 100vh;
    align-items: start;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + var(--hero-edge));
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-stats {
    margin-top: 28px;
  }
}

@media (max-height: 700px) and (max-width: 760px) {
  .hero-content {
    padding-top: calc(var(--header-h) + var(--hero-edge));
    padding-bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 8px;
  }

  .hero-copy {
    margin-top: 18px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    min-height: 42px;
  }

  .hero-stats {
    margin-top: 20px;
  }
}

/* Final responsive layout pass */
.section {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding: clamp(58px, 8svh, 92px) 0;
}

#armada,
#fasilitas,
#paket,
#prioritas,
#galeri,
#faq {
  padding: clamp(58px, 8svh, 92px) 0;
}

#paket {
  gap: 0;
}

.section-inner,
#armada .section-inner,
#fasilitas .section-inner,
#paket .section-inner,
#prioritas .section-inner,
#galeri .section-inner,
#faq .section-inner,
.footer .section-inner {
  width: min(100%, var(--container));
  max-width: var(--container);
  padding: 0 var(--page-pad);
}

.section-heading {
  margin-bottom: clamp(24px, 4svh, 36px);
}

.fleet-heading {
  margin-bottom: clamp(22px, 3.5svh, 34px);
}

.fleet-image-grid,
.amenity-grid,
.package-grid,
.gallery-grid,
.gallery-video-grid {
  gap: clamp(16px, 2vw, 24px);
}

#paket .section-heading {
  margin-bottom: clamp(18px, 3svh, 28px);
}

#paket .package-grid {
  gap: clamp(16px, 1.7vw, 22px);
}

#paket .package-card {
  min-height: clamp(225px, 28svh, 258px);
  padding: clamp(18px, 1.6vw, 22px);
}

#paket .package-card h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

#paket .package-card p {
  margin: 12px 0 16px;
  line-height: 1.55;
}

#paket .package-label {
  margin-bottom: 8px;
  font-size: 0.72rem;
}

#paket .package-card .text-link {
  min-height: 36px;
}

.fleet-image-card,
.gallery-item,
.gallery-video-card {
  border-radius: 14px;
}

#paket .booking-layout {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: clamp(12px, 2.1svh, 22px) auto 0;
  padding: clamp(24px, 3.4svh, 34px) var(--page-pad) 0;
}

.carousel-dots,
.carousel-dots--amenities {
  display: none;
}

@media (min-width: 1280px) {
  :root {
    --page-pad: 44px;
  }

  .hero-content {
    max-width: 1320px;
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }
}

@media (max-width: 980px) {
  .section {
    min-height: auto;
    align-items: start;
  }

  #armada,
  #fasilitas,
  #paket,
  #prioritas,
  #galeri,
  #faq {
    padding: clamp(48px, 7svh, 72px) 0;
  }

  .fleet-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
    --hero-edge: 22px;
    --hero-left: 18px;
  }

  .hero-content {
    padding: calc(var(--header-h) + 16px) var(--page-pad) 36px;
  }

  .section {
    min-height: auto;
    padding: clamp(38px, 6svh, 56px) 0;
  }

  #armada,
  #fasilitas,
  #paket,
  #prioritas,
  #galeri,
  #faq {
    padding: clamp(38px, 6svh, 56px) 0;
  }

  .section-inner,
  #armada .section-inner,
  #fasilitas .section-inner,
  #paket .section-inner,
  #prioritas .section-inner,
  #galeri .section-inner,
  #faq .section-inner,
  .footer .section-inner {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  #armada .section-inner,
  #fasilitas .section-inner,
  #paket .section-inner,
  #galeri .section-inner {
    overflow: hidden;
  }

  .section-heading,
  .fleet-heading,
  #paket .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .gallery-header h2,
  #armada-title,
  #paket-title {
    font-size: clamp(1.68rem, 7vw, 2.05rem);
    line-height: 1.12;
  }

  .section-heading p,
  .fleet-heading p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .fleet-image-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, calc(100vw - (var(--page-pad) * 2) - 28px));
    grid-auto-rows: auto;
    gap: 18px;
    margin-right: calc(var(--page-pad) * -1);
    padding: 6px var(--page-pad) 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .fleet-image-grid::-webkit-scrollbar,
  .package-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .amenity-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-auto-columns: minmax(248px, calc(100vw - (var(--page-pad) * 2) - 28px));
    gap: 14px 18px;
    margin-right: calc(var(--page-pad) * -1);
    padding: 6px var(--page-pad) 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .amenity-grid::-webkit-scrollbar {
    display: none;
  }

  .fleet-image-grid > *,
  .amenity-grid > *,
  .package-grid > *,
  .gallery-grid > * {
    scroll-snap-align: start;
  }

  .fleet-image-card img {
    height: clamp(160px, 27svh, 220px);
  }

  .fleet-image-card p {
    min-height: 66px;
    padding: 16px 18px;
  }

  .amenity-grid article {
    min-height: clamp(128px, 18svh, 160px);
    padding: 18px;
  }

  .package-card {
    min-height: clamp(235px, 34svh, 295px);
    padding: 22px;
  }

  #paket .booking-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 12px;
    padding: 16px var(--page-pad) 0;
  }

  #paket .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #paket .booking-form .button-form {
    grid-column: auto;
    justify-self: stretch;
  }

  .gallery-grid {
    grid-auto-rows: clamp(210px, 32svh, 280px);
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .gallery-video-card {
    min-height: clamp(190px, 28svh, 250px);
  }

  .carousel-dots,
  .carousel-dots--amenities,
  .carousel-dots--fleet,
  .carousel-dots--packages,
  .carousel-dots--gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 18px;
    margin: 10px 0 22px;
  }

  .carousel-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(6, 45, 39, 0.26);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
  }

  .carousel-dots button.is-active {
    width: 26px;
    background: var(--gold-500);
  }

  .carousel-dots--amenities button.is-active {
    background: var(--green-700);
  }
}

@media (max-width: 480px) {
  :root {
    --page-pad: 16px;
  }

  .site-header {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    gap: 12px;
  }

  .fleet-image-grid,
  .package-grid,
  .gallery-grid {
    grid-auto-columns: minmax(244px, calc(100vw - (var(--page-pad) * 2) - 24px));
  }

  .amenity-grid {
    grid-auto-columns: minmax(244px, calc(100vw - (var(--page-pad) * 2) - 24px));
  }
}

/* Gallery: one carousel row for photos and one for videos */
#galeri .section-inner {
  overflow: hidden;
}

#galeri .gallery-inner {
  gap: clamp(18px, 3svh, 30px);
}

#galeri .gallery-row-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--green-800);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

#galeri .gallery-row-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

#galeri .gallery-row-label--video {
  margin-top: clamp(10px, 2svh, 18px);
}

#galeri .gallery-grid,
#galeri .gallery-video-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  gap: clamp(14px, 1.8vw, 20px);
  margin-right: calc(var(--page-pad) * -1);
  padding: 4px var(--page-pad) 14px 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--page-pad);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

#galeri .gallery-grid {
  grid-auto-columns: minmax(240px, min(28vw, 330px));
  grid-auto-rows: clamp(190px, 25svh, 260px);
}

#galeri .gallery-video-grid {
  grid-auto-columns: minmax(320px, min(42vw, 500px));
  grid-auto-rows: clamp(210px, 28svh, 300px);
  margin-top: 0;
}

#galeri .gallery-grid::-webkit-scrollbar,
#galeri .gallery-video-grid::-webkit-scrollbar {
  display: none;
}

#galeri .gallery-grid > *,
#galeri .gallery-video-grid > * {
  scroll-snap-align: start;
}

#galeri .gallery-item,
#galeri .gallery-item--large,
#galeri .gallery-video-card {
  grid-column: auto;
  grid-row: auto;
  height: 100%;
  min-height: 0;
}

#galeri .carousel-dots--gallery,
#galeri .carousel-dots--videos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 18px;
  margin: 4px 0 18px;
}

#galeri .carousel-dots--videos {
  margin-bottom: 0;
}

#galeri .carousel-dots--gallery button,
#galeri .carousel-dots--videos button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(6, 45, 39, 0.26);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

#galeri .carousel-dots--gallery button.is-active,
#galeri .carousel-dots--videos button.is-active {
  width: 26px;
  background: var(--gold-500);
}

@media (max-width: 760px) {
  #galeri .gallery-inner {
    gap: 16px;
  }

  #galeri .gallery-grid,
  #galeri .gallery-video-grid {
    gap: 16px;
    padding-bottom: 14px;
  }

  #galeri .gallery-grid {
    grid-auto-columns: minmax(244px, calc(100vw - (var(--page-pad) * 2) - 24px));
    grid-auto-rows: clamp(210px, 32svh, 280px);
  }

  #galeri .gallery-video-grid {
    grid-auto-columns: minmax(280px, calc(100vw - (var(--page-pad) * 2) - 24px));
    grid-auto-rows: clamp(190px, 28svh, 240px);
  }

  #galeri .carousel-dots--gallery,
  #galeri .carousel-dots--videos {
    margin-top: 2px;
    margin-bottom: 18px;
  }

  #galeri .carousel-dots--videos {
    margin-bottom: 0;
  }
}

/* Armada portrait cards */
#armada .fleet-image-grid {
  grid-template-columns: repeat(3, minmax(220px, 280px));
  justify-content: center;
  align-items: stretch;
}

#armada .fleet-image-card {
  aspect-ratio: 3 / 4.55;
  grid-template-rows: minmax(0, 1fr) auto;
  border-radius: 14px;
  background: var(--green-900);
}

#armada .fleet-image-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
  background: #05271f;
}

#armada .fleet-image-card p {
  min-height: 68px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 16px 18px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  #armada .fleet-image-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, min(72vw, 290px));
  }

  #armada .fleet-image-card {
    aspect-ratio: 3 / 4.65;
  }

  #armada .fleet-image-card p {
    min-height: 64px;
    padding: 14px 16px;
  }
}

/* Android portrait baseline: 1080 x 1920 and smaller portrait screens */
@media (orientation: portrait) and (max-width: 1080px) {
  :root {
    --header-h: 68px;
    --page-pad: clamp(16px, 4vw, 34px);
    --hero-edge: clamp(22px, 5vw, 46px);
    --hero-left: var(--page-pad);
    --section-y: clamp(54px, 7svh, 92px);
  }

  .site-header {
    min-height: var(--header-h);
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .brand {
    min-width: auto;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    align-items: start;
  }

  .hero-content {
    display: block;
    padding: calc(var(--header-h) + clamp(16px, 2.2svh, 34px)) var(--page-pad) clamp(38px, 6svh, 76px);
  }

  .hero-panel {
    max-width: min(100%, 720px);
  }

  .hero-vehicle-focus {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 5.8rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: 720px;
    font-size: clamp(1rem, 2.6vw, 1.5rem);
  }

  .hero-price,
  .hero-actions {
    width: min(100%, 620px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
  }

  .button {
    width: 100%;
  }

  .section {
    min-height: auto;
    align-items: start;
    padding: clamp(42px, 6svh, 92px) 0;
  }

  #armada,
  #fasilitas,
  #paket,
  #prioritas,
  #galeri,
  #faq {
    padding: clamp(42px, 6svh, 92px) 0;
  }

  .section-inner,
  #armada .section-inner,
  #fasilitas .section-inner,
  #paket .section-inner,
  #prioritas .section-inner,
  #galeri .section-inner,
  #faq .section-inner,
  .footer .section-inner {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  #armada .section-inner,
  #fasilitas .section-inner,
  #paket .section-inner,
  #galeri .section-inner {
    overflow: hidden;
  }

  .booking-layout,
  .fleet-layout,
  .service-layout,
  .proof-layout,
  .footer-layout,
  .faq-layout,
  #paket .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-form,
  #paket .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button-form,
  #paket .booking-form .button-form {
    grid-column: auto;
    justify-self: stretch;
  }

  .fleet-image-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, min(78vw, 480px));
    grid-auto-rows: auto;
    gap: clamp(16px, 3vw, 22px);
    margin-right: calc(var(--page-pad) * -1);
    padding: 6px var(--page-pad) 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .amenity-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-auto-columns: minmax(260px, min(82vw, 500px));
    gap: 14px clamp(16px, 3vw, 22px);
    margin-right: calc(var(--page-pad) * -1);
    padding: 6px var(--page-pad) 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .fleet-image-grid::-webkit-scrollbar,
  .amenity-grid::-webkit-scrollbar,
  .package-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .fleet-image-grid > *,
  .amenity-grid > *,
  .package-grid > *,
  .gallery-grid > * {
    scroll-snap-align: start;
  }

  #armada .fleet-image-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, min(72vw, 420px));
    justify-content: start;
  }

  #armada .fleet-image-card {
    aspect-ratio: 3 / 4.65;
  }

  #galeri .gallery-grid {
    grid-auto-columns: minmax(260px, min(78vw, 480px));
    grid-auto-rows: clamp(210px, 28svh, 360px);
  }

  #galeri .gallery-video-grid {
    grid-auto-columns: minmax(300px, min(84vw, 640px));
    grid-auto-rows: clamp(190px, 28svh, 360px);
  }

  .carousel-dots,
  .carousel-dots--amenities,
  .carousel-dots--fleet,
  .carousel-dots--packages,
  .carousel-dots--gallery,
  .carousel-dots--videos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 18px;
    margin: 10px 0 22px;
  }

  .carousel-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(6, 45, 39, 0.26);
  }

  .carousel-dots button.is-active {
    width: 26px;
    background: var(--gold-500);
  }
}

/* Keep the next section from showing through the mobile fasilitas viewport */
@media (orientation: portrait) and (max-width: 1080px) {
  #fasilitas {
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    overflow: hidden;
    background: var(--white);
  }

  #fasilitas .section-inner {
    min-height: inherit;
    display: grid;
    align-content: start;
  }
}
