﻿:root {
  --ink: #101214;
  --soft-ink: #4e555c;
  --paper: #f7f8f8;
  --panel: #ffffff;
  --line: #dfe4e8;
  --charcoal: #12171b;
  --steel: #66717b;
  --red: #0f9fd5;
  --red-dark: #087daa;
  --sand: #9ccbe3;
  --green: #128c54;
  --shadow: 0 24px 70px rgba(16, 18, 20, 0.16);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(15, 159, 213, 0.08), transparent 28%),
    linear-gradient(45deg, transparent 0 58%, rgba(18, 23, 27, 0.045) 58% 60%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 34%, #eef4f6 100%);
  color: var(--ink);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(18, 23, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 27, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 72%, transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(15, 159, 213, 0.2), transparent 26%),
    linear-gradient(135deg, #f9fbfc 0%, #eef4f7 46%, #dfeaf0 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.brand-loader::before,
.brand-loader::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-loader::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 23, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 42%, transparent 68%);
}

.brand-loader::after {
  width: 140%;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.94), transparent);
  transform: translateX(-115%) rotate(-10deg);
  animation: loader-sweep 1.1s ease 0.18s forwards;
}

.loader-card {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 34px 42px 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 30px 90px rgba(16, 18, 20, 0.18);
  backdrop-filter: blur(20px) saturate(1.15);
  animation: loader-card-in 0.65s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.loader-card img {
  width: min(260px, 64vw);
  animation: loader-logo-in 0.78s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.loader-line {
  position: relative;
  width: min(270px, 62vw);
  height: 3px;
  overflow: hidden;
  background: rgba(18, 23, 27, 0.12);
}

.loader-line::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #0f9fd5, #7db3cc, #16a45f);
  transform-origin: left center;
  animation: loader-line 0.95s ease 0.18s both;
}

.loader-copy {
  color: #34414b;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: loader-copy-in 0.7s ease 0.28s both;
}

.brand-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes loader-card-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loader-logo-in {
  from { opacity: 0; transform: scale(0.88); filter: blur(8px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes loader-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes loader-copy-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loader-sweep {
  to { transform: translateX(115%) rotate(-10deg); }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px max(24px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid rgba(18, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(2, 10, 16, 0.12);
  backdrop-filter: blur(20px) saturate(1.16);
}

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

.logo-brand {
  display: block;
  align-items: center;
  min-width: 0;
  width: max-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-brand img {
  width: 176px;
  height: auto;
}

.logo-brand small {
  max-width: 74px;
  color: var(--steel);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--charcoal);
  color: var(--sand);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small { display: block; line-height: 1.1; }
.brand small { margin-top: 4px; color: var(--steel); font-size: 0.75rem; }

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: max-content;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav a,
.whatsapp {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 0;
  color: #24313b;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.nav a:hover,
.nav a.active {
  border-color: rgba(15, 159, 213, 0.18);
  background: #0f9fd5;
  color: white;
  box-shadow: 0 10px 24px rgba(15, 159, 213, 0.26);
}

.tursab {
  justify-self: end;
  padding: 8px 12px;
  border-left: 3px solid var(--red);
  color: #33414d;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-select {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #24313b;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.language-picker {
  position: relative;
  z-index: 20;
}

.language-button,
.language-menu button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #24313b;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.language-button {
  padding: 0 10px;
}

.language-button b {
  font-size: 0.78rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 116px;
  padding: 6px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 36px rgba(16, 18, 20, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.language-picker.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  justify-content: start;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  background: transparent;
}

.language-menu button:hover {
  background: rgba(15, 159, 213, 0.1);
}

.flag {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 23, 27, 0.12);
  border-radius: 0;
  background-color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 3px 8px rgba(18, 23, 27, 0.14);
}

.flag-gb {
  background-image: url("assets/flags/gb.svg");
}

.flag-ru {
  background-image: url("assets/flags/ru.svg");
}

.flag-sa {
  background-image: url("assets/flags/sa.svg");
}

.flag-cn {
  background-image: url("assets/flags/cn.svg");
}

.flag-es {
  background-image: url("assets/flags/es.svg");
}

.flag-tr {
  background-image: url("assets/flags/tr.svg");
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
}

.whatsapp {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: #16a45f;
  color: white;
  box-shadow: 0 12px 30px rgba(18, 140, 84, 0.28);
}

.whatsapp svg,
.floating-whatsapp svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.route-planner,
.service-grid,
.preview-section,
.page,
.site-footer {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 94vh;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-slider,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 17, 0.9) 0%, rgba(8, 13, 17, 0.66) 45%, rgba(8, 13, 17, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 13, 17, 0.7), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: 160px 0 74px;
  color: white;
}

.kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.45vw, 4.35rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

h3 { margin-bottom: 8px; }

.hero-copy p,
.page-hero p,
.content-band p,
.detail-grid p,
.service-grid p,
.tour-row em,
.contact-panel p {
  color: var(--soft-ink);
}

.hero-copy p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.13rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 1px;
  width: max-content;
  max-width: 100%;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts span {
  display: grid;
  min-width: 170px;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.hero-facts strong {
  color: white;
  font-size: 1.02rem;
}

.hero-slider-ui {
  display: flex;
  width: max-content;
  max-width: 100%;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 850;
}

.hero-dots {
  display: inline-flex;
  gap: 7px;
}

.hero-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
}

.hero-dots i.active {
  width: 24px;
  background: var(--red);
  border-color: var(--red);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button,
button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  background: var(--charcoal);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button.primary,
button { background: var(--red); }
.button.primary:hover,
button:hover { background: var(--red-dark); }
.button.secondary { border-color: rgba(255, 255, 255, 0.48); background: rgba(255, 255, 255, 0.08); color: white; }
.button.dark { background: var(--charcoal); }
.compact { margin-top: 8px; }

.section-title {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.route-planner {
  position: relative;
  z-index: 4;
  margin-top: -92px;
  padding: 0 22px 30px;
  border: 1px solid rgba(18, 23, 27, 0.12);
  background:
    linear-gradient(135deg, rgba(15, 159, 213, 0.07), transparent 34%),
    #fff;
  box-shadow: 0 28px 70px rgba(10, 16, 20, 0.18);
}

.route-planner .section-title {
  grid-template-columns: 230px 1fr;
  padding: 24px 4px 0;
  border-top: 0;
}

.route-planner .section-title h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(430px, 1.02fr) minmax(420px, 0.98fr);
  gap: 18px;
  margin-top: 20px;
}

.route-card,
.map-card,
.service-grid article,
.content-band article,
.contact-panel,
.contact-form,
.values,
.detail-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(16, 18, 20, 0.08);
  backdrop-filter: blur(12px);
}

.route-card,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.booking-card {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(15, 159, 213, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.94);
}

.booking-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  background: #f2f6f7;
}

.booking-tabs span {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-tabs .active {
  background: var(--red);
  color: white;
  box-shadow: 0 10px 24px rgba(15, 159, 213, 0.24);
}

.booking-card > label:nth-of-type(1),
.booking-card > label:nth-of-type(2),
.booking-card > label:last-of-type,
.booking-card .button-row {
  grid-column: 1 / -1;
}

.booking-card .button-row {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
}

.booking-card .button,
.booking-card button {
  min-height: 54px;
  font-size: 0.95rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

textarea { resize: vertical; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.autocomplete-field {
  position: relative;
}

.place-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 25;
  display: none;
  max-height: 280px;
  overflow: auto;
  border: 1px solid rgba(18, 23, 27, 0.14);
  background: white;
  box-shadow: 0 22px 54px rgba(16, 18, 20, 0.16);
}

.place-menu.is-open {
  display: grid;
}

.place-option {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
  text-align: left;
}

.place-option:hover,
.place-option:focus {
  background: #eef7fa;
}

.place-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #101217;
  color: white;
  font-size: 0.75rem;
  font-weight: 950;
}

.place-option strong,
.place-option small {
  display: block;
}

.place-option strong {
  font-size: 0.92rem;
}

.place-option small {
  margin-top: 2px;
  color: var(--soft-ink);
  font-size: 0.74rem;
  font-weight: 800;
}

.map-card { overflow: hidden; min-height: 555px; }
.map-card iframe { width: 100%; height: 100%; min-height: 555px; border: 0; }
.route-planner .map-card,
.route-planner .map-card iframe {
  min-height: 476px;
}
.contact-map { margin-top: 22px; min-height: 360px; }
.contact-map iframe { min-height: 360px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px 0 64px;
}

.service-grid article,
.content-band article,
.detail-grid article {
  padding: 22px;
}

.service-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.service-grid article img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-grid article:hover img {
  transform: scale(1.045);
}

.service-grid article div {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(15, 159, 213, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.94);
}

.service-grid article div::before {
  position: absolute;
  top: -3px;
  left: 22px;
  width: 56px;
  height: 5px;
  content: "";
  background: var(--red);
}

.service-grid span,
.tour-row small {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-section { padding-bottom: 70px; }

.real-fleet {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto 70px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 159, 213, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.real-fleet img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.real-fleet p:not(.kicker) {
  max-width: 620px;
  color: var(--soft-ink);
}

.vehicle-gallery {
  width: min(1160px, calc(100% - 44px));
  margin: -38px auto 78px;
}

.vehicle-gallery-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vehicle-gallery-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.vehicle-gallery-head p {
  max-width: 340px;
  margin: 0;
  color: var(--soft-ink);
}

.vehicle-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.vehicle-gallery-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101217;
  box-shadow: 0 16px 38px rgba(16, 18, 20, 0.08);
}

.vehicle-gallery-grid figure:first-child {
  grid-row: span 2;
}

.vehicle-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vehicle-gallery-grid figure:hover img {
  transform: scale(1.035);
}

.vehicle-gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  background: rgba(18, 23, 27, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.tour-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 18px;
}

.tour-preview a,
.tour-row {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(16, 18, 20, 0.06);
}

.tour-preview img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.tour-preview strong {
  display: block;
  padding: 15px;
  font-size: 1.08rem;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page {
  padding: 138px 0 70px;
}

.page-hero {
  padding: 36px 0 34px;
}

.page-hero.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: end;
}

.page-hero.split img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  border: 1px solid var(--line);
}

.content-band,
.detail-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.values {
  margin-top: 16px;
  padding: 26px;
}

.founder-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 18px;
}

.founder-card,
.real-service-photo {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(16, 18, 20, 0.08);
  overflow: hidden;
}

.founder-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
}

.founder-card-text {
  grid-template-columns: 1fr;
}

.founder-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.founder-card div {
  padding: 24px;
}

.founder-card p:not(.kicker) {
  color: var(--soft-ink);
}

.real-service-photo {
  position: relative;
  margin: 0;
}

.real-service-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.real-service-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(18, 23, 27, 0.82);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.values ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 0;
  padding-left: 20px;
  color: var(--soft-ink);
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-panel {
  padding: 26px;
}

.tour-list {
  display: grid;
  gap: 14px;
}

.tour-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
  padding: 12px;
}

.tour-row img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.tour-row strong,
.tour-row em {
  display: block;
}

.tour-row strong {
  margin: 5px 0;
  font-size: 1.45rem;
}

.tour-row em {
  font-style: normal;
}

.tour-detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: end;
  padding: 28px 0 24px;
}

.tour-detail-hero img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding: 30px 34px;
  border: 1px solid #e4e8ec;
  border-radius: 18px;
  background: #f3f5f6;
  color: var(--soft-ink);
}

.site-footer p { margin-bottom: 0; }
.site-footer a { color: var(--ink); font-weight: 800; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: #16a45f;
  color: white;
  box-shadow: 0 20px 44px rgba(18, 140, 84, 0.38);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 880px) {
  .topbar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px 12px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.94);
  }
  .logo-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: start;
    overflow-x: auto;
  }
  .tursab {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    white-space: nowrap;
    font-size: 0.72rem;
  }
  .language-select,
  .language-picker {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
  }
  .language-button {
    width: 100%;
    justify-content: center;
  }
  .language-menu {
    right: auto;
    left: 0;
    width: 100%;
  }
  .whatsapp {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
  }
  .home-hero,
  .route-layout,
  .section-title,
  .route-planner .section-title,
  .service-grid,
  .tour-preview,
  .real-fleet,
  .vehicle-gallery-grid,
  .page-hero.split,
  .content-band,
  .values ul,
  .founder-section,
  .contact-layout,
  .tour-detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .tour-row {
    grid-template-columns: 150px 1fr;
  }
  .founder-card {
    grid-template-columns: 1fr;
  }
  .vehicle-gallery-head {
    display: grid;
    align-items: start;
  }
  .vehicle-gallery-grid figure:first-child {
    grid-row: auto;
  }
  .hero-facts {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }
  .route-planner {
    margin-top: 0;
    padding: 0 14px 24px;
  }
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-card .button-row {
    grid-template-columns: 1fr;
  }
  .page {
    padding-top: 36px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding-inline: 12px;
  }
  .brand { min-width: 0; }
  .logo-brand {
    justify-self: start;
  }
  .brand small { display: block; }
  .route-planner,
  .service-grid,
  .preview-section,
  .real-fleet,
  .vehicle-gallery,
  .page,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }
  .field-pair,
  .button-row,
  .site-footer,
  .tour-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button,
  button {
    width: 100%;
  }
  .map-card,
  .map-card iframe {
    min-height: 410px;
  }
  h1 {
    font-size: clamp(2.15rem, 8.8vw, 2.85rem);
  }
  .hero-copy {
    width: min(100% - 24px, 1160px);
    padding-top: 190px;
  }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* Istvia-inspired Airport Istanbul Car theme */
