:root {
  --ink: #071a24;
  --ink-soft: #173440;
  --cream: #f6f1e7;
  --cream-deep: #e9e0d0;
  --yellow: #f8c62f;
  --yellow-light: #ffde65;
  --teal: #20a998;
  --white: #fffdf8;
  --muted: #597079;
  --line: rgba(7, 26, 36, 0.12);
  --shadow: 0 28px 70px rgba(7, 26, 36, 0.14);
  --radius: 24px;
  --scroll-offset: 118px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --dur-fast: 180ms;
  --dur: 280ms;
  --dur-slow: 520ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(112, 216, 204, 0.22), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(248, 198, 47, 0.18), transparent 28%),
    var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01";
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

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

button,
input,
select {
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 80;
}

.hero,
.section[id],
.site-footer#contact {
  scroll-margin-top: var(--scroll-offset);
}

.topbar {
  background: rgba(7, 26, 36, 0.72);
  color: #d5e0e5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.topbar-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
}

.topbar-left,
.topbar-right,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 198, 47, 0.22);
  background: rgba(248, 198, 47, 0.12);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes topbarMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.topbar-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(213, 224, 229, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-marquee {
  display: none;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d5e0e5;
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.topbar-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-mail:hover {
  color: var(--yellow);
}

.topbar-phone {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(248, 198, 47, 0.35);
  background: rgba(248, 198, 47, 0.95);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(248, 198, 47, 0.18);
}

.topbar-phone:hover {
  color: var(--ink);
  background: #ffd84d;
}

.phone-short {
  display: none;
}

.page-shell {
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
}

.page-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-shell > main,
.page-shell > .site-footer {
  position: relative;
  z-index: 1;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.ambient-one {
  width: 420px;
  height: 420px;
  top: 2%;
  left: -14%;
  background: rgba(112, 216, 204, 0.2);
  animation: floaty 10s ease-in-out infinite;
}

.ambient-two {
  width: 520px;
  height: 520px;
  top: 14%;
  right: -22%;
  background: rgba(248, 198, 47, 0.14);
  animation: floaty 12s ease-in-out infinite reverse;
}

.ambient-three {
  width: 300px;
  height: 300px;
  top: 26%;
  left: 6%;
  background: rgba(32, 169, 152, 0.12);
  animation: floaty 11s ease-in-out infinite;
  animation-delay: -3s;
}

.ambient-four {
  width: 380px;
  height: 380px;
  top: 38%;
  right: -12%;
  background: rgba(112, 216, 204, 0.16);
  animation: floaty 13s ease-in-out infinite reverse;
  animation-delay: -1s;
}

.ambient-five {
  width: 460px;
  height: 460px;
  top: 50%;
  left: -18%;
  background: rgba(248, 198, 47, 0.12);
  animation: floaty 10s ease-in-out infinite;
  animation-delay: -4s;
}

.ambient-six {
  width: 340px;
  height: 340px;
  top: 62%;
  right: -16%;
  background: rgba(32, 169, 152, 0.11);
  animation: floaty 12s ease-in-out infinite reverse;
}

.ambient-seven {
  width: 400px;
  height: 400px;
  top: 74%;
  left: -10%;
  background: rgba(112, 216, 204, 0.14);
  animation: floaty 11s ease-in-out infinite;
  animation-delay: -2s;
}

.ambient-eight {
  width: 480px;
  height: 480px;
  top: 86%;
  right: -20%;
  background: rgba(248, 198, 47, 0.1);
  animation: floaty 14s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.hero::before,
.logo-strip::before,
main > section.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  width: clamp(200px, 38vw, 440px);
  height: clamp(200px, 38vw, 440px);
}

.hero::before {
  top: -8%;
  left: -22%;
  background: rgba(112, 216, 204, 0.16);
  animation: floaty 10s ease-in-out infinite;
}

.logo-strip::before {
  top: 50%;
  right: -28%;
  transform: translateY(-50%);
  background: rgba(248, 198, 47, 0.12);
  animation: floaty 12s ease-in-out infinite reverse;
}

.section.services::before {
  top: 6%;
  right: -18%;
  background: rgba(112, 216, 204, 0.14);
  animation: floaty 11s ease-in-out infinite;
}

.section.pricing::before {
  bottom: 8%;
  left: -20%;
  background: rgba(248, 198, 47, 0.12);
  animation: floaty 13s ease-in-out infinite reverse;
}

.section.packages::before {
  top: 12%;
  left: -22%;
  background: rgba(32, 169, 152, 0.11);
  animation: floaty 10s ease-in-out infinite;
  animation-delay: -2s;
}

.section.routes::before {
  bottom: 4%;
  right: -16%;
  background: rgba(248, 198, 47, 0.11);
  animation: floaty 12s ease-in-out infinite reverse;
}

.section.why::before {
  top: 10%;
  right: -20%;
  background: rgba(112, 216, 204, 0.13);
  animation: floaty 11s ease-in-out infinite;
}

.section.about::before {
  bottom: 6%;
  left: -18%;
  background: rgba(248, 198, 47, 0.1);
  animation: floaty 14s ease-in-out infinite reverse;
}

.section.seo-block::before {
  top: 8%;
  right: -14%;
  background: rgba(32, 169, 152, 0.1);
  animation: floaty 10s ease-in-out infinite;
  animation-delay: -3s;
}

.section.faq::before {
  bottom: 10%;
  left: -16%;
  background: rgba(112, 216, 204, 0.12);
  animation: floaty 12s ease-in-out infinite reverse;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(28px);
  }
}

.hero,
.section,
.logo-strip {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  background: rgba(246, 241, 231, 0.55);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(7, 26, 36, 0.06);
  transition:
    border-color var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-soft),
    background var(--dur) var(--ease-soft);
}

.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.82);
  border-bottom-color: rgba(7, 26, 36, 0.1);
  box-shadow: 0 10px 30px rgba(7, 26, 36, 0.06);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(280px, 52vw);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
}

