:root {
  --navy-950: #031727;
  --navy-900: #071c2c;
  --navy-800: #0b2d46;
  --blue: #1da8f2;
  --blue-dark: #0789d4;
  --coral: #ff725e;
  --mist: #eaf5fa;
  --ink: #132733;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

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

button,
select,
input,
textarea {
  font: inherit;
}

.site-wrap {
  width: min(1440px, calc(100% - 96px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 43%;
  background:
    linear-gradient(90deg, rgba(3, 23, 39, 0.18), transparent 22%),
    url("/assets/images/hero-airport-sedan.webp") center / cover no-repeat;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-shade {
  position: absolute;
  inset: 0 45% 0 0;
  background:
    radial-gradient(circle at 18% 72%, rgba(29, 168, 242, 0.15), transparent 38%),
    linear-gradient(110deg, #031727 0%, #06223a 72%, rgba(6, 34, 58, 0.98) 100%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 35% -5% 0 0;
  opacity: 0.22;
  background-image:
    repeating-radial-gradient(
      ellipse at 20% 100%,
      transparent 0 16px,
      rgba(39, 169, 232, 0.42) 17px 18px,
      transparent 19px 34px
    );
  mask-image: linear-gradient(to top, #000, transparent 82%);
}

.utility-bar,
.site-header,
.hero-content,
.quote-wrap {
  position: relative;
  z-index: 2;
}

.utility-bar {
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.utility-bar .site-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.utility-bar span:last-child {
  opacity: 0.78;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(3, 23, 39, 0.12);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 33px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow: 8px 7px 0 -5px var(--coral);
}

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

.brand strong {
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-left: auto;
}

nav a {
  position: relative;
  padding-block: 14px;
  font-size: 15px;
  font-weight: 700;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  right: 0;
}

.header-book {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.header-book:hover,
.header-book:focus-visible {
  background: white;
  color: var(--navy-900);
}

.hero-content {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 48px 0 116px;
}

.hero-copy {
  width: min(720px, 51%);
}

.eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #8ed9ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Bodoni 72", "Times New Roman", Georgia, serif;
  font-size: clamp(62px, 5.25vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-copy > p {
  max-width: 590px;
  margin: 28px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.7;
}

.fare-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 12px;
  color: white;
  background: var(--coral);
  box-shadow: 0 12px 36px rgba(255, 114, 94, 0.19);
  font-size: 16px;
  font-weight: 700;
}

.fare-badge strong {
  font-size: 27px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(29, 168, 242, 0.27);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(3, 23, 39, 0.26);
  backdrop-filter: blur(10px);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: white;
  color: var(--navy-900);
}

.quote-wrap {
  margin-top: -106px;
}

.quote-bar {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1fr 0.85fr;
  align-items: stretch;
  border: 1px solid rgba(3, 23, 39, 0.08);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 65px rgba(3, 23, 39, 0.25);
  backdrop-filter: blur(20px);
}

.quote-field,
.quote-fare {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px;
}

.quote-field {
  position: relative;
  border-right: 1px solid #dce7ed;
}

.quote-label {
  display: block;
  margin-bottom: 9px;
  color: #73848e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-field strong,
.select-shell {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 800;
}

.field-icon {
  color: var(--blue);
  font-size: 18px;
}

.car-icon {
  color: var(--blue);
  font-size: 17px;
  transform: rotate(45deg);
}

.select-shell select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.select-shell select:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(29, 168, 242, 0.22);
}

.quote-fare strong {
  color: var(--coral);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.quote-fare a {
  width: fit-content;
  margin-top: 10px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.quote-fare a:hover,
.quote-fare a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .site-wrap {
    width: min(100% - 48px, 1080px);
  }

  nav {
    gap: 22px;
  }

  .hero-photo {
    inset-inline-start: 48%;
  }

  .hero-shade {
    inset-inline-end: 40%;
  }

  .quote-field,
  .quote-fare {
    padding-inline: 22px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 32px;
  }

  .hero-photo {
    inset: 140px 0 auto;
    height: 420px;
    clip-path: none;
    background-position: 65% center;
  }

  .hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(3, 23, 39, 0.15),
      var(--navy-950)
    );
  }

  .hero-shade {
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(3, 23, 39, 0.22) 120px,
      rgba(3, 23, 39, 0.12) 400px,
      var(--navy-950) 650px
    );
  }

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

  nav,
  .header-book {
    display: none;
  }

  .hero-content {
    min-height: 760px;
    align-items: flex-end;
    padding: 380px 0 110px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(49px, 10vw, 74px);
  }

  .quote-wrap {
    margin-top: -72px;
  }

  .quote-bar {
    grid-template-columns: 1fr 1fr;
  }

  .quote-field,
  .quote-fare {
    border-bottom: 1px solid #dce7ed;
  }

  .quote-field:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .site-wrap {
    width: calc(100% - 32px);
  }

  .utility-bar span:last-child {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 27px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero-photo {
    top: 131px;
    height: 360px;
  }

  .hero-content {
    min-height: 790px;
    padding-top: 350px;
    padding-bottom: 106px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quote-bar {
    grid-template-columns: 1fr;
  }

  .quote-field,
  .quote-fare {
    min-height: 112px;
    border-right: 0;
  }

  .quote-fare {
    border-bottom: 0;
  }
}

.section {
  padding: 112px 0;
}

.section-kicker {
  display: block;
  margin-bottom: 15px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.story-copy h2,
.future-grid h2,
.faq-intro h2,
.route-detail-grid h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Bodoni 72", "Times New Roman", Georgia, serif;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading > p,
.heading-row > p,
.story-copy > p,
.future-grid p,
.faq-intro > p,
.route-detail-grid > div > p {
  color: #61727d;
  font-size: 17px;
  line-height: 1.8;
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: end;
}

.heading-row > p {
  margin: 0;
}

.centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p {
  max-width: 620px;
  margin: 18px auto 0;
}

.trust-strip {
  border-bottom: 1px solid #e2ebef;
  background: white;
}

.trust-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  border-right: 1px solid #e2ebef;
}

.trust-grid > div:first-child {
  border-left: 1px solid #e2ebef;
}

.trust-grid > div > span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #ecf8ff;
  font-size: 17px;
  font-weight: 900;
}

.trust-grid p {
  margin: 0;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  color: var(--navy-950);
  font-size: 14px;
}

.trust-grid small {
  margin-top: 5px;
  color: #71838d;
  font-size: 12px;
  line-height: 1.5;
}

.routes-section {
  background: #f8fbfd;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.route-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #dce8ee;
  border-radius: 18px;
  background: white;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.route-card:hover {
  transform: translateY(-5px);
  border-color: #bcddec;
  box-shadow: 0 20px 50px rgba(4, 42, 66, 0.1);
}

.route-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #d8e7ee;
  font-size: 40px;
  font-weight: 900;
}

.route-airport {
  width: fit-content;
  display: block;
  margin-bottom: 44px;
  padding: 7px 10px;
  border-radius: 6px;
  color: white;
  background: var(--navy-900);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.route-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 25px;
}

.route-card > p {
  margin: 8px 0 28px;
  color: #78909b;
  font-size: 13px;
}

.route-card > div:not(.route-index) small,
.route-card > div:not(.route-index) strong {
  display: block;
}

.route-card > div:not(.route-index) small {
  color: #71838d;
  font-size: 12px;
}

.route-card > div:not(.route-index) strong {
  margin-top: 4px;
  color: var(--coral);
  font-size: 22px;
}

.route-card > a {
  position: absolute;
  left: 30px;
  bottom: 28px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.story-section {
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 92px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(3, 23, 39, 0.16);
}

.story-image > div {
  position: absolute;
  right: -30px;
  bottom: 34px;
  min-width: 240px;
  padding: 23px 26px;
  border-radius: 14px;
  color: white;
  background: var(--navy-900);
  box-shadow: 0 18px 42px rgba(3, 23, 39, 0.24);
}

.story-image strong,
.story-image span {
  display: block;
}

.story-image strong {
  font-size: 17px;
}

.story-image span {
  margin-top: 5px;
  color: #9edfff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-copy > p {
  margin: 26px 0;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #344b58;
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--blue-dark);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.pricing-section,
.route-pricing-section {
  background: var(--mist);
}

.price-table-wrap {
  overflow: hidden;
  border: 1px solid #d7e6ed;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 48px rgba(3, 23, 39, 0.08);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 22px 24px;
  border-bottom: 1px solid #e2ebef;
  text-align: left;
  vertical-align: middle;
}

.price-table thead th {
  color: white;
  background: var(--navy-900);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tbody th {
  width: 36%;
}

.price-table tbody th a {
  color: var(--navy-950);
  font-size: 14px;
  line-height: 1.5;
}

.price-table tbody th a span {
  color: var(--blue);
}

.price-table tbody th small {
  display: block;
  margin-top: 5px;
  color: #7b8e98;
  font-weight: 500;
}

.price-table tbody td {
  color: #263f4d;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.price-table tbody tr:hover {
  background: #f7fbfd;
}

.table-book {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.table-note {
  margin: 0;
  padding: 18px 24px;
  color: #6d808b;
  background: #f8fbfc;
  font-size: 12px;
  line-height: 1.7;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.button-dark {
  color: white;
  background: var(--navy-900);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--navy-800);
  box-shadow: 0 12px 30px rgba(3, 23, 39, 0.18);
}

.fleet-section {
  background: white;
}

.fleet-visual {
  margin-bottom: 64px;
  overflow: hidden;
  border-radius: 22px;
}

.fleet-visual img {
  width: 100%;
  max-height: 620px;
  display: block;
  object-fit: cover;
}

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

.vehicle-grid article {
  padding: 34px;
  border: 1px solid #dce8ee;
  border-radius: 18px;
}

.vehicle-grid article > span {
  color: #bed5df;
  font-size: 28px;
  font-weight: 900;
}

.vehicle-grid h3 {
  margin: 18px 0 22px;
  color: var(--navy-950);
  font-size: 27px;
}

.vehicle-grid strong,
.vehicle-grid small {
  display: block;
}

.vehicle-grid strong {
  color: var(--blue-dark);
}

.vehicle-grid small {
  margin-top: 7px;
  color: #738690;
}

.vehicle-grid p {
  min-height: 54px;
  margin: 22px 0;
  color: #61727d;
  font-size: 14px;
  line-height: 1.7;
}

.vehicle-grid a {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
}

.steps-section {
  color: white;
  background: var(--navy-950);
}

.steps-section .section-kicker {
  color: #78cefa;
}

.steps-section .section-heading h2 {
  color: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.steps-grid article {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.steps-grid span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 28px 0 14px;
  font-size: 22px;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.future-section {
  background: #f7fbfd;
}

.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 100px;
  align-items: center;
}

.future-grid > div > p {
  margin: 25px 0 0;
}

.future-grid dl {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce8ee;
  border-radius: 18px;
  background: white;
}

.future-grid dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #e2ebef;
}

.future-grid dl > div:last-child {
  border-bottom: 0;
}

.future-grid dt {
  color: var(--coral);
  font-size: 27px;
  font-weight: 900;
}

.future-grid dd {
  margin: 0;
  color: #61727d;
  font-size: 14px;
}

.faq-section {
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.faq-intro > p {
  margin: 24px 0 30px;
}

.faq-list {
  border-top: 1px solid #dce8ee;
}

.faq-list details {
  border-bottom: 1px solid #dce8ee;
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--navy-950);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #edf8fd;
  font-size: 21px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: -4px 0 26px;
  padding-right: 50px;
  color: #61727d;
  font-size: 14px;
  line-height: 1.8;
}

.booking-cta {
  padding: 80px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 0, rgba(29, 168, 242, 0.23), transparent 35%),
    var(--navy-900);
}

.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.booking-cta h2 {
  margin: 0;
  font-family: "Bodoni 72", "Times New Roman", Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
}

.booking-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.booking-cta .section-kicker {
  color: #87d8ff;
}

.booking-cta-inner > div:last-child {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 82px 0 22px;
  color: white;
  background: #02111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
  gap: 62px;
}

.footer-grid > div:first-child > p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.8;
}

.footer-grid h2 {
  margin: 0 0 22px;
  color: #8cddff;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  gap: 8px;
}

.floating-contact a {
  min-width: 68px;
  padding: 12px 15px;
  border-radius: 999px;
  color: white;
  box-shadow: 0 8px 24px rgba(3, 23, 39, 0.24);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.float-whatsapp {
  position: relative;
  background: #16a867;
  animation: line-pulse 1.8s ease-in-out 0.9s infinite;
}

.float-whatsapp::after {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(22, 168, 103, 0.55);
  border-radius: inherit;
  content: "";
  animation: line-ring 1.8s ease-out 0.9s infinite;
  pointer-events: none;
}

.float-line {
  position: relative;
  background: #06c755;
  animation: line-pulse 1.8s ease-in-out infinite;
}

.float-line::after {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(6, 199, 85, 0.55);
  border-radius: inherit;
  content: "";
  animation: line-ring 1.8s ease-out infinite;
  pointer-events: none;
}

.float-call {
  background: var(--blue-dark);
}

@keyframes line-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(3, 23, 39, 0.24);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.45);
  }
}

@keyframes line-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.94);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

/* Inner pages */
.inner-utility {
  color: white;
  background: var(--navy-950);
}

.inner-utility .site-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.inner-utility a {
  font-weight: 900;
}

.inner-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #dce8ee;
  background: white;
}

.inner-header-row {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand-dark {
  color: var(--navy-950);
}

.brand-dark .brand-mark {
  color: var(--navy-950);
  border-color: var(--navy-950);
}

.inner-header nav a {
  color: var(--navy-950);
}

.compact-button {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 13px;
}

.inner-page-hero {
  padding: 100px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(29, 168, 242, 0.22), transparent 35%),
    var(--navy-900);
}

.inner-page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Bodoni 72", "Times New Roman", Georgia, serif;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.inner-page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.inner-page-hero .section-kicker {
  color: #8bdcff;
}

.compact-inner-hero {
  padding-block: 72px;
}

.route-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

.route-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 23, 39, 0.98) 0%,
    rgba(3, 23, 39, 0.86) 43%,
    rgba(3, 23, 39, 0.18) 78%
  );
}