.istvia-inspired {
  --iv-blue: #0f9fd5;
  --iv-blue-dark: #087faf;
  --iv-ink: #06080d;
  --iv-muted: #5f6673;
  --iv-line: #dfe2e8;
  --iv-soft: #f6f6f7;
  background: #fff;
  color: var(--iv-ink);
  font-family: "Poppins", system-ui, sans-serif;
}

.istvia-inspired h1,
.istvia-inspired h2,
.istvia-inspired h3 {
  font-family: "Poppins", system-ui, sans-serif;
  letter-spacing: 0;
}

.iv-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  padding: 24px 0;
}

.iv-logo img {
  display: block;
  width: 154px;
  height: auto;
}

.iv-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.iv-nav a,
.iv-actions a {
  color: var(--iv-ink);
  font-weight: 700;
  text-decoration: none;
}

.iv-nav a {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.iv-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #25d366, var(--iv-blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.iv-nav a:hover,
.iv-nav a:focus-visible {
  color: #0b8fc0;
}

.iv-nav a:hover::after,
.iv-nav a:focus-visible::after {
  transform: scaleX(1);
}

.iv-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.iv-lang {
  display: inline-flex;
  width: 34px;
  min-width: 34px;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(18, 23, 27, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: #141820;
  font-size: 0;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.iv-lang .flag {
  width: 25px;
  height: 17px;
  flex: 0 0 auto;
}

.iv-lang:hover,
.iv-lang.active {
  border-color: rgba(15, 159, 213, 0.32);
  background: rgba(238, 249, 253, 0.86);
  box-shadow: 0 10px 18px rgba(15, 159, 213, 0.1);
  transform: translateY(-1px);
}

.iv-login {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.iv-login span {
  display: none;
}

.iv-login svg,
.iv-live svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  flex: 0 0 auto;
}

.iv-login:hover,
.iv-login:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
  filter: saturate(1.08);
}

.iv-hero {
  position: relative;
  width: min(1368px, calc(100% - 72px));
  min-height: 630px;
  margin: 4px auto 0;
  overflow: visible;
  border-radius: 32px;
  background: #101014;
}

.iv-hero-media,
.iv-hero-bg,
.iv-hero-shade {
  position: absolute;
  inset: 0;
}

.iv-hero-media {
  overflow: hidden;
  border-radius: inherit;
}

.iv-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 5s ease;
}

.iv-hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.iv-hero-shade {
  background:
    radial-gradient(circle at 86% 45%, rgba(15, 159, 213, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(2, 5, 10, 0.86), rgba(2, 5, 10, 0.42) 49%, rgba(2, 5, 10, 0.06)),
    linear-gradient(0deg, rgba(2, 5, 10, 0.82), rgba(2, 5, 10, 0.02) 58%);
}

.iv-hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 80px));
  padding: 82px 0 0 100px;
  color: #fff;
}