.brand-footer {
  max-width: min(320px, 88vw);
}

.brand-footer .brand-logo {
  height: 68px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    color var(--dur-fast) var(--ease-soft),
    background var(--dur) var(--ease-soft),
    transform var(--dur-fast) var(--ease-out);
}

.nav a:hover {
  color: var(--ink);
  background: rgba(248, 198, 47, 0.28);
  transform: translateY(-1px);
}

.header-wa,
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-wa {
  color: #0f7a3c;
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.28);
}

.header-wa svg {
  width: 16px;
  height: 16px;
}

.header-call {
  color: var(--ink);
  background: rgba(248, 198, 47, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 18px rgba(248, 198, 47, 0.22);
}

.header-wa:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.2);
}

.header-call:hover {
  transform: translateY(-2px);
  background: #ffd84d;
}

.header-call svg,
.button svg,
.icon-box svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(7, 26, 36, 0.1);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 40px rgba(7, 26, 36, 0.1);
  animation: dropIn var(--dur) var(--ease-out);
}

.mobile-nav a:not(.button) {
  display: block;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  transition:
    background var(--dur-fast) var(--ease-soft),
    color var(--dur-fast) var(--ease-soft),
    transform var(--dur-fast) var(--ease-out);
}

.mobile-nav a:not(.button):hover {
  color: var(--ink);
  background: rgba(248, 198, 47, 0.15);
  border-radius: 12px;
  transform: translateX(3px);
}

.mobile-nav-cta {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mobile-nav:not([hidden]) {
  display: grid;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--teal);
  border-radius: inherit;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

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

h1 {
  margin: 18px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.2vw, 78px);
  font-weight: 800;
  letter-spacing: -3.8px;
  line-height: 0.95;
}

h1 em {
  position: relative;
  display: inline-block;
  font-style: normal;
}

h1 em::after {
  position: absolute;
  z-index: -1;
  left: -4px;
  right: -6px;
  bottom: 4px;
  height: 16px;
  border-radius: 20px 8px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.4deg);
}

.hero-intro {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 26px;
  padding: 8px;
  border-radius: 22px;
  overflow: hidden;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 12px;
  border-radius: 16px;
  text-align: center;
  transition: transform 200ms ease, background 200ms ease;
}