.route-hero-image {
  position: absolute;
  inset: 0;
  background: url("/assets/images/eastern-gulf-route.webp") center / cover no-repeat;
}

.route-hero-content {
  position: relative;
  z-index: 2;
  padding-block: 76px;
}

.breadcrumbs {
  width: auto;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.breadcrumbs a {
  padding: 0;
  font-weight: 700;
}

.breadcrumbs a::after {
  display: none;
}

.route-hero .section-kicker {
  color: #8bdcff;
}

.route-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Bodoni 72", "Times New Roman", Georgia, serif;
  font-size: clamp(53px, 5vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.route-hero-content > p {
  max-width: 650px;
  margin: 24px 0 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.75;
}

.route-hero-meta {
  display: flex;
  gap: 58px;
  margin-bottom: 30px;
}

.route-hero-meta small,
.route-hero-meta strong {
  display: block;
}

.route-hero-meta small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.route-hero-meta strong {
  margin-top: 6px;
  font-size: 17px;
}

.route-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 90px;
  align-items: start;
}

.route-detail-grid > div > p {
  margin: 25px 0;
}

.route-note {
  margin-top: 26px !important;
  padding: 17px 20px;
  border-left: 4px solid var(--coral);
  color: #435d6b !important;
  background: #fff1ee;
  font-weight: 700;
}

.route-quick-card {
  padding: 34px;
  border-radius: 18px;
  color: white;
  background: var(--navy-900);
  box-shadow: 0 22px 50px rgba(3, 23, 39, 0.16);
}

.route-quick-card > span {
  color: #84d7ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-quick-card h3 {
  margin: 18px 0 24px;
  font-size: 22px;
  line-height: 1.45;
}

.route-quick-card h3 b {
  color: var(--coral);
}

.route-quick-card dl {
  margin: 0;
}

.route-quick-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.route-quick-card dt,
.route-quick-card dd {
  margin: 0;
  font-size: 13px;
}

.route-quick-card dd {
  color: #8bdcff;
  font-weight: 900;
}

.route-quick-card > a {
  display: block;
  margin-top: 22px;
  padding: 14px;
  border-radius: 8px;
  color: var(--navy-950);
  background: white;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.route-faq {
  background: white;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.info-card-grid article {
  padding: 30px;
  border: 1px solid #dce8ee;
  border-radius: 16px;
}

.info-card-grid h2 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 19px;
}

.info-card-grid p {
  margin: 0;
  color: #61727d;
  font-size: 13px;
  line-height: 1.75;
}

.page-feature-image {
  width: 100%;
  max-height: 650px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.fleet-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.fleet-page-grid article {
  padding: 36px;
  border: 1px solid #dce8ee;
  border-radius: 18px;
}

.fleet-page-grid h2 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 28px;
}

.fleet-page-grid > article > strong {
  color: var(--coral);
  font-size: 14px;
}

.fleet-page-grid p {
  color: #61727d;
  font-size: 14px;
  line-height: 1.7;
}

.fleet-page-grid .button {
  width: 100%;
  margin-top: 28px;
}

.guide-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-layout article {
  padding: 36px;
  border: 1px solid #dce8ee;
  border-radius: 18px;
  background: white;
}

.guide-layout article > span {
  color: var(--coral);
  font-size: 30px;
  font-weight: 900;
}

.guide-layout h2 {
  margin: 24px 0 14px;
  color: var(--navy-950);
  font-size: 23px;
}

.guide-layout p {
  margin: 0;
  color: #61727d;
  font-size: 14px;
  line-height: 1.75;
}

.guide-tip {
  padding: 34px;
  border-radius: 18px;
  color: white;
  background: var(--navy-900);
}

.guide-tip strong {
  font-size: 22px;
}

.guide-tip p {
  color: rgba(255, 255, 255, 0.7);
}

.faq-page-layout {
  display: grid;
  gap: 70px;
}

.faq-page-layout > section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
}

.faq-page-layout h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Bodoni 72", "Times New Roman", Georgia, serif;
  font-size: 36px;
  line-height: 1.08;
}