.iv-hero-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 2.65vw, 2.9rem);
  font-weight: 600;
  line-height: 1.08;
}

.iv-hero-copy p {
  color: rgba(255, 255, 255, 0.94);
  max-width: 500px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
}

.iv-slider-control {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.iv-slider-control button {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.35rem;
}

.iv-slider-control span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.iv-slider-control span.active {
  background: #fff;
}

.iv-booking {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 60px;
  z-index: 40;
}

.iv-booking-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.iv-booking-tabs button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--iv-ink);
  box-shadow: none;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.iv-booking-tabs button.active {
  background: var(--iv-blue);
  color: #fff;
}

.iv-booking-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) 34px minmax(200px, 1.1fr) minmax(116px, 0.5fr) minmax(92px, 0.38fr) minmax(104px, 0.42fr) minmax(112px, 0.44fr) 66px;
  gap: 8px;
  align-items: center;
  min-height: 92px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.iv-booking label {
  display: grid;
  position: relative;
  min-height: 64px;
  align-content: center;
  padding: 8px 12px 8px 38px;
  border: 1px solid #d7dae1;
  border-radius: 7px;
  background: #fff;
  overflow: visible;
}

.iv-booking label::before {
  position: absolute;
  left: 12px;
  top: 50%;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #edf8fc;
  color: var(--iv-blue);
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
}

.iv-booking label:nth-of-type(1) {
  grid-column: 1;
}

.iv-booking label:nth-of-type(1)::before {
  content: "A";
}

.iv-booking label:nth-of-type(2) {
  grid-column: 3;
}

.iv-booking label:nth-of-type(2)::before {
  content: "B";
}

.iv-booking label:nth-of-type(3) {
  grid-column: 4;
}

.iv-booking label:nth-of-type(3)::before {
  content: "D";
}

.iv-booking label:nth-of-type(4) {
  grid-column: 5;
}

.iv-booking label:nth-of-type(4)::before {
  content: "R";
}

.iv-booking label:nth-of-type(5) {
  grid-column: 5;
}

.iv-booking label:nth-of-type(5)::before {
  content: "T";
}

.iv-booking label:nth-of-type(6) {
  grid-column: 6;
}

.iv-booking label:nth-of-type(6)::before {
  content: "\2194";
}

.iv-booking label:nth-of-type(7) {
  grid-column: 7;
}

.iv-booking label:nth-of-type(7)::before {
  content: "P";
}

.iv-booking label span {
  margin-bottom: 3px;
  color: #17191f;
  font-size: 0.74rem;
  font-weight: 700;
}

.iv-booking input,
.iv-booking select,
.iv-booking textarea {
  min-height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #06080d;
  font-size: 0.94rem;
  font-weight: 700;
  outline: 0;
}

.native-picker-field {
  cursor: pointer;
}

.native-picker-field input[type="date"],
.native-picker-field input[type="time"] {
  position: relative;
  z-index: 2;
}

.native-picker-field::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.iv-booking input[type="date"],
.iv-booking input[type="time"] {
  cursor: pointer;
}

.iv-booking input[type="date"]::-webkit-calendar-picker-indicator,
.iv-booking input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.iv-booking select,
.iv-booking textarea {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.iv-swap {
  display: grid;
  position: relative;
  z-index: 2;
  grid-column: 2;
  width: 34px;
  height: 34px;
  min-height: 34px;
  place-items: center;
  margin-inline: 0;
  padding: 0;
  border: 1px solid #dfe2e8;
  border-radius: 999px;
  background: #fff;
  color: var(--iv-blue);
  font-size: 1rem;
}

.iv-round {
  align-content: center;
  min-width: 0;
  min-height: 64px;
  grid-template-columns: 1fr auto;
  column-gap: 5px;
  padding-left: 34px;
  padding-right: 8px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.iv-round span:first-child {
  margin-bottom: 0;
  line-height: 1.15;
}

.iv-toggle {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 30px;
  height: 18px;
  margin: 1px 0 2px;
}

.iv-toggle input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
}

.iv-toggle i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #dce1e7;
}

.iv-toggle i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease;
}