.trust-card + .trust-card {
  border-left: 1px solid rgba(7, 26, 36, 0.08);
}

.trust-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.45);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffd84d, #f8c62f);
  box-shadow: 0 8px 16px rgba(248, 198, 47, 0.28);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.trust-card > div {
  display: grid;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(90deg, var(--ink), #1f525b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-card > div span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-soft),
    filter var(--dur-fast) var(--ease-soft);
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(-1px) scale(0.985);
  transition-duration: 100ms;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(7, 26, 36, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.button-call {
  color: var(--ink);
  background: linear-gradient(135deg, #ffe27a, #f8c62f 55%, #efb40f);
  box-shadow: 0 14px 28px rgba(248, 198, 47, 0.35);
}

.button-call:hover {
  filter: brightness(1.03);
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #2fe073, #25d366 55%, #1ebe57);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.32);
}

.button-whatsapp:hover {
  filter: brightness(1.04);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.button-call .btn-icon {
  background: rgba(7, 26, 36, 0.1);
  color: var(--ink);
}

.button-whatsapp .btn-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}

.button-light {
  color: var(--ink);
  background: var(--yellow);
}

.button-full {
  width: 100%;
}

.booking-panel {
  padding: 28px 26px;
  border-radius: 28px;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(32, 169, 152, 0.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.panel-head h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -1px;
}

.panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.panel-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.55);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur) var(--ease-soft),
    border-color var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-out),
    color var(--dur-fast) var(--ease-soft);
}

.tab:active {
  transform: scale(0.97);
}

.tab svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.tab.is-active {
  color: var(--ink);
  background: var(--yellow);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(248, 198, 47, 0.28);
}

.trip-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.mode-chip {
  position: relative;
  cursor: pointer;
}

.mode-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mode-chip span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition:
    background var(--dur) var(--ease-soft),
    border-color var(--dur) var(--ease-soft),
    color var(--dur-fast) var(--ease-soft),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.mode-chip input:checked + span {
  color: #fff;
  background: var(--ink);
  border-color: transparent;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

.field-grid.is-hidden {
  display: none;
}

.field-grid.is-switching {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.field-grid > label,
.field-grid > .form-field {
  min-width: 0;
}

.booking-panel label,
.booking-panel .form-field {
  display: grid;
  gap: 7px;
}

.booking-panel label > span:not(.field-error),
.booking-panel .form-field > .field-label,
.date-field > .field-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.booking-panel select,
.booking-panel input[type="text"],
.booking-panel input[type="tel"],
.booking-panel input[type="date"] {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(7, 26, 36, 0.12);
  border-radius: 14px;
  background-color: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  outline: none;
  transition:
    border-color var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-soft),
    background-color var(--dur) var(--ease-soft);
}

.booking-panel select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23173440' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}

.booking-panel select:disabled,
.booking-panel input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background-color: rgba(255, 253, 248, 0.55);
}

.booking-panel select:focus,
.booking-panel input:focus {
  border-color: rgba(248, 198, 47, 0.9);
  box-shadow: 0 0 0 4px rgba(248, 198, 47, 0.2);
}

.booking-panel label.is-invalid select,
.booking-panel label.is-invalid input,
.booking-panel .form-field.is-invalid select,
.booking-panel .form-field.is-invalid input,
.date-field.is-invalid input {
  border-color: #e04545;
  background-color: #fff8f8;
  box-shadow: 0 0 0 3px rgba(224, 69, 69, 0.14);
}

.booking-panel label.is-invalid select,
.booking-panel .form-field.is-invalid select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23c62828' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.field-error {
  display: none;
  margin: 0;
  padding: 0 2px;
  color: #c62828;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.field-error.is-visible {
  display: block;
}

.date-field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

.booking-panel .button-full {
  min-height: 56px;
  font-size: 15px;
}

.thankyou-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  overflow: hidden;
}

.thankyou-card {
  width: min(640px, 100%);
  padding: 36px 28px;
  border-radius: 28px;
  text-align: center;
}