.legal-copy .site-wrap {
  max-width: 900px;
}

.legal-copy h2 {
  margin: 38px 0 12px;
  color: var(--navy-950);
  font-size: 22px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: #61727d;
  line-height: 1.85;
}

/* Booking */
.booking-page {
  padding: 72px 0 112px;
  background: #f5f9fb;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.booking-form {
  padding: 46px;
  border: 1px solid #dce8ee;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 55px rgba(3, 23, 39, 0.08);
}

.form-heading h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Bodoni 72", "Times New Roman", Georgia, serif;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.03;
}

.form-heading p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #61727d;
  line-height: 1.75;
}

.booking-form fieldset {
  margin: 42px 0 0;
  padding: 0;
  border: 0;
}

.booking-form legend {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid #dce8ee;
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 900;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  color: #405763;
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ccdce4;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: white;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 168, 242, 0.14);
}

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

.vehicle-choice {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #ccdce4;
  border-radius: 13px;
  cursor: pointer;
}

.vehicle-choice.selected {
  border-color: var(--blue);
  background: #f0faff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.vehicle-choice input {
  position: absolute;
  top: 18px;
  right: 18px;
}

.vehicle-choice strong {
  color: var(--navy-950);
}

.vehicle-choice span {
  margin-top: 8px;
  color: #71838d;
  font-size: 12px;
}