.iv-toggle input:checked + i {
  background: var(--iv-blue);
}

.iv-toggle input:checked + i::after {
  transform: translateX(12px);
}

.iv-round small {
  grid-column: 1;
  color: #15b94f;
  font-size: 0.63rem;
  font-weight: 900;
  line-height: 1;
}

.iv-search {
  display: grid;
  grid-column: 8;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  background: var(--iv-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(15, 159, 213, 0.32);
  justify-self: end;
  margin-left: 0;
}

.iv-return-date {
  display: none !important;
}

.iv-booking.has-return .iv-return-date {
  display: grid !important;
}

.iv-booking.has-return .iv-booking-bar {
  grid-template-columns: minmax(172px, 1.02fr) 34px minmax(172px, 1.02fr) minmax(102px, 0.42fr) minmax(102px, 0.42fr) minmax(84px, 0.32fr) minmax(102px, 0.38fr) minmax(104px, 0.38fr) 66px;
}

.iv-booking.has-return label:nth-of-type(5) {
  grid-column: 6;
}

.iv-booking.has-return label:nth-of-type(6) {
  grid-column: 7;
}

.iv-booking.has-return label:nth-of-type(7) {
  grid-column: 8;
}

.iv-booking.has-return .iv-search {
  grid-column: 9;
}

.iv-passenger-field {
  position: relative;
}

.iv-passenger-field button {
  display: block;
  width: 100%;
  min-height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #06080d;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: left;
}

.passenger-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 140;
  display: none;
  max-height: 330px;
  overflow: auto;
  border: 1px solid #dfe2e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 18, 20, 0.16);
}

.passenger-menu.is-open {
  display: grid;
}

.passenger-menu button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid #eef0f4;
  background: #fff;
  color: #101217;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
}

.passenger-menu button:hover {
  background: #eef9fd;
}

.iv-open-map {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
}

.route-preview-open {
  overflow: hidden;
}

.route-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 28px;
}

.route-preview-modal[hidden] {
  display: none;
}

.route-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 13, 0.68);
  backdrop-filter: blur(12px);
}

.route-preview-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 56px));
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.38);
}

.route-preview-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #f2f6f8;
  color: #11151c;
  font-size: 1.4rem;
  font-weight: 800;
}

.route-preview-copy {
  max-width: 620px;
  padding-right: 48px;
}

.route-preview-copy span {
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-preview-copy h2 {
  margin: 8px 0 8px;
  color: #101217;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.route-preview-copy p {
  margin: 0;
  color: #4a5260;
  font-weight: 600;
  line-height: 1.5;
}

.route-preview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 18px;
  margin-top: 24px;
}

.route-preview-summary {
  display: grid;
  gap: 9px;
}

.route-preview-summary article {
  display: grid;
  gap: 4px;
  min-height: 64px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid #dfe4ea;
  border-radius: 10px;
  background: #fbfdfe;
}

.route-preview-summary span {
  color: #65707c;
  font-size: 0.76rem;
  font-weight: 800;
}

.route-preview-summary strong {
  color: #11151c;
  font-size: 0.98rem;
  line-height: 1.2;
}

.route-preview-map {
  min-height: 442px;
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 12px;
  background: #eef5f8;
}

.route-preview-map iframe {
  width: 100%;
  height: 100%;
  min-height: 442px;
  border: 0;
}

.route-preview-fleet {
  margin-top: 18px;
}

.route-preview-fleet-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.route-preview-fleet-head span {
  color: var(--iv-blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-preview-fleet-head strong {
  color: #11151c;
  font-size: 1rem;
}

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

.route-preview-vehicle {
  display: grid;
  grid-template-columns: 104px 1fr;
  grid-template-rows: auto auto;
  gap: 10px 12px;
  align-items: center;
  min-height: 126px;
  padding: 10px;
  border: 1px solid #dfe4ea;
  border-radius: 12px;
  background: #fff;
  color: #11151c;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.route-preview-vehicle:hover,
.route-preview-vehicle.is-selected {
  border-color: rgba(15, 159, 213, 0.72);
  box-shadow: 0 16px 34px rgba(15, 159, 213, 0.14);
  transform: translateY(-1px);
}

.route-preview-vehicle.is-selected {
  background: #f2fbff;
}

.route-preview-vehicle img {
  grid-row: 1 / span 2;
  width: 104px;
  height: 86px;
  object-fit: cover;
  border-radius: 9px;
  background: #eef5f8;
}

.route-preview-vehicle span {
  display: grid;
  gap: 4px;
}

.route-preview-vehicle b {
  font-size: 0.96rem;
  line-height: 1.15;
}

.route-preview-vehicle small {
  color: #5c6672;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.route-preview-vehicle em {
  color: #1f2933;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
}

.route-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.route-preview-actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #eef5f8;
  color: #11151c;
  font-weight: 900;
  text-decoration: none;
}

.route-preview-actions .route-preview-whatsapp {
  background: var(--iv-blue);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 159, 213, 0.28);
}

.route-result-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.route-result-main {
  width: min(1180px, calc(100% - 72px));
  margin: 18px auto 46px;
}

.route-result-hero {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  padding: 42px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(2, 5, 10, 0.86), rgba(2, 5, 10, 0.36)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/IstanbulAirport%20%282%29.jpg?width=1600") center/cover;
  color: #fff;
}

.route-result-hero span,
.route-result-head span {
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-result-hero h1 {
  max-width: 620px;
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
}

.route-result-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.55;
}

.route-result-hero > a,
.route-result-actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #101217;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.route-result-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(460px, 1.2fr);
  gap: 18px;
  margin-top: 18px;
}

.route-result-card,
.route-result-map-card {
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(16, 18, 20, 0.08);
}

.route-result-card {
  padding: 22px;
}

.route-result-head {
  display: flex;
  gap: 12px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.route-result-head strong {
  color: #101217;
  font-size: 1.05rem;
}

.route-result-summary {
  display: grid;
  gap: 9px;
}

.route-result-summary article {
  display: grid;
  gap: 4px;
  min-height: 62px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid #dfe4ea;
  border-radius: 10px;
  background: #fbfdfe;
}

.route-result-summary article span {
  color: #687381;
  font-size: 0.75rem;
  font-weight: 800;
}

.route-result-summary article strong {
  color: #11151c;
  line-height: 1.22;
}

.route-result-map-card {
  min-height: 580px;
  overflow: hidden;
}

.route-result-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
}

.route-result-fleet-card {
  margin-top: 18px;
}

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

