:root {
  --font-main: "Roboto", Arial, sans-serif;
  --ink: #14201f;
  --muted: #5f6f6d;
  --line: #dfe8e5;
  --paper: #f4f8fc;
  --white: #ffffff;
  --navy: #06152b;
  --navy-2: #0b2240;
  --blue: #1688ff;
  --blue-dark: #0a62c9;
  --shadow: 0 20px 50px rgba(5, 18, 43, 0.16);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: var(--font-main);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(10, 28, 27, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: block;
  width: 54px;
  height: 42px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: 0.78;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 15px;
}

.main-nav a,
.header-phone {
  opacity: 0.9;
}

.main-nav a:hover,
.header-phone:hover {
  opacity: 1;
}

.header-phone {
  white-space: nowrap;
  font-weight: 700;
}
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-scrolled .mobile-menu-toggle {
  border-color: rgba(20, 32, 31, 0.18);
  background: rgba(6, 21, 43, 0.06);
}

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

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: 510px;
  height: auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: contain;
  object-position: right center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 12, 29, 0.98) 0%, rgba(4, 20, 47, 0.86) 42%, rgba(4, 20, 47, 0.22) 72%, rgba(2, 12, 29, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 12, 29, 0.3) 0%, rgba(2, 12, 29, 0.08) 35%, rgba(2, 12, 29, 0.92) 100%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0 36px;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.eyebrow-link:hover {
  color: var(--blue-dark);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 15px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: #3196ff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.section-button {
  min-height: 38px;
  margin-top: 18px;
  padding: 8px 14px;
  font-size: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 32px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  transform: translateY(-26px);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.brand-note {
  padding: 18px 0 48px;
}

.brand-note p {
  max-width: 850px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: none;
}

.split,
.clients,
.price,
.faq,
.request {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.content p,
.clients p,
.price-box p,
.faq-list p,
.request-copy p {
  color: var(--muted);
  font-size: 16px;
}

.feature-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-grid article,
.service-grid article,
.price-box,

.request-phone {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.request-phone span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.request-phone a {
  color: var(--ink);
  font-size: clamp(27px, 3.6vw, 42px);
  line-height: 1.05;
  font-weight: 900;
}
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 37, 35, 0.06);
}

.feature-grid article {
  padding: 14px;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
  width: min(1120px, calc(100% - 36px));
  margin: -22px auto 0;
  padding-bottom: 80px;
}

.fleet-showcase article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.fleet-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.fleet-showcase article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 43, 0.04), rgba(5, 18, 43, 0.86));
}

.fleet-showcase div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.fleet-showcase span,
.fleet-showcase strong {
  display: block;
}

.fleet-showcase span {
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 800;
}

.fleet-showcase strong {
  font-size: 24px;
  line-height: 1.12;
}

.vehicle-section {
  padding-top: 0;
}

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

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 37, 35, 0.06);
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vehicle-card-body {
  padding: 22px;
}

.vehicle-card-body span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.vehicle-card-body p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.interior-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.service-grid article {
  min-height: 220px;
  align-content: stretch;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
}

.service-grid h3 {
  min-height: 80px;
  margin-bottom: 0;
}

.service-grid p {
  color: var(--muted);
}

