:root {
  --ink: #18212c;
  --muted: #627080;
  --line: #d9e0e7;
  --paper: #f6f8fa;
  --white: #ffffff;
  --brand: #0f6b63;
  --brand-dark: #0a4a46;
  --accent: #d9932f;
  --accent-soft: #fff4df;
  --shadow: 0 18px 45px rgba(16, 33, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 231, 0.86);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 8px;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: clamp(168px, 18vw, 224px);
  height: auto;
}

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

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

.brand small,
.eyebrow,
.form-note,
.fleet-list span,
.site-footer p {
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 22px;
  color: #3a4652;
  font-size: 15px;
}

.main-nav a:hover,
.header-phone:hover {
  color: var(--brand);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
}

.messenger-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.messenger-icons img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 72px) 82px;
  overflow: visible;
  background: url("assets/hero-transfer.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(246, 248, 250, 0), var(--paper));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 24, 33, 0.88), rgba(9, 24, 33, 0.55) 43%, rgba(9, 24, 33, 0.12)),
    linear-gradient(180deg, rgba(9, 24, 33, 0.12), rgba(9, 24, 33, 0.36));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(740px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #c9f2eb;
}

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

h1,
h2,
h3,
.brand,
.button,
.hero-facts dt,
.catalog-card-media span {
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.45;
}

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

.hero-route-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  width: min(720px, 100%);
  min-width: 0;
  margin: 20px 0 8px;
  padding: 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(9, 24, 33, 0.24);
}

.hero-route-search label {
  min-width: 0;
  color: var(--ink);
  text-align: left;
}

.hero-city-field {
  display: block;
}

.hero-route-search input {
  background: var(--white);
}

.autocomplete {
  position: relative;
  display: block;
  min-width: 0;
}

.autocomplete input {
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.autocomplete-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  max-height: 250px;
  overflow-y: auto;
  padding: 7px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(15, 107, 99, 0.35);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(9, 46, 43, 0.22);
}

.autocomplete-list.is-open {
  display: grid;
  gap: 3px;
}

.autocomplete-list::-webkit-scrollbar {
  width: 8px;
}

.autocomplete-list::-webkit-scrollbar-thumb {
  background: rgba(15, 107, 99, 0.55);
  border: 2px solid var(--white);
  border-radius: 8px;
}

.autocomplete-option {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 11px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: 600 14px "Manrope", "Segoe UI", sans-serif;
  text-align: left;
  cursor: pointer;
}

.autocomplete-option::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--brand);
  border: 3px solid rgba(15, 107, 99, 0.16);
  border-radius: 50%;
}

.autocomplete-option:hover,
.autocomplete-option.is-active {
  color: var(--white);
  background: var(--brand);
}