.route-result-vehicle {
  display: grid;
  grid-template-columns: 130px 1fr;
  grid-template-rows: auto auto;
  gap: 12px 14px;
  align-items: center;
  min-height: 150px;
  padding: 12px;
  border: 1px solid #dfe4ea;
  border-radius: 14px;
  background: #fff;
  color: #11151c;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.route-result-vehicle:hover,
.route-result-vehicle.is-selected {
  border-color: rgba(15, 159, 213, 0.72);
  background: #f2fbff;
  box-shadow: 0 18px 38px rgba(15, 159, 213, 0.14);
  transform: translateY(-1px);
}

.route-result-vehicle img {
  grid-row: 1 / span 2;
  width: 130px;
  height: 106px;
  object-fit: cover;
  border-radius: 10px;
  background: #eef5f8;
}

.route-result-vehicle span {
  display: grid;
  gap: 5px;
}

.route-result-vehicle b {
  font-size: 1rem;
}

.route-result-vehicle small {
  color: #5c6672;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.route-result-vehicle em {
  color: #1f2933;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.route-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-bottom: 34px;
}

.route-result-body .iv-footer {
  margin-bottom: 78px;
}

.route-result-actions a {
  background: #eef5f8;
}

.route-result-actions .route-result-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.26);
}

.about-v2-body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.about-v2 {
  width: min(1180px, calc(100% - 72px));
  margin: 18px auto 52px;
}

.about-v2-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.about-v2-copy,
.about-v2-media {
  border-radius: 24px;
  overflow: hidden;
}

.about-v2-copy {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding: 46px;
  background: #101217;
  color: #fff;
}

.about-v2-copy > span,
.about-kicker,
.about-v2-section-head span {
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-v2-copy h1 {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.about-v2-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.58;
}

.about-v2-media {
  position: relative;
  min-height: 560px;
}

.about-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-v2-media div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  background: rgba(8, 12, 18, 0.68);
  color: #fff;
  backdrop-filter: blur(10px);
}

.about-v2-media strong {
  font-size: 1.1rem;
}

.about-v2-media span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.about-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.about-v2-stats article,
.about-v2-split,
.about-v2-fleet,
.about-v2-founder {
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(16, 18, 20, 0.06);
}

.about-v2-stats article {
  display: grid;
  gap: 6px;
  min-height: 126px;
  align-content: center;
  padding: 20px;
}

.about-v2-stats strong {
  color: #11151c;
  font-size: 1.35rem;
}

.about-v2-stats span {
  color: #5b6572;
  font-weight: 650;
  line-height: 1.35;
}

.about-v2-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  padding: 32px;
}

.about-v2-split h2,
.about-v2-section-head h2,
.about-v2-founder h2 {
  margin: 10px 0 14px;
  color: #11151c;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-v2-split p,
.about-v2-founder p {
  color: #4b5562;
  font-weight: 550;
  line-height: 1.62;
}

.about-v2-process {
  display: grid;
  gap: 10px;
}

.about-v2-process article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid #e1e8ed;
  border-radius: 14px;
  background: #fbfdfe;
}

.about-v2-process b {
  grid-row: 1 / span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #eef9fd;
  color: var(--iv-blue);
}

.about-v2-process strong {
  color: #11151c;
  font-size: 1.02rem;
}

.about-v2-process span {
  color: #5b6572;
  font-weight: 600;
}

.about-v2-fleet,
.about-v2-founder {
  margin-top: 18px;
  padding: 32px;
}

.about-v2-section-head {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.about-v2-section-head h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.about-v2-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-v2-fleet-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e0e6eb;
  border-radius: 16px;
  background: #fff;
}

.about-v2-fleet-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-v2-fleet-grid figcaption {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.about-v2-fleet-grid strong {
  color: #11151c;
}

.about-v2-fleet-grid span {
  color: #5b6572;
  font-weight: 600;
}

.about-v2-founder {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 211, 102, 0.16), transparent 28%),
    #f4f7f8;
}

.about-v2-founder div {
  max-width: 720px;
}

.tours-v2-body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.97)),
    linear-gradient(90deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.tours-v2 {
  width: min(1180px, calc(100% - 72px));
  margin: 18px auto 52px;
}

.tours-v2-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  padding: 44px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(2, 5, 10, 0.88), rgba(2, 5, 10, 0.36) 58%, rgba(2, 5, 10, 0.08)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Cappadocia_Chimneys_Wikimedia_Commons.jpg/1280px-Cappadocia_Chimneys_Wikimedia_Commons.jpg") center/cover;
  color: #fff;
}

.tours-v2-hero > div:first-child {
  max-width: 680px;
}

.tours-v2-hero span,
.tours-v2-cta span {
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tours-v2-hero h1 {
  margin: 10px 0 16px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
}

.tours-v2-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
  line-height: 1.55;
}

.tours-v2-hero-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 5px;
  width: min(320px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(7, 12, 18, 0.7);
  backdrop-filter: blur(10px);
}

.tours-v2-hero-card strong {
  color: #fff;
  font-size: 1.1rem;
}

.tours-v2-hero-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.tours-v2-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.tours-v2-tabs span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 12px;
  border: 1px solid #e0e6eb;
  border-radius: 14px;
  background: #fff;
  color: #11151c;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 16px 40px rgba(16, 18, 20, 0.05);
}

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

.tours-v2-card {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  align-content: end;
  padding: 22px;
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  background: #101217;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(16, 18, 20, 0.09);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tours-v2-card.is-featured {
  grid-column: span 2;
}

.tours-v2-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(0deg, rgba(2, 5, 10, 0.88), rgba(2, 5, 10, 0.18) 58%, rgba(2, 5, 10, 0.02)),
    radial-gradient(circle at 88% 18%, rgba(15, 159, 213, 0.25), transparent 32%);
}

.tours-v2-card::after {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  z-index: 2;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #25d366, var(--iv-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.tours-v2-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 159, 213, 0.4);
  box-shadow: 0 28px 70px rgba(15, 159, 213, 0.16);
}

.tours-v2-card:hover::after {
  transform: scaleX(1);
}

.tours-v2-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tours-v2-card:hover img {
  transform: scale(1.05);
}

.tours-v2-card span,
.tours-v2-card h2,
.tours-v2-card p,
.tours-v2-card b {
  position: relative;
  z-index: 2;
}

.tours-v2-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.tours-v2-card h2 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.tours-v2-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  line-height: 1.45;
}

.tours-v2-card b {
  color: #9be8ff;
  font-size: 0.86rem;
}

.tours-v2-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 40px;
  padding: 32px;
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 211, 102, 0.16), transparent 28%),
    #f4f7f8;
}

.tours-v2-cta div {
  max-width: 720px;
}

.tours-v2-cta h2 {
  margin: 8px 0 10px;
  color: #11151c;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.tours-v2-cta p {
  margin: 0;
  color: #4b5562;
  font-weight: 600;
  line-height: 1.55;
}