.thankyou-badge {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #0f7a3c;
  background: linear-gradient(145deg, #b9f5cf, #7ae0a4);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.thankyou-badge svg {
  width: 34px;
  height: 34px;
}

.thankyou-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.thankyou-card h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -1.6px;
  line-height: 1.1;
}

.thankyou-copy {
  margin: 0 auto 24px;
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.thankyou-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.thankyou-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(7, 26, 36, 0.08);
}

.thankyou-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.thankyou-summary strong {
  text-align: right;
  font-size: 14px;
}

.thankyou-actions {
  display: grid;
  gap: 10px;
}

.thankyou-actions .button {
  width: 100%;
}

.logo-strip {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(7, 26, 36, 0.08);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 8px 24px rgba(7, 26, 36, 0.04);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  contain: layout paint style;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: marqueeScroll 36s linear infinite;
  backface-visibility: hidden;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 26, 36, 0.08);
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.logo-track span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex: 0 0 auto;
}

@keyframes marqueeScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 12px;
    will-change: auto;
  }

  .logo-track span[aria-hidden="true"] {
    display: none;
  }
}

.section {
  position: relative;
  padding: 92px 0 12px;
}

.section.faq {
  padding-bottom: 48px;
}

.section.faq .section-head {
  margin-bottom: 32px;
}

.section.faq .section-head p {
  max-width: 36rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head > span,
.about-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-head h2,
.about-copy h2,
.seo-panel h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-head p,
.about-copy p,
.seo-panel p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin-inline: auto;
}

.glass-card {
  background: linear-gradient(
    145deg,
    rgba(255, 253, 248, 0.55),
    rgba(255, 253, 248, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 30px rgba(7, 26, 36, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.service-card,
.why-card {
  padding: 26px 24px;
  border-radius: var(--radius);
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-soft);
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
}

.why-card .service-icon {
  flex: 0 0 auto;
}

.why-card p {
  flex: 1;
}

.service-card:hover,
.why-card:hover,
.fleet-card:hover,
.package:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 22px 44px rgba(7, 26, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(248, 198, 47, 0.95), rgba(255, 222, 101, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 18px rgba(248, 198, 47, 0.28);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.service-card h3,
.why-grid h3,
.fleet-card h3,
.package h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  letter-spacing: -0.7px;
}

.service-card p,
.why-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin-inline: auto;
}

.pricing .section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.pricing .section-head p {
  margin-inline: auto;
}

.fleet-card,
.package {
  padding: 24px 20px;
  border-radius: 22px;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-soft);
}

.package {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  text-align: left;
}

.package-top {
  margin-bottom: 4px;
}

.package h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.package-price {
  margin: 10px 0 4px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--ink);
  line-height: 1.1;
}

.package-meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  flex: 1;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 880px;
  margin-inline: auto;
}

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

.package-actions .button {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  font-size: 13px;
  margin: 0;
  gap: 8px;
}

.package-actions .btn-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.package-actions .btn-icon svg {
  width: 15px;
  height: 15px;
}

.fleet-card.featured {
  background: linear-gradient(160deg, rgba(13, 42, 54, 0.92), rgba(7, 26, 36, 0.88));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(7, 26, 36, 0.22);
}

.fleet-card.featured .fleet-rate,
.fleet-card.featured ul {
  color: #d7e1e5;
}

.fleet-card.featured .fleet-rate {
  color: var(--yellow);
}

.fleet-tag,
.package-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fleet-rate,
.price {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.fleet-rate small,
.price small {
  display: inline;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--muted);
}

.price small {
  display: block;
  margin-top: 6px;
}

.fleet-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trip-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  padding: 4px 4px 0;
}

.trip-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.trip-table th,
.trip-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.trip-table thead th {
  padding-top: 20px;
  padding-bottom: 14px;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 800;
  background: rgba(32, 169, 152, 0.08);
  border-bottom: 1px solid rgba(7, 26, 36, 0.08);
}

.trip-table thead th:first-child {
  border-radius: 18px 0 0 0;
}

.trip-table thead th:last-child {
  border-radius: 0 18px 0 0;
}