.vehicle-choice b {
  margin-top: auto;
  color: var(--coral);
  font-size: 16px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  color: #61727d;
  font-size: 12px;
  line-height: 1.6;
}

.consent input {
  margin-top: 3px;
}

.booking-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #dce8ee;
}

.booking-submit-row span,
.booking-submit-row strong,
.booking-submit-row small {
  display: block;
}

.booking-submit-row span {
  color: #71838d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-submit-row strong {
  margin-top: 4px;
  color: var(--coral);
  font-size: 26px;
}

.booking-submit-row small {
  max-width: 320px;
  margin-top: 5px;
  color: #7a8d97;
  font-size: 10px;
}

.booking-submit-row button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.form-status {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 12px;
}

.form-status.success {
  color: #126441;
  background: #e9f9f1;
}

.form-status.error {
  color: #9a2d23;
  background: #fff0ed;
}

.form-status.sending {
  color: #23617f;
  background: #ecf8fe;
}

.booking-summary {
  position: sticky;
  top: 24px;
  padding: 34px;
  border-radius: 18px;
  color: white;
  background: var(--navy-900);
  box-shadow: 0 22px 55px rgba(3, 23, 39, 0.16);
}

.booking-summary .section-kicker {
  color: #8bdcff;
}

.booking-summary h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.35;
}