.fleet-v2-body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.97)),
    linear-gradient(90deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.fleet-v2 {
  width: min(1180px, calc(100% - 72px));
  margin: 18px auto 52px;
}

.fleet-v2-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.fleet-v2-hero > div,
.fleet-v2-hero > .fleet-v2-slider {
  min-height: 520px;
  border-radius: 24px;
}

.fleet-v2-hero > div {
  display: grid;
  align-content: center;
  padding: 46px;
  background:
    radial-gradient(circle at 88% 20%, rgba(15, 159, 213, 0.22), transparent 32%),
    #101217;
  color: #fff;
}

.fleet-v2-hero span,
.fleet-v2-cta span {
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fleet-v2-hero h1 {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.fleet-v2-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.58;
}

.fleet-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0;
}

.fleet-v2-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 18, 20, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.fleet-v2-card::before {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #25d366, var(--iv-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  z-index: 2;
}

.fleet-v2-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 159, 213, 0.42);
  box-shadow: 0 28px 70px rgba(15, 159, 213, 0.15);
}

.fleet-v2-card:hover::before {
  transform: scaleX(1);
}

.fleet-v2-slider {
  position: relative;
  overflow: hidden;
  background: #eaf4f8;
}

.fleet-v2-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.7s ease, transform 1.4s ease;
}

.fleet-v2-slider img.active {
  opacity: 1;
  transform: scale(1);
}

.fleet-v2-card > .fleet-v2-slider {
  height: 235px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3fafc 100%);
}

.fleet-v2-card > .fleet-v2-slider img {
  object-fit: contain;
  padding: 12px;
}

.fleet-v2-card div {
  display: grid;
  gap: 9px;
  padding: 20px;
}

.fleet-v2-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef9fd;
  color: var(--iv-blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.fleet-v2-card h2 {
  margin: 0;
  color: #11151c;
  font-size: 1.25rem;
  line-height: 1.15;
}

.fleet-v2-card p {
  margin: 0;
  color: #536070;
  font-weight: 600;
  line-height: 1.48;
}

.fleet-v2-card b {
  color: #128c7e;
  font-size: 0.82rem;
}

.fleet-v2-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 40px;
  padding: 32px;
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 211, 102, 0.16), transparent 28%),
    #f4f7f8;
}

.fleet-v2-cta div {
  max-width: 720px;
}

.fleet-v2-cta h2 {
  margin: 8px 0 10px;
  color: #11151c;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.fleet-v2-cta p {
  margin: 0;
  color: #4b5562;
  font-weight: 600;
  line-height: 1.55;
}

.meeting-points-body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.97)),
    linear-gradient(90deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.meeting-points {
  width: min(1180px, calc(100% - 72px));
  margin: 18px auto 52px;
}

.meeting-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.meeting-hero > div,
.meeting-hero > aside {
  border-radius: 24px;
  padding: 42px;
}

.meeting-hero > div {
  min-height: 360px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 92% 14%, rgba(37, 211, 102, 0.15), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(15, 159, 213, 0.2), transparent 34%),
    #101217;
  color: #fff;
}

.meeting-hero span,
.meeting-card span {
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meeting-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.meeting-hero p,
.meeting-card p,
.meeting-features p {
  margin: 0;
  color: #536070;
  font-weight: 600;
  line-height: 1.58;
}

.meeting-hero > div p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.meeting-hero > aside {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid #dce5ea;
  background:
    linear-gradient(180deg, #ffffff, #eef9fd);
  box-shadow: 0 20px 52px rgba(16, 18, 20, 0.08);
}

.meeting-hero > aside strong {
  color: #11151c;
  font-size: 1.55rem;
  line-height: 1.08;
}

.meeting-grid {
  display: grid;
  gap: 18px;
}

.meeting-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid #dce5ea;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(16, 18, 20, 0.08);
}

.meeting-card-reverse figure {
  order: 2;
}

.meeting-card figure {
  height: 420px;
  margin: 0;
  background: #eaf4f8;
}

.meeting-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.meeting-card div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 42px;
}

.meeting-card h2 {
  margin: 0;
  color: #11151c;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  line-height: 1.03;
}

.meeting-card a {
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #eef9fd;
  color: var(--iv-blue);
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.meeting-card a:hover,
.meeting-card a:focus-visible {
  background: linear-gradient(90deg, #25d366, var(--iv-blue));
  color: #fff;
  transform: translateY(-2px);
}

.meeting-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0 40px;
}

.meeting-features article {
  padding: 26px;
  border: 1px solid #dce5ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(16, 18, 20, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.meeting-features article:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 159, 213, 0.42);
  box-shadow: 0 28px 70px rgba(15, 159, 213, 0.15);
}

.meeting-features svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366, var(--iv-blue));
  fill: #fff;
}

.meeting-features h3 {
  margin: 18px 0 8px;
  color: #11151c;
  font-size: 1.2rem;
}

.contact-v2-body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.97)),
    linear-gradient(90deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 27, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.contact-v2 {
  width: min(1180px, calc(100% - 72px));
  margin: 18px auto 52px;
}

.contact-v2-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.contact-v2-hero > div,
.contact-v2-hero > aside {
  border-radius: 24px;
  padding: 42px;
}

.contact-v2-hero > div {
  min-height: 390px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 92% 14%, rgba(37, 211, 102, 0.14), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(15, 159, 213, 0.2), transparent 34%),
    #101217;
  color: #fff;
}

.contact-v2-hero span,
.contact-v2-cards span,
.contact-v2-form > span,
.contact-v2-section-head span {
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-v2-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.35rem, 4.4vw, 5rem);
  line-height: 0.98;
}

.contact-v2-hero p,
.contact-v2-cards p,
.contact-v2-section-head p,
.contact-v2-hero > aside p {
  margin: 0;
  color: #536070;
  font-weight: 600;
  line-height: 1.58;
}

.contact-v2-hero > div p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-v2-hero > aside {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid #dce5ea;
  background: linear-gradient(180deg, #ffffff, #eef9fd);
  box-shadow: 0 20px 52px rgba(16, 18, 20, 0.08);
}

.contact-v2-hero > aside strong {
  color: #11151c;
  font-size: 1.55rem;
  line-height: 1.08;
}

.contact-v2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.contact-v2-cards article,
.contact-v2-form,
.contact-v2-map,
.contact-v2-route {
  border: 1px solid #dce5ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 18, 20, 0.07);
}

.contact-v2-cards article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-v2-cards article:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 159, 213, 0.42);
  box-shadow: 0 28px 70px rgba(15, 159, 213, 0.15);
}

.contact-v2-cards svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366, var(--iv-blue));
  fill: #fff;
}

.contact-v2-cards a {
  color: #11151c;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-v2-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.contact-v2-form {
  display: grid;
  gap: 14px;
  padding: 32px;
}

.contact-v2-form h2,
.contact-v2-section-head h2 {
  margin: 0;
  color: #11151c;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.06;
}

.contact-v2-form label {
  display: grid;
  gap: 7px;
  color: #161b22;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-v2-form input,
.contact-v2-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #d7dae1;
  border-radius: 12px;
  background: #f8fafb;
  color: #11151c;
  font: inherit;
  font-weight: 700;
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-v2-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-v2-form input:focus,
.contact-v2-form textarea:focus {
  border-color: rgba(15, 159, 213, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 159, 213, 0.1);
}

.contact-v2-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #25d366, var(--iv-blue));
  color: #fff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(15, 159, 213, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-v2-form button:hover,
.contact-v2-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.22);
}