.trip-table tr:last-child td {
  border-bottom: 0;
}

.trip-table tbody tr {
  transition: background var(--dur) var(--ease-soft);
}

.trip-table tbody tr:hover {
  background: rgba(248, 198, 47, 0.1);
}

.trip-route {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  min-width: 11rem;
}

.trip-duration {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.trip-fare {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  white-space: nowrap;
}

.trip-fare::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
  transform: translateY(-1px);
}

.trip-action {
  text-align: right;
  white-space: nowrap;
}

.trip-table a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform var(--dur) var(--ease-out),
    background var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-out);
}

.trip-table a:hover {
  transform: translateY(-2px);
  background: #0d2a36;
  box-shadow: 0 8px 18px rgba(7, 26, 36, 0.18);
}

.trip-table-note {
  margin: 0;
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  border-top: 1px solid var(--line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.about-copy {
  padding: 28px 26px;
  border-radius: 24px;
  text-align: left;
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.about-copy h2 {
  margin-bottom: 14px;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

.about-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.about-list li {
  position: relative;
  padding: 12px 12px 12px 28px;
  border-radius: 14px;
  border: 1px solid rgba(7, 26, 36, 0.08);
  background: rgba(255, 253, 248, 0.55);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.about-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(160deg, #0d2a36, #071a24);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(7, 26, 36, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-panel-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.about-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  transition: transform 180ms ease, background 180ms ease;
}

.about-contact-row:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.about-contact-row > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.about-contact-row small {
  color: #8ca0a8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.about-contact-row strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.about-panel .icon-box {
  color: var(--yellow);
  background: rgba(248, 198, 47, 0.14);
}

.about-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(248, 198, 47, 0.12);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.about-hours .icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.about-hours .icon-box svg {
  width: 18px;
  height: 18px;
}

.seo-panel {
  padding: 34px;
  border-radius: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin-inline: auto;
  contain: layout style;
}

.faq-item {
  padding: 0;
  border-radius: 18px;
  text-align: left;
  overflow: hidden;
  transition:
    border-color var(--dur) var(--ease-soft),
    box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-soft);
}

.faq-item:not([open]) {
  border-color: rgba(7, 26, 36, 0.08);
  box-shadow: 0 6px 18px rgba(7, 26, 36, 0.04);
}

.faq-item.is-active,
.faq-item[open] {
  border-color: rgba(248, 198, 47, 0.5);
  box-shadow:
    0 14px 32px rgba(7, 26, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.4px;
  list-style: none;
  user-select: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-soft), padding var(--dur) var(--ease-soft);
}

.faq-item.is-active summary,
.faq-item[open] summary {
  padding-bottom: 12px;
  border-bottom-color: rgba(7, 26, 36, 0.08);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease-out);
}

.faq-item.is-active summary::after,
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  opacity: 0;
  transition:
    max-height 420ms var(--ease-out),
    padding 420ms var(--ease-out),
    opacity 320ms var(--ease-soft);
}

.faq-item.is-active .faq-body {
  opacity: 1;
  padding: 14px 18px 18px;
}

.faq-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-body a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(248, 198, 47, 0.65);
  text-underline-offset: 3px;
}

.faq-body a:hover {
  color: var(--teal);
}

.icon-box {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--yellow);
  background: rgba(248, 198, 47, 0.12);
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding-bottom: 20px;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid rgba(7, 26, 36, 0.1);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.site-footer::before {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -140px;
  left: -120px;
  background: rgba(32, 169, 152, 0.12);
  animation: floaty 11s ease-in-out infinite;
}

.site-footer::after {
  width: min(520px, 85vw);
  height: min(520px, 85vw);
  bottom: -220px;
  right: -160px;
  background: rgba(248, 198, 47, 0.1);
  animation: floaty 13s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.site-footer .footer-inner {
  position: relative;
  z-index: 1;
}

.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 44px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
}

.footer-brand p {
  margin: 14px 0 18px;
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-brand p strong {
  color: var(--ink);
  font-weight: 800;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-label {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-col a {
  display: inline-flex;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-col a:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: grid;
  gap: 8px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(7, 26, 36, 0.1);
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  transform: none;
  box-shadow: 0 6px 18px rgba(7, 26, 36, 0.04);
}

.footer-contact-text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.footer-contact a:hover {
  background: rgba(255, 253, 248, 0.95);
  border-color: rgba(248, 198, 47, 0.45);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--ink);
  background: rgba(248, 198, 47, 0.18);
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-legal {
  margin: 0;
  padding: 22px 0 16px;
  border-top: 1px solid rgba(7, 26, 36, 0.1);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.footer-visitors {
  color: var(--ink-soft);
}

.footer-visitors #visitor-count {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.float-call-embed {
  position: fixed;
  z-index: 60;
  top: 50%;
  right: 14px;
  width: 56px;
  transform: translateY(-50%);
  transition: transform var(--dur) var(--ease-out);
}

.float-call-embed::before,
.float-call-embed::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 16px;
  border: 2px solid rgba(248, 198, 47, 0.6);
  animation: float-call-ring 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.float-call-embed::after {
  animation-delay: 1.2s;
}

@keyframes float-call-ring {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  75%,
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.float-call-embed:hover {
  transform: translateY(calc(-50% - 4px));
}

.float-call {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  min-height: 56px;
  padding: 10px 8px;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffe27a, #f8c62f 55%, #efb40f);
  box-shadow: 0 14px 32px rgba(248, 198, 47, 0.45);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    box-shadow var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

.float-call:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(248, 198, 47, 0.55);
}

.float-call:active {
  transform: translateY(0) scale(0.98);
}

.float-call:hover {
  box-shadow: 0 18px 36px rgba(248, 198, 47, 0.55);
}

.float-call-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(7, 26, 36, 0.12);
  animation: float-call-icon-pulse 2.4s ease-in-out infinite;
}

.float-call-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.float-call-label {
  line-height: 1;
}

.taxi-bot {
  position: fixed;
  z-index: 70;
  left: 14px;
  bottom: 18px;
  width: min(340px, calc(100vw - 28px));
  pointer-events: none;
}

.taxi-bot-toggle,
.taxi-bot-panel,
.taxi-bot-option,
.taxi-bot-close,
.taxi-bot-send,
.taxi-bot-input {
  pointer-events: auto;
}

.taxi-bot-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 56px;
  min-height: 56px;
  padding: 8px 6px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #1f525b, #0d2a36 55%, #071a24);
  box-shadow: 0 14px 32px rgba(7, 26, 36, 0.28);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.taxi-bot-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(7, 26, 36, 0.34);
}

.taxi-bot-toggle-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffe27a, #f8c62f);
}

.taxi-bot-toggle-icon svg {
  width: 18px;
  height: 18px;
}

.taxi-bot-toggle-label {
  line-height: 1;
  letter-spacing: -0.02em;
}

.taxi-bot-panel {
  position: absolute;
  left: 0;
  bottom: 72px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: min(520px, calc(100vh - 120px));
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(7, 26, 36, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 24px 50px rgba(7, 26, 36, 0.18);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  animation: dropIn var(--dur) var(--ease-out);
}

.taxi-bot-panel[hidden] {
  display: none !important;
}

.taxi-bot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(7, 26, 36, 0.08);
  background: linear-gradient(160deg, #0d2a36, #071a24);
  color: #fff;
}

.taxi-bot-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.4px;
}

.taxi-bot-head small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
}

.taxi-bot-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.taxi-bot-messages {
  flex: 1;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  min-height: 180px;
}

.taxi-bot-bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  white-space: pre-wrap;
}