.service-grid .section-button {
  align-self: end;
  margin-top: auto;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.services-cta .button {
  min-width: 250px;
}

.clients {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background: var(--navy-2);
  color: var(--white);
}

.clients p {
  color: rgba(255, 255, 255, 0.82);
}

.price-box {
  padding: 28px;
}

.price-factors {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.price-factors li::marker {
  color: var(--blue);
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq.faq-collapsible {
  display: block;
}

.faq-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

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

.faq-summary-copy {
  display: grid;
  gap: 10px;
}

.faq-summary-copy .eyebrow {
  margin-bottom: 0;
}

.faq-summary-copy h2 {
  margin: 0;
}

.faq-toggle-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: solid var(--blue);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-disclosure[open] .faq-toggle-icon {
  transform: rotate(225deg);
}

.faq-disclosure[open] .faq-list {
  margin-top: 28px;
}

.faq-disclosure[open] .resort-extra-grid {
  margin-top: 28px;
}

.resort-list-disclosure {
  margin-top: 42px;
}

.faq-disclosure summary:focus-visible {
  outline: 3px solid rgba(22, 136, 255, 0.28);
  outline-offset: 8px;
  border-radius: 8px;
}

.faq-list article {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.faq-list article + article {
  padding-top: 22px;
}

.faq-list h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.faq-list p {
  margin-bottom: 0;
}

.request {
  align-items: stretch;
}

.messengers a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lead-form .wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cad8d5;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fdfdfb;
  font-family: var(--font-main);
  font-size: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(22, 136, 255, 0.28);
  border-color: var(--blue-dark);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews {
  display: grid;
  gap: 24px;
}

.reviews .section-head p:not(.eyebrow),
.review-submit-copy p,
.review-card p {
  color: var(--muted);
}

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

.reviews-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.review-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 37, 35, 0.06);
}

.review-card-header {
  display: grid;
  gap: 4px;
}

.review-card-name {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.review-card-date {
  color: var(--muted);
  font-size: 13px;
}

.review-stars {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
}

.review-submit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: 16px;
}

.review-submit-copy h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.review-rating {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating legend {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.review-rating-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-rating-options label {
  display: inline-flex;
  width: 44px;
  height: 44px;
}

.review-rating-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.review-rating-options span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #cad8d5;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fdfdfb;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.review-rating-options span::after {
  content: "★";
  margin-left: 2px;
  font-size: 18px;
  line-height: 1;
}

.review-rating-options input:checked + span,
.review-rating-options label:hover span {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.review-rating-options input:focus-visible + span {
  outline: 2px solid rgba(22, 136, 255, 0.28);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--navy);
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer address {
  display: grid;
  gap: 6px;
  font-style: normal;
  text-align: right;
}

.site-footer a {
  font-weight: 800;
}

.site-footer .footer-policy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content .content h3 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.privacy-content .content h3:first-of-type {
  margin-top: 0;
}

.privacy-updated {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
    }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 3;
    flex: 0 0 auto;
  }

  .header-phone {
    order: 2;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 6px);
    right: clamp(18px, 4vw, 56px);
    display: grid;
    width: min(230px, calc(100vw - 36px));
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: var(--white);
    background: rgba(6, 21, 43, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a,
  .main-nav a.reveal-item,
  .main-nav a.reveal-item.is-visible {
    display: flex;
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.15s ease;
  }

  .site-header.is-menu-open .main-nav a,
  .site-header.is-menu-open .main-nav a.reveal-item,
  .site-header.is-menu-open .main-nav a.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-menu-open .main-nav a:nth-child(1) { transition-delay: 20ms; }
  .site-header.is-menu-open .main-nav a:nth-child(2) { transition-delay: 55ms; }
  .site-header.is-menu-open .main-nav a:nth-child(3) { transition-delay: 90ms; }
  .site-header.is-menu-open .main-nav a:nth-child(4) { transition-delay: 125ms; }
  .site-header.is-menu-open .main-nav a:nth-child(5) { transition-delay: 160ms; }
  .site-header.is-menu-open .main-nav a:nth-child(6) { transition-delay: 195ms; }
  .site-header.is-menu-open .main-nav a:nth-child(7) { transition-delay: 230ms; }

 .hero {
    min-height: 560px;
  }

  .trust-strip,
  .feature-grid,
  .service-grid,
  .fleet-showcase,
  .vehicle-grid,
  .reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .clients,
  .price,
  .faq,
  .request,
  .review-submit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
      gap: 12px;
  }

  .brand {
    flex-direction: column;
      gap: 4px;
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
    line-height: 1.25;
    text-align: left;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-left: auto;
    font-size: 16px;
    line-height: 1;
  }

 .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-top: 96px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .service-grid h3 {
    min-height: 0;
  }

  .services-cta .button {
    width: 100%;
  }


  .hero-stats,
  .trust-strip,
  .feature-grid,
  .service-grid,
  .fleet-showcase,
  .vehicle-grid,
  .reviews-list,
  .interior-row,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 58px 0;
  }

  .clients {
    padding-inline: 14px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer address {
    text-align: left;
  }
}

.main-nav a.reveal-item,
.header-phone.reveal-item {
  display: inline-flex;
}

.reveal-item {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.72, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.main-nav a.is-active {
  color: var(--blue);
  opacity: 1;
}
.main-nav .mobile-nav-home,
.main-nav .mobile-nav-home.reveal-item,
.main-nav .mobile-nav-home.reveal-item.is-visible {
  display: none;
}

@media (max-width: 960px) {
  .main-nav .mobile-nav-home,
  .main-nav .mobile-nav-home.reveal-item,
  .main-nav .mobile-nav-home.reveal-item.is-visible {
    display: flex;
  }
}

.page-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.page-hero-image,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero {
  min-height: 460px;
  height: 460px;
}

.about-hero .page-hero-image {
  object-fit: contain;
  object-position: right center;
}
.about-hero .page-hero-content {
  padding-bottom: 96px;
  transform: translateY(-44px);
}

.page-hero-image {
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 12, 29, 0.96) 0%, rgba(4, 20, 47, 0.78) 44%, rgba(2, 12, 29, 0.38) 100%),
    linear-gradient(180deg, rgba(2, 12, 29, 0.18) 0%, rgba(2, 12, 29, 0.92) 100%);
}

.page-hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 56px;
  color: var(--white);
}