.contact-v2-map {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(15, 159, 213, 0.1), rgba(37, 211, 102, 0.12)),
    linear-gradient(90deg, rgba(18, 23, 27, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 23, 27, 0.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.contact-v2-map iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
}

.contact-v2-map-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  max-width: calc(100% - 36px);
  padding: 14px 16px;
  border: 1px solid #dce5ea;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(16, 18, 20, 0.12);
}

.contact-v2-map-label span {
  color: var(--iv-blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-v2-map-label strong {
  color: #11151c;
  font-size: 1rem;
}

.contact-v2-route {
  position: relative;
  z-index: 8;
  padding: 32px;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 211, 102, 0.13), transparent 26%),
    #f7fafb;
}

.contact-v2-section-head {
  max-width: 780px;
  margin-bottom: 20px;
}

.contact-v2-section-head h2 {
  margin: 8px 0 10px;
}

.contact-v2-booking.iv-booking {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 20;
}

.contact-v2-booking .iv-booking-bar {
  box-shadow: 0 22px 60px rgba(16, 18, 20, 0.14);
}

.iv-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, calc(100% - 72px));
  margin: 92px auto 88px;
}

.iv-benefits article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 0 rgba(16, 18, 20, 0);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.iv-benefits article::before {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #25d366, var(--iv-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.iv-benefits article:hover {
  transform: translateY(-4px);
  border-color: #dbe8ee;
  box-shadow: 0 22px 54px rgba(15, 159, 213, 0.12);
}

.iv-benefits article:hover::before {
  transform: scaleX(1);
}

.iv-benefits article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: #eef9fd;
  color: var(--iv-blue);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.iv-benefits article > span svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.iv-benefits article:hover > span {
  background: linear-gradient(135deg, #25d366, var(--iv-blue));
  color: #fff;
  transform: rotate(-3deg) scale(1.04);
}

.iv-benefits h2 {
  margin: 0 0 8px;
  font-size: 1.13rem;
  font-weight: 700;
}

.iv-benefits p,
.iv-intro p,
.iv-locations p {
  color: #3d4451;
  font-weight: 500;
  line-height: 1.55;
}

.iv-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  width: min(1280px, calc(100% - 108px));
  margin: 0 auto 86px;
  padding: 64px 76px;
  border-radius: 18px;
  background: #f5f5f6;
}

.iv-intro h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.16;
}

.iv-soft-button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #e9e9eb;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.iv-soft-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, #25d366, var(--iv-blue));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.iv-soft-button {
  isolation: isolate;
}

.iv-soft-button::before {
  z-index: -1;
}

.iv-soft-button:hover,
.iv-soft-button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 159, 213, 0.22);
}

.iv-soft-button:hover::before,
.iv-soft-button:focus-visible::before {
  opacity: 1;
}

.iv-intro-gallery {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
}

.iv-intro-gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 24px;
}

.iv-intro-gallery strong {
  display: grid;
  min-height: 120px;
  align-content: center;
  padding: 24px 34px;
  border-radius: 24px;
  background: #202020;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.35;
}

.iv-intro-gallery img:first-child {
  grid-row: span 2;
}

.iv-locations,
.iv-service-cards {
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto 90px;
  text-align: center;
}

.iv-section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
}

.iv-location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 44px 0 28px;
}

.iv-location-tabs button {
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: #ebebee;
  color: #111;
}

.iv-location-tabs .active {
  background: var(--iv-blue);
  color: #fff;
}

.iv-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.iv-location-grid article {
  padding: 24px;
  border: 1px solid #eceef2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 18, 25, 0.05);
}

.iv-location-grid span {
  color: var(--iv-blue);
  font-weight: 900;
}

.iv-location-grid h3 {
  margin: 8px 0 5px;
  font-size: 1.15rem;
}

.iv-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
  text-align: left;
}

.iv-service-grid article {
  overflow: hidden;
  border: 1px solid #eceef2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(12, 18, 25, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.iv-service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(12, 18, 25, 0.12);
}

.iv-service-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
}

.iv-service-grid div {
  position: relative;
  padding: 24px;
}

.iv-service-grid div::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 56px;
  height: 4px;
  content: "";
  background: var(--iv-blue);
}

.iv-service-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--iv-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iv-service-grid h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.iv-service-grid p {
  margin: 0;
  color: #4d5562;
  font-weight: 500;
  line-height: 1.55;
}

.iv-live {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: grid;
  gap: 7px;
  align-items: center;
  justify-items: center;
}

.iv-live span,
.iv-live a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}

.iv-live span {
  min-height: 28px;
  gap: 5px;
  padding: 0 10px 0 11px;
  background: rgba(18, 140, 126, 0.94);
  font-size: 0.72rem;
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.28);
}

.iv-live span b {
  display: inline-block;
  font-size: 0.92rem;
  animation: liveArrow 1.25s ease-in-out infinite;
}

.iv-live a {
  position: relative;
  width: 54px;
  height: 54px;
  justify-content: center;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 0;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iv-live a::before {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: inherit;
  animation: whatsappPulse 1.8s ease-out infinite;
}

.iv-live a:hover,
.iv-live a:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.42);
}

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

@keyframes whatsappPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.88);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.iv-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 44px max(36px, calc((100vw - 1180px) / 2));
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(15, 159, 213, 0.22), transparent 32%),
    radial-gradient(circle at 12% 80%, rgba(37, 211, 102, 0.14), transparent 32%),
    #151a21;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.iv-footer p {
  margin: 0;
  max-width: 540px;
  line-height: 1.55;
}

.iv-footer strong {
  color: #fff;
  font-size: 1.05rem;
}

.iv-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.iv-footer a:hover,
.iv-footer a:focus-visible {
  color: #43d7ff;
}

.istvia-inspired .place-menu {
  z-index: 150;
  top: calc(100% + 8px);
  max-height: 360px;
  border-radius: 12px;
}

.istvia-inspired .place-option {
  min-height: 62px;
  border-radius: 0;
}

.istvia-inspired .place-icon {
  border-radius: 999px;
  background: #eef9fd;
  color: var(--iv-blue);
}

.istvia-inspired .place-icon.is-remote {
  background: #eefaf3;
  color: #128c7e;
}

.istvia-inspired .place-loading {
  pointer-events: none;
  color: #5b6572;
}