.taxi-bot-bubble-bot {
  justify-self: start;
  background: rgba(32, 169, 152, 0.12);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}

.taxi-bot-bubble-user {
  justify-self: end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.taxi-bot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
}

.taxi-bot-options[hidden] {
  display: none !important;
}

.taxi-bot-option {
  appearance: none;
  border: 1px solid rgba(7, 26, 36, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur) var(--ease-soft),
    border-color var(--dur) var(--ease-soft);
}

.taxi-bot-option:hover {
  transform: translateY(-1px);
  background: rgba(248, 198, 47, 0.28);
  border-color: rgba(248, 198, 47, 0.55);
}

.taxi-bot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 14px 14px;
}

.taxi-bot-form[hidden] {
  display: none !important;
}

.taxi-bot-input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(7, 26, 36, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.taxi-bot-input:focus {
  border-color: rgba(248, 198, 47, 0.9);
  box-shadow: 0 0 0 3px rgba(248, 198, 47, 0.2);
}

.taxi-bot-send {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

@keyframes float-call-icon-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(248, 198, 47, 0.45);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(248, 198, 47, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (max-width: 1100px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fleet-card.featured {
    transform: none;
  }

  .nav {
    gap: 2px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .topbar-mail span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .header-call,
  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .header-wa span {
    display: inline;
  }

  .header-wa {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
  }

  .topbar-left,
  .topbar-right,
  .topbar-text,
  .topbar-mail,
  .topbar-chip,
  .topbar-phone {
    display: none !important;
  }

  .topbar-inner {
    width: 100%;
    max-width: none;
    gap: 0;
    padding: 0;
    min-height: 36px;
    overflow: hidden;
  }

  .topbar-marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .topbar-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    padding: 10px 0;
    animation: topbarMarquee 28s linear infinite;
    will-change: transform;
  }

  .topbar-marquee-track span {
    flex: 0 0 auto;
    color: rgba(213, 224, 229, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .topbar-marquee-track span::after {
    content: "•";
    margin-left: 28px;
    color: rgba(248, 198, 47, 0.75);
  }

  .phone-full {
    display: none;
  }

  .phone-short {
    display: inline;
  }

  .hero,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  .fleet-card.featured {
    transform: none;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 6px;
  }

  .trust-card {
    gap: 8px;
    padding: 12px 6px;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .trust-icon svg {
    width: 16px;
    height: 16px;
  }

  .trust-card strong {
    font-size: 15px;
  }

  .trust-card > div span {
    font-size: 10px;
    line-height: 1.3;
  }
}

@media (max-width: 720px) {
  :root {
    --scroll-offset: 108px;
  }

  .topbar-inner,
  .header-inner,
  .mobile-nav,
  .hero,
  .section,
  .logo-strip,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .site-footer {
    padding-bottom: 16px;
  }

  .footer-inner {
    padding-top: 28px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 13px;
  }

  .footer-contact a {
    font-size: 12px;
    padding: 11px 12px;
    gap: 10px;
  }

  .footer-links {
    display: none;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
  }

  .topbar-left,
  .topbar-right {
    display: none;
  }

  .header-inner {
    min-height: 62px;
  }

  .header-actions {
    gap: 8px;
  }

  .brand-logo {
    height: 50px;
  }

  .hero {
    padding-top: 28px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .panel-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .tab {
    min-height: 44px;
    padding: 0 4px;
    gap: 4px;
    font-size: 11px;
    border-radius: 12px;
  }

  .tab svg {
    width: 14px;
    height: 14px;
  }

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

  .fleet-card {
    padding: 18px 14px;
  }

  .fleet-card h3 {
    font-size: 18px;
  }

  .fleet-rate {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .fleet-card ul {
    font-size: 12px;
    margin-bottom: 14px;
    padding-left: 16px;
  }

  .fleet-card .button {
    min-height: 48px;
    font-size: 13px;
  }

  .section {
    padding-top: 68px;
  }

  .section.faq {
    padding-bottom: 36px;
  }

  .section.faq .section-head {
    max-width: none;
    margin-bottom: 20px;
  }

  .section.faq .section-head > span {
    font-size: 10px;
    letter-spacing: 1.35px;
    margin-bottom: 8px;
  }

  .section.faq .section-head h2 {
    font-size: clamp(21px, 6.2vw, 26px);
    letter-spacing: -0.9px;
    line-height: 1.22;
    margin-bottom: 10px;
    text-wrap: balance;
  }

  .section.faq .section-head p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 0;
    max-width: none;
  }

  .site-footer {
    margin-top: 24px;
  }

  .footer-grid {
    padding-bottom: 24px;
  }

  .footer-legal {
    padding: 18px 0 14px;
  }

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

  .service-card {
    padding: 18px 14px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.45;
  }

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

  .why-card {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .why-card .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .why-card .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .why-card h3 {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .why-card p {
    font-size: 12px;
    line-height: 1.4;
  }

  .about-copy {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .about-copy h2 {
    font-size: clamp(24px, 6vw, 30px);
    letter-spacing: -1.2px;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .about-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .about-list li {
    padding: 10px 10px 10px 24px;
    font-size: 11px;
    border-radius: 12px;
  }

  .about-list li::before {
    left: 10px;
    top: 13px;
    width: 6px;
    height: 6px;
  }

  .about-panel {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .about-panel-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .about-contact-row {
    padding: 10px;
    gap: 10px;
  }

  .about-contact-row strong {
    font-size: 12px;
  }

  .about-hours {
    font-size: 12px;
    padding: 10px 12px;
  }

  .faq-list {
    gap: 8px;
    max-width: none;
  }

  .faq-item summary {
    padding: 14px 12px;
    font-size: 13px;
    gap: 10px;
    line-height: 1.35;
    text-wrap: pretty;
  }

  .faq-item.is-active summary,
  .faq-item[open] summary {
    padding-bottom: 10px;
  }

  .faq-item summary::after {
    width: 7px;
    height: 7px;
  }

  .faq-body {
    padding: 0 14px;
  }

  .faq-item.is-active .faq-body {
    padding: 12px 14px 16px;
  }

  .faq-body p {
    font-size: 13px;
    line-height: 1.55;
  }

  .package-grid {
    gap: 10px;
    max-width: none;
  }

  .package {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .package-tag {
    margin-bottom: 8px;
    padding: 4px 8px;
    font-size: 9px;
  }

  .package h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .package-price {
    font-size: 26px;
    margin: 8px 0 2px;
    letter-spacing: -0.8px;
  }

  .package-meta {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .package-actions {
    gap: 8px;
  }

  .package-actions .button {
    min-height: 44px;
    padding: 0;
    gap: 0;
    border-radius: 12px;
  }

  .package-actions .btn-text {
    display: none;
  }

  .package-actions .btn-icon {
    width: 28px;
    height: 28px;
  }

  .package-actions .btn-icon svg {
    width: 16px;
    height: 16px;
  }

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

  .actions .button {
    width: 100%;
    min-height: 48px;
    padding: 0 10px;
    font-size: 12px;
    gap: 7px;
  }

  .actions .btn-icon {
    width: 24px;
    height: 24px;
  }

  .actions .btn-icon svg {
    width: 14px;
    height: 14px;
  }

  .logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .logo-track {
    animation-duration: 42s;
  }

  .ambient,
  .hero::before,
  .logo-strip::before,
  main > section.section::before,
  .site-footer::before,
  .site-footer::after {
    animation: none;
    filter: none;
    opacity: 0.45;
  }

  .float-call-embed {
    right: 10px;
    width: 52px;
  }

  .float-call-embed::before,
  .float-call-embed::after {
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border-radius: 14px;
  }

  .float-call {
    min-height: 52px;
    padding: 8px 6px;
    border-radius: 14px;
    font-size: 10px;
  }

  .float-call-icon {
    width: 26px;
    height: 26px;
  }

  .taxi-bot {
    left: 10px;
    bottom: 14px;
    width: min(300px, calc(100vw - 20px));
  }

  .taxi-bot-toggle {
    width: 52px;
    min-height: 52px;
    border-radius: 14px;
  }

  .taxi-bot-panel {
    bottom: 66px;
    max-height: min(460px, calc(100vh - 100px));
  }
}

@media (max-width: 420px) {
  .brand-logo {
    height: 44px;
  }

  .brand-footer .brand-logo {
    height: 56px;
  }

  .header-wa {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .field-grid.is-switching {
    opacity: 1;
    transform: none;
  }

  .topbar-marquee-track {
    animation: none;
    transform: none;
  }
}