.booking-summary h2 span {
  color: var(--coral);
}

.booking-summary ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.booking-summary li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.booking-summary li span {
  color: rgba(255, 255, 255, 0.58);
}

.booking-summary > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid #e2ebef;
  }

  .story-grid,
  .future-grid,
  .faq-layout,
  .route-detail-grid,
  .booking-layout {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .heading-row,
  .story-grid,
  .future-grid,
  .faq-layout,
  .route-detail-grid,
  .booking-layout,
  .faq-page-layout > section {
    grid-template-columns: 1fr;
  }

  .heading-row {
    gap: 24px;
  }

  .story-image img {
    min-height: 420px;
  }

  .story-image > div {
    right: 24px;
  }

  .vehicle-grid,
  .steps-grid,
  .info-card-grid,
  .fleet-page-grid,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .vehicle-grid p {
    min-height: auto;
  }

  .booking-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .inner-header nav {
    display: none;
  }

  .inner-header .compact-button {
    margin-left: auto;
  }

  .booking-summary {
    position: static;
  }

  .price-table-wrap {
    overflow-x: auto;
  }

  .price-table {
    min-width: 850px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 68px 0;
  }

  .route-grid,
  .trust-grid,
  .footer-grid,
  .form-grid,
  .vehicle-choice-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    border: 0;
    border-bottom: 1px solid #e2ebef;
  }

  .section-heading h2,
  .story-copy h2,
  .future-grid h2,
  .faq-intro h2,
  .route-detail-grid h2 {
    font-size: 40px;
  }

  .route-card {
    min-height: 300px;
  }

  .future-grid dl > div {
    grid-template-columns: 110px 1fr;
  }

  .booking-cta-inner > div:last-child {
    width: 100%;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:not(:first-child) {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .inner-utility span {
    display: none;
  }

  .inner-utility .site-wrap {
    justify-content: flex-end;
  }

  .inner-header-row {
    min-height: 80px;
  }

  .inner-header .compact-button {
    display: none;
  }

  .route-hero {
    min-height: 620px;
  }

  .route-hero::after {
    background: linear-gradient(
      90deg,
      rgba(3, 23, 39, 0.97),
      rgba(3, 23, 39, 0.68)
    );
  }

  .route-hero h1,
  .inner-page-hero h1 {
    font-size: 48px;
  }

  .route-hero-meta {
    gap: 28px;
  }

  .booking-form {
    padding: 28px 20px;
  }

  .booking-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-submit-row .button {
    width: 100%;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