@media (max-width: 980px) {
  .iv-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 1180px);
  }
  .iv-actions {
    grid-column: 1 / -1;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    gap: 6px;
  }
  .iv-lang {
    width: 32px !important;
    min-width: 32px;
    min-height: 25px;
    padding: 0;
    font-size: 0.68rem;
  }
  .iv-lang .flag {
    width: 24px;
    height: 16px;
  }
  .iv-login {
    width: auto !important;
    min-height: 40px;
    padding: 0 15px;
  }
  .iv-login svg {
    width: 21px;
    height: 21px;
  }
  .iv-nav {
    grid-column: 1 / -1;
    justify-content: start;
    gap: 20px;
    overflow-x: auto;
  }
  .iv-hero {
    width: min(100% - 24px, 1368px);
    min-height: 960px;
    border-radius: 22px;
  }
  .iv-hero-copy {
    width: calc(100% - 40px);
    padding: 58px 20px 0;
  }
  .iv-booking {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }
  .iv-booking-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .iv-booking-tabs button {
    min-height: 54px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.85rem;
  }
  .iv-booking-bar {
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding: 14px;
  }
  .iv-booking label,
  .iv-booking.has-return label:nth-of-type(5),
  .iv-booking.has-return label:nth-of-type(6),
  .iv-booking.has-return label:nth-of-type(7),
  .iv-swap,
  .iv-booking.has-return .iv-search,
  .iv-search {
    grid-column: 1 !important;
  }
  .iv-swap {
    justify-self: center;
    transform: rotate(90deg);
  }
  .iv-search {
    width: 100%;
    height: 56px;
    border-radius: 12px;
  }
  .route-preview-modal {
    padding: 14px;
  }
  .route-preview-panel {
    max-height: calc(100vh - 28px);
    padding: 20px;
    border-radius: 14px;
  }
  .route-preview-copy {
    padding-right: 42px;
  }
  .route-preview-grid {
    grid-template-columns: 1fr;
  }
  .route-preview-fleet-head {
    display: grid;
    gap: 4px;
  }
  .route-preview-vehicle-grid {
    grid-template-columns: 1fr;
  }
  .route-preview-vehicle {
    grid-template-columns: 96px 1fr;
  }
  .route-preview-vehicle img {
    width: 96px;
    height: 78px;
  }
  .route-preview-map,
  .route-preview-map iframe {
    min-height: 320px;
  }
  .route-preview-actions {
    display: grid;
  }
  .route-preview-actions a {
    width: 100%;
  }
  .route-result-main {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
    margin-bottom: 34px;
  }
  .route-result-hero {
    display: grid;
    padding: 28px;
    border-radius: 18px;
  }
  .route-result-layout,
  .route-result-fleet {
    grid-template-columns: 1fr;
  }
  .route-result-map-card,
  .route-result-map-card iframe {
    min-height: 360px;
  }
  .route-result-card {
    padding: 18px;
  }
  .route-result-head {
    display: grid;
    gap: 5px;
  }
  .route-result-vehicle {
    grid-template-columns: 100px 1fr;
    min-height: 126px;
  }
  .route-result-vehicle img {
    width: 100px;
    height: 84px;
  }
  .route-result-actions {
    display: grid;
    padding-bottom: 26px;
  }
  .route-result-actions a {
    width: 100%;
  }
  .about-v2 {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
  }
  .about-v2-hero,
  .about-v2-split,
  .about-v2-fleet-grid,
  .about-v2-stats {
    grid-template-columns: 1fr;
  }
  .about-v2-copy,
  .about-v2-media {
    min-height: auto;
    border-radius: 18px;
  }
  .about-v2-copy,
  .about-v2-split,
  .about-v2-fleet,
  .about-v2-founder {
    padding: 24px;
  }
  .about-v2-media {
    min-height: 360px;
  }
  .about-v2-section-head,
  .about-v2-founder {
    display: grid;
    gap: 14px;
  }
  .about-v2-fleet-grid img {
    height: 230px;
  }
  .tours-v2 {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
  }
  .tours-v2-hero {
    min-height: 560px;
    padding: 28px;
    border-radius: 18px;
  }
  .tours-v2-hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 26px;
  }
  .tours-v2-tabs,
  .tours-v2-grid {
    grid-template-columns: 1fr;
  }
  .tours-v2-card,
  .tours-v2-card.is-featured {
    grid-column: auto;
    min-height: 390px;
  }
  .tours-v2-cta {
    display: grid;
    padding: 24px;
  }
  .fleet-v2 {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
  }
  .fleet-v2-hero,
  .fleet-v2-grid {
    grid-template-columns: 1fr;
  }
  .fleet-v2-hero > div,
  .fleet-v2-hero > .fleet-v2-slider {
    min-height: auto;
    border-radius: 18px;
  }
  .fleet-v2-hero > div {
    padding: 28px;
  }
  .fleet-v2-hero > .fleet-v2-slider {
    height: 330px;
  }
  .fleet-v2-card > .fleet-v2-slider {
    height: 230px;
  }
  .fleet-v2-cta {
    display: grid;
    padding: 24px;
  }
  .meeting-points {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
  }
  .meeting-hero,
  .meeting-card,
  .meeting-features {
    grid-template-columns: 1fr;
  }
  .meeting-hero > div,
  .meeting-hero > aside,
  .meeting-card div {
    padding: 26px;
    border-radius: 18px;
  }
  .meeting-hero > div {
    min-height: auto;
  }
  .meeting-card {
    border-radius: 18px;
  }
  .meeting-card-reverse figure {
    order: 0;
  }
  .meeting-card figure {
    height: 310px;
  }
  .meeting-card a {
    width: 100%;
    text-align: center;
  }
  .contact-v2 {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
  }
  .contact-v2-hero,
  .contact-v2-cards,
  .contact-v2-layout {
    grid-template-columns: 1fr;
  }
  .contact-v2-hero > div,
  .contact-v2-hero > aside,
  .contact-v2-form,
  .contact-v2-route {
    padding: 26px;
    border-radius: 18px;
  }
  .contact-v2-hero > div {
    min-height: auto;
  }
  .contact-v2-map iframe {
    min-height: 330px;
  }
  .contact-v2-map {
    min-height: 330px;
  }
  .contact-v2-booking .iv-booking-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-v2-booking .iv-booking-bar {
    grid-template-columns: 1fr !important;
  }
  .iv-live {
    right: 10px;
    bottom: 12px;
    gap: 5px;
  }
  .iv-live span {
    min-height: 21px;
    padding: 0 7px;
    font-size: 0.58rem;
  }
  .iv-live a {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }
  .iv-live svg {
    width: 19px;
    height: 19px;
  }
  .iv-benefits,
  .iv-intro,
  .iv-intro-gallery,
  .iv-location-grid,
  .iv-service-grid {
    grid-template-columns: 1fr;
  }
  .iv-benefits,
  .iv-locations,
  .iv-service-cards {
    width: min(100% - 28px, 1120px);
  }
  .iv-intro {
    width: min(100% - 28px, 1280px);
    padding: 28px;
  }
  .iv-footer {
    display: grid;
    gap: 18px;
    width: 100%;
    padding: 34px 24px;
  }
}