.autocomplete-option:hover::before,
.autocomplete-option.is-active::before {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.autocomplete-option mark {
  color: var(--brand-dark);
  background: var(--accent-soft);
  border-radius: 3px;
}

.autocomplete-option:hover mark,
.autocomplete-option.is-active mark {
  color: var(--brand-dark);
  background: var(--white);
}

.autocomplete-empty {
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
}

.route-arrow {
  display: grid;
  width: 42px;
  height: 48px;
  place-items: center;
  color: var(--brand);
  font-size: 25px;
  font-weight: 800;
}

.hero-search-note {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(15, 107, 99, 0.26);
}

.button-primary:hover {
  background: var(--brand-dark);
}

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

.button-ghost.dark {
  color: var(--brand-dark);
  border-color: rgba(15, 107, 99, 0.34);
  background: rgba(15, 107, 99, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  gap: 9px;
  margin: 0;
}

.hero-facts div {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.route-panel,
.section,
.benefits,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.route-panel {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-panel.compact-booking {
  margin-top: 28px;
}

.section {
  padding: 74px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  color: var(--brand);
}

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

label {
  display: grid;
  gap: 8px;
  color: #2a3642;
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

select {
  appearance: none;
  padding-right: 38px;
  color: var(--brand-dark);
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  font-weight: 700;
}

select option {
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus {
  outline: 3px solid rgba(15, 107, 99, 0.18);
  border-color: var(--brand);
}

.wide-field {
  grid-column: span 2;
}

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

.booking-trip-note span {
  display: grid;
  gap: 4px;
  min-height: 48px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  border: 1px solid #f1d7a5;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.booking-trip-note strong {
  color: #53606c;
  font-size: 12px;
  font-weight: 700;
}

.form-note {
  min-height: 24px;
  margin: 16px 0 0;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 18px;
}

.route-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-card-accent {
  color: var(--ink);
  background: var(--accent-soft);
  border-color: #f1d7a5;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.city-list li,
.popular-routes span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  background: #f7fafb;
  border: 1px solid #e5ebef;
  border-radius: 8px;
  font-size: 14px;
}

.popular-routes {
  display: grid;
  gap: 10px;
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
  padding: 74px 0 22px;
}

.subhero h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
}

.subhero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.quick-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

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

.quick-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.quick-card dt {
  color: var(--muted);
}

.quick-card dd {
  margin: 0;
  font-weight: 700;
}

.city-photo-card {
  overflow: hidden;
  padding: 0;
}

.city-photo-card .city-page-media {
  min-height: 190px;
}

.city-photo-card > strong,
.city-photo-card > p {
  padding-inline: 24px;
}

.city-photo-card > strong {
  margin-top: 20px;
}

.city-photo-card > p {
  padding-bottom: 24px;
}

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

.service-card,
.conditions-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p,
.conditions-grid p,
.info-list p {
  color: var(--muted);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.link-grid a {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.link-grid a:hover {
  color: var(--brand-dark);
  border-color: rgba(15, 107, 99, 0.45);
}

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

.catalog-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(16, 33, 48, 0.08);
}

.catalog-card-media {
  position: relative;
  min-height: 148px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 24, 33, 0.12), rgba(9, 24, 33, 0.78)),
    url("assets/hero-transfer.png") center / cover no-repeat;
}

.route-catalog-card .catalog-card-media,
.city-catalog-card .catalog-card-media {
  background:
    linear-gradient(180deg, rgba(9, 24, 33, 0.1), rgba(9, 24, 33, 0.78)),
    url("assets/hero-transfer.png") center / cover no-repeat;
}

.catalog-card-media span {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.catalog-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.catalog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 24, 33, 0.08), rgba(9, 24, 33, 0.82));
}

.catalog-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

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

.catalog-meta {
  display: grid;
  gap: 8px;
  margin: 4px 0;
}

.catalog-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.catalog-meta dt {
  color: var(--muted);
}

.catalog-meta dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list p {
  margin: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.micro-link {
  margin: 14px 0 0;
}

.micro-link a {
  color: var(--brand-dark);
  font-weight: 700;
}

.commercial-benefits {
  padding-top: 40px;
}

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

.trip-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 33, 48, 0.08);
}

.trip-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.trip-card-top span {
  padding: 5px 9px;
  color: var(--brand-dark);
  background: rgba(15, 107, 99, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.trip-card-top strong {
  color: var(--accent);
  font-size: 20px;
}

.trip-card p {
  margin: 0;
  color: var(--muted);
}

.trip-card dl {
  display: grid;
  gap: 8px;
  margin: 4px 0;
}

.trip-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.trip-card dt {
  color: var(--muted);
}

.trip-card dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.pickup-note {
  display: grid;
  gap: 4px;
  width: min(420px, 100%);
  margin-top: 18px;
  padding: 16px;
  background: var(--accent-soft);
  border: 1px solid #f1d7a5;
  border-radius: 8px;
}

.pickup-note span {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  position: relative;
  padding: 0 0 18px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 86px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: var(--brand);
  border-radius: 50%;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 90px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item > span {
  color: var(--accent);
  font-weight: 800;
}

.timeline-item p {
  margin: 2px 0 0;
  color: var(--muted);
}

.info-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.destination-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.destination-cloud span {
  padding: 9px 12px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.return-subhero {
  padding-bottom: 38px;
}

.return-card-media {
  background-position: center 62%;
}

.price-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

.price-table th {
  color: var(--muted);
  background: #f9fbfc;
  font-size: 14px;
}

.price-table td a {
  color: var(--brand-dark);
  font-weight: 700;
}

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

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 62px;
}

.benefit {
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
}

.benefit-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.fleet-slider {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 18px;
}

.fleet-slider-toolbar,
.fleet-slider-meta,
.fleet-slider-controls,
.fleet-slider-dots {
  display: flex;
  align-items: center;
}

.fleet-slider-toolbar {
  justify-content: space-between;
  gap: 20px;
}

.fleet-slider-meta {
  gap: 16px;
}

.fleet-slider-meta > strong {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.fleet-slider-meta > span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.fleet-slider-controls {
  gap: 8px;
}

.fleet-slider-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.fleet-slider-controls button:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.fleet-slider-viewport {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.fleet-slider-viewport::-webkit-scrollbar {
  display: none;
}

.fleet-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
}

.fleet-slide {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  background: #17242d;
  border-radius: 8px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.fleet-slide:hover img {
  transform: scale(1.035);
}

.fleet-slide::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 15, 22, 0.88));
  pointer-events: none;
}

.fleet-slide figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: grid;
  gap: 3px;
  color: var(--white);
}

.fleet-slide figcaption strong {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
}

.fleet-slide figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.fleet-slider-dots {
  justify-content: center;
  gap: 7px;
}

.fleet-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #c8d2d8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.fleet-slider-dots button[aria-current="true"] {
  width: 26px;
  background: var(--brand);
  border-radius: 8px;
}

.testimonials-section {
  background: var(--white);
}

.testimonials-slider {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 18px;
}

.testimonials-slider-toolbar,
.testimonials-slider-meta,
.testimonials-slider-controls,
.testimonials-slider-dots {
  display: flex;
  align-items: center;
}

.testimonials-slider-toolbar {
  justify-content: space-between;
  gap: 20px;
}

.testimonials-slider-meta {
  gap: 16px;
}

.testimonials-slider-meta > strong {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.testimonials-slider-meta > span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.testimonials-slider-controls {
  gap: 8px;
}

.testimonials-slider-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.testimonials-slider-controls button:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.testimonials-slider-viewport {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.testimonials-slider-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
}

.testimonial-card {
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
  padding: 24px;
  max-height: 430px;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.testimonial-card h3 {
  margin: 0 0 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.testimonial-card-top p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-message {
  position: relative;
  margin: 0;
  color: #2d3945;
  font-size: 17px;
  line-height: 1.65;
}

.testimonial-message::before {
  content: "“";
  display: block;
  height: 32px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.75;
}

.testimonials-slider-dots {
  justify-content: center;
  gap: 7px;
}

.testimonials-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #c8d2d8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.testimonials-slider-dots button[aria-current="true"] {
  width: 26px;
  background: var(--brand);
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.questions-section {
  display: grid;
  gap: 56px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.55fr);
  gap: 38px;
  align-items: start;
}

.faq-group-heading {
  position: sticky;
  top: 92px;
}

.faq-group-heading h2 {
  margin: 6px 0 10px;
}

.faq-group-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  position: relative;
  list-style: none;
  min-height: 56px;
  padding: 16px 52px 16px 18px;
  font-weight: 700;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

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

.question-checklist article strong {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 620px;
  margin: 6px 0 0;
}

.footer-source-link {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1200px) {
  .hero h1 {
    max-width: 650px;
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .faq-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-group-heading {
    position: static;
  }

  .question-checklist .conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-height: 760px) and (min-width: 621px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding-top: 20px;
    padding-bottom: 70px;
  }

  .hero .eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 650px;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 660px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-route-search {
    margin-top: 13px;
    padding: 8px;
  }

  .hero-route-search label {
    gap: 5px;
    font-size: 12px;
  }

  .hero-route-search input {
    min-height: 42px;
  }

  .autocomplete input {
    background-position:
      calc(100% - 18px) 18px,
      calc(100% - 13px) 18px;
  }

  .route-arrow {
    height: 42px;
  }

  .hero-search-note {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero-facts div {
    padding: 8px 10px;
  }

  .hero-facts dt {
    font-size: 16px;
  }

  .hero-facts dd {
    font-size: 11px;
  }
}

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

  .booking-form,
  .route-grid,
  .benefits,
  .subhero,
  .service-grid,
  .link-grid,
  .conditions-grid,
  .two-column,
  .trip-card-grid,
  .info-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .wide-field {
    grid-column: auto;
  }

  .hero {
    padding-inline: 24px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 42px;
  }

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

  .booking-trip-note {
    grid-template-columns: 1fr;
  }

  .fleet-slider-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }

  .testimonials-slider-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 64px;
  }

  .questions-section {
    gap: 38px;
  }

  .fleet-slider-track {
    grid-auto-columns: 100%;
    gap: 10px;
  }

  .testimonials-slider-track {
    grid-auto-columns: 100%;
    gap: 10px;
  }

  .fleet-slider-toolbar,
  .testimonials-slider-toolbar {
    align-items: center;
    gap: 12px;
  }

  .fleet-slider-meta,
  .testimonials-slider-meta {
    display: grid;
    gap: 3px;
    min-width: 0;
  }

  .fleet-slider-meta > strong,
  .testimonials-slider-meta > strong {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fleet-slider-meta > span,
  .testimonials-slider-meta > span {
    font-size: 13px;
  }

  .fleet-slider-controls button,
  .testimonials-slider-controls button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 21px;
  }

  .fleet-slide {
    aspect-ratio: 4 / 5;
  }

  .fleet-slide figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .fleet-slide figcaption strong {
    font-size: 17px;
  }

  .fleet-slide figcaption span {
    font-size: 12px;
  }

  .testimonial-card {
    min-height: 270px;
    max-height: 380px;
    padding: 20px;
  }

  .testimonial-message {
    font-size: 15px;
    line-height: 1.55;
  }

  .fleet-slider-dots,
  .testimonials-slider-dots {
    gap: 6px;
  }

  .fleet-slider-dots button,
  .testimonials-slider-dots button {
    width: 7px;
    height: 7px;
  }

  .fleet-slider-dots button[aria-current="true"],
  .testimonials-slider-dots button[aria-current="true"] {
    width: 22px;
  }

  .question-checklist .conditions-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    min-height: 62px;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 9px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(142px, 48vw, 178px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

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

  .header-contacts {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 62px);
    align-items: flex-start;
    padding: 24px 16px 68px;
    background-position: 58% center;
  }

  .hero::after {
    height: 76px;
  }

  .hero .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-route-search {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 14px;
    padding: 9px;
  }

  .hero-route-search label {
    gap: 4px;
    font-size: 11px;
  }

  .hero-route-search input {
    min-height: 42px;
    font-size: 14px;
  }

  .route-arrow {
    width: 100%;
    height: 14px;
    transform: rotate(90deg);
    font-size: 18px;
  }

  .hero-search-note {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-facts {
    gap: 5px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 8px 6px;
    text-align: center;
  }

  .hero-facts dt {
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  .hero-facts dd {
    font-size: 10px;
  }

  .autocomplete-list {
    max-height: 180px;
  }

  .button {
    width: 100%;
  }

  .city-list {
    grid-template-columns: 1fr;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 32px rgba(16, 33, 48, 0.18);
  }

  .mobile-contact-bar a {
    min-width: 0;
    padding-inline: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 42px;
    color: var(--white);
    background: var(--brand);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
  }

  .mobile-contact-bar .messenger-icons {
    gap: 3px;
  }

  .mobile-contact-bar .messenger-icons img {
    width: 15px;
    height: 15px;
  }

  .mobile-contact-bar a > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-contact-bar a:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 380px) {
  .fleet-slider-toolbar {
    align-items: flex-end;
  }

  .fleet-slider-meta > strong {
    max-width: 190px;
  }

  .fleet-slider-controls {
    gap: 6px;
  }

  .fleet-slider-controls button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (max-width: 380px) {
  .header-phone {
    font-size: 11px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    font-size: 27px;
  }

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

  .hero-facts dt {
    font-size: 12px;
  }
}

@media (max-width: 380px) and (max-height: 650px) {
  .site-header {
    min-height: 54px;
    padding: 6px 12px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

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

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

  .hero {
    min-height: calc(100svh - 54px);
    padding: 12px 12px 58px;
  }

  .hero .eyebrow {
    margin-bottom: 4px;
    font-size: 8px;
  }

  .hero h1 {
    margin-bottom: 7px;
    font-size: 23px;
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 12px;
    line-height: 1.28;
  }

  .hero-route-search {
    gap: 3px;
    margin-top: 9px;
    margin-bottom: 5px;
    padding: 7px;
  }

  .hero-route-search label {
    gap: 2px;
    font-size: 9px;
  }

  .hero-route-search input {
    min-height: 36px;
    padding-inline: 10px 32px;
    font-size: 12px;
  }

  .autocomplete input {
    background-position:
      calc(100% - 16px) 15px,
      calc(100% - 11px) 15px;
  }

  .route-arrow {
    height: 10px;
    font-size: 14px;
  }

  .hero-search-note {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .hero-facts {
    gap: 4px;
  }

  .hero-facts div {
    padding: 5px 3px;
  }

  .hero-facts dt {
    font-size: 11px;
  }

  .hero-facts dd {
    font-size: 8px;
  }

  .mobile-contact-bar {
    bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    min-height: 92px;
    padding: 6px;
  }

  .mobile-contact-bar a {
    min-height: 38px;
    font-size: 10px;
  }
}