.page-hero-content h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.about-intro,
.about-media,
.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.about-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 37, 35, 0.06);
}

.about-card strong,
.about-card span {
  display: block;
}

.about-card strong {
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.about-card span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.about-media-photo {
  display: block;
  width: min(100%, 420px);
  height: auto;
  aspect-ratio: 1 / 1;
  justify-self: center;
  align-self: start;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.values-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 10px 26px rgba(17, 37, 35, 0.05);
}

.about-cta {
  align-items: center;
}

.about-cta p {
  color: var(--muted);
  font-size: 18px;
}

.about-cta .button {
  justify-self: end;
}

@media (max-width: 960px) {
  .about-intro,
  .about-media,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .page-hero {
    min-height: 560px;
  }

  .page-hero-content {
    width: min(100% - 28px, 1120px);
    padding-top: 108px;
  }

  .page-hero-content h1 {
    font-size: 34px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}
.fleet-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.fleet-list {
  display: grid;
  gap: 26px;
  padding-top: 0;
}

.fleet-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.fleet-gallery {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background: var(--navy);
}

.fleet-gallery-main {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.fleet-card:hover .fleet-gallery-main {
  transform: scale(1.03);
}

.gallery-strip,
.gallery-arrow {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fleet-card:hover .gallery-strip,
.fleet-card:focus-within .gallery-strip,
.fleet-card:hover .gallery-arrow,
.fleet-card:focus-within .gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}

.gallery-strip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4, 72px);
  gap: 10px;
  transform: translateY(12px);
}

.fleet-card:hover .gallery-strip,
.fleet-card:focus-within .gallery-strip {
  transform: translateY(0);
}

.gallery-strip button {
  width: 72px;
  height: 54px;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.gallery-strip button.is-active {
  border-color: var(--blue);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(6, 21, 43, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow::before {
  content: "";
  position: absolute;
  inset: 13px 15px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
}

.gallery-prev {
  left: 16px;
}

.gallery-prev::before {
  transform: rotate(-135deg);
}

.gallery-next {
  right: 16px;
}

.gallery-next::before {
  transform: rotate(45deg);
}

.fleet-card-body {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
}

.fleet-card-body span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.fleet-card-body h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.fleet-card-body p {
  color: var(--muted);
  font-size: 18px;
}

.fleet-card-body ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.fleet-card-body li {
  padding-left: 20px;
  color: var(--muted);
  position: relative;
}

.fleet-card-booking {
  align-self: flex-start;
  min-width: 190px;
  margin-top: auto;
}

.fleet-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.fleet-seo-text {
  padding-top: 0;
}

.fleet-seo-text p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 960px) {
  .fleet-intro,
  .fleet-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .fleet-card-booking {
    align-self: stretch;
    width: 100%;
  }

  .fleet-gallery,
  .fleet-gallery-main {
    min-height: 0;
  }

  .gallery-strip {
    left: 12px;
    right: auto;
    bottom: 12px;
    grid-template-columns: repeat(4, 54px);
    gap: 8px;
    max-width: calc(100% - 24px);
  }

  .gallery-strip button {
    width: 54px;
    height: 40px;
    border-width: 1px;
  }
}
@media (hover: none) {
  .gallery-strip,
  .gallery-arrow {
    opacity: 1;
    pointer-events: auto;
  }

  .gallery-strip {
    transform: translateY(0);
  }
}
.fleet-request {
  padding-top: 34px;
}
.clients-copy {
  display: grid;
  gap: clamp(34px, 6vw, 88px);
}

.clients-baggage {
  margin: 0;
  max-width: 620px;
  font-weight: 700;
}
.fleet-page-hero .page-hero-image {
  object-fit: contain;
  object-position: right center;
}
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note[data-state="success"] {
  color: #0a7f42;
}

.form-note[data-state="error"] {
  color: #b42318;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}
@media (min-width: 961px) {
  .mobile-menu-toggle,
  .mobile-menu-toggle span {
    display: none !important;
  }
}

.child-vehicle-section {
  padding-top: 82px;
}
@media (max-width: 620px) {
  .child-vehicle-section {
    padding-top: 58px;
  }
}

.child-vehicle-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef4f8;
}

.child-vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.airport-vehicle-grid .vehicle-card {
  display: grid;
  align-content: start;
}

.airport-vehicle-grid .vehicle-card img {
  width: min(100% - 44px, 260px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  justify-self: center;
  margin: 22px auto 0;
  border-radius: 8px;
  background: #eef4f8;
}

.airport-vehicle-grid .vehicle-card-body span {
  color: var(--blue);
  text-transform: none;
}

@media (max-width: 620px) {
  .airport-vehicle-grid .vehicle-card img {
    width: min(100% - 36px, 250px);
    margin-top: 18px;
  }
}
.popular-routes {
  padding-top: 30px;
  padding-bottom: 26px;
}

.popular-routes .section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.popular-routes .section-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.popular-route-card {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 37, 35, 0.05);
}

.popular-route-card span,
.popular-route-card strong,
.popular-route-card small {
  display: block;
}

.popular-route-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.popular-route-card strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.16;
}

.popular-route-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.popular-route-card.is-active {
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.popular-route-card.is-active.reveal-item {
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.72, 0.22, 1),
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.popular-route-card.is-active.reveal-item.reveal-complete {
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  transition-delay: 0ms;
}

.popular-route-card.is-active::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.popular-route-card.is-active:not(.reveal-item):hover,
.popular-route-card.is-active.reveal-item.reveal-complete:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 136, 255, 0.35);
  box-shadow: 0 16px 34px rgba(17, 37, 35, 0.09);
}

.popular-route-card.is-disabled {
  opacity: 0.72;
}

.popular-route-card.is-disabled.reveal-item:not(.is-visible) {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
}

.popular-route-card.is-disabled.reveal-item.is-visible {
  opacity: 0.72;
  transform: translateY(0) scale(1);
}

.popular-route-card.is-disabled span {
  color: var(--muted);
}

@media (max-width: 960px) {
  .popular-routes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .popular-routes {
    padding-top: 22px;
  }

  .popular-routes-grid {
    grid-template-columns: 1fr;
  }

  .popular-route-card {
    min-height: 0;
  }
}
.transfer-options {
  padding-top: 28px;
  padding-bottom: 42px;
}

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

.transfer-options-grid article {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 37, 35, 0.05);
}

.transfer-options-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.transfer-options-grid h3 {
  margin-bottom: 0;
}

.transfer-options-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 960px) {
  .transfer-options-grid {
    grid-template-columns: 1fr;
  }
}
