/* ==========================================================================
   Budgeta Araç Kiralama — tasarım sistemi
   Mobile-first. Bölümler: tokens, temel, buton sistemi, header, hero,
   rezervasyon, bölümler, kartlar, footer, mobil bar, duyarlı katmanlar.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Renk */
  --navy-950: #050D1A;
  --navy-900: #0A1729;
  --navy-850: #0D1E36;
  --navy-800: #122744;
  --navy-700: #1B3557;
  --navy-600: #294A73;

  --red-300: #FF6B70;
  --red-400: #FF2A31;
  --red-500: #E4121B;
  --red-600: #C50E16;
  --red-700: #9B0A10;
  --red-800: #720609;

  --white: #FFFFFF;
  --grey-50: #F6F8FB;
  --grey-100: #EDF1F6;
  --grey-200: #DFE5EE;
  --grey-300: #C6D0DE;
  --grey-400: #97A3B6;
  --grey-500: #6B7889;
  --grey-600: #4A5566;
  --grey-800: #232C39;

  --green-500: #1FA855;
  --green-600: #17853F;
  --green-700: #0F6430;

  /* Tipografi */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Helvetica Neue", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  /* Ölçü */
  --container: 1240px;
  --gutter: 16px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Gölge */
  --shadow-sm: 0 2px 8px rgba(10, 23, 41, .07);
  --shadow: 0 10px 30px -12px rgba(10, 23, 41, .22);
  --shadow-lg: 0 26px 60px -22px rgba(10, 23, 41, .38);
  --shadow-xl: 0 40px 90px -30px rgba(10, 23, 41, .5);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Temel
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 68px; /* mobil alt bar */
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  margin: 0 0 .4em;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--navy-900);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--red-400);
  outline-offset: 2px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  vertical-align: middle;
}
.icon--xs { width: 15px; height: 15px; }
.icon--sm { width: 17px; height: 17px; }
.icon--lg { width: 26px; height: 26px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--red-500);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 48px 0; }
.section--tight { padding: 36px 0; }
.section--grey { background: var(--grey-50); }
.section--dark { background: var(--navy-900); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section__title {
  font-size: clamp(1.45rem, 5.2vw, 2.1rem);
  margin: 0;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-500);
}
.section__eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--red-500);
}
.section--dark .section__eyebrow { color: var(--red-300); }
.section--dark .section__eyebrow::before { background: var(--red-500); }

.section__lead {
  max-width: 62ch;
  margin: -4px 0 0;
  color: var(--grey-500);
}
.section--dark .section__lead { color: rgba(255, 255, 255, .72); }

.section__link {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  font-weight: 800;
  font-size: .92rem;
  color: var(--red-500);
  transition: gap .2s var(--ease);
}
.section__link:hover { gap: 13px; }

/* --------------------------------------------------------------------------
   3. Buton sistemi (3D)
   -------------------------------------------------------------------------- */

.btn {
  --btn-lift: 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  border: 0;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), filter .16s var(--ease);
  will-change: transform;
}

.btn .icon { width: 19px; height: 19px; }

.btn--sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .82rem;
  border-radius: 12px;
  --btn-lift: 3px;
}

.btn--lg {
  min-height: 60px;
  padding: 17px 34px;
  font-size: 1.02rem;
  border-radius: 16px;
  --btn-lift: 5px;
}

.btn--block { width: 100%; }

/* Ana kırmızı CTA */
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #FF3238 0%, var(--red-500) 48%, var(--red-600) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    inset 0 -1px 0 rgba(0, 0, 0, .18),
    0 var(--btn-lift) 0 var(--red-700),
    0 calc(var(--btn-lift) * 3) calc(var(--btn-lift) * 5) calc(var(--btn-lift) * -2) rgba(196, 14, 22, .6);
  text-shadow: 0 1px 1px rgba(0, 0, 0, .22);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .5),
    inset 0 -1px 0 rgba(0, 0, 0, .18),
    0 calc(var(--btn-lift) + 2px) 0 var(--red-700),
    0 calc(var(--btn-lift) * 4) calc(var(--btn-lift) * 6) calc(var(--btn-lift) * -2) rgba(196, 14, 22, .72);
}
.btn--primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, .26),
    0 1px 0 var(--red-700),
    0 3px 8px -3px rgba(196, 14, 22, .5);
}

/* Beyaz ikincil CTA */
.btn--light {
  color: var(--navy-900);
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F6FA 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 0 0 1px rgba(10, 23, 41, .08),
    0 var(--btn-lift) 0 #C3CCDA,
    0 calc(var(--btn-lift) * 3) calc(var(--btn-lift) * 5) calc(var(--btn-lift) * -2) rgba(10, 23, 41, .3);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 0 0 1px rgba(10, 23, 41, .1),
    0 calc(var(--btn-lift) + 2px) 0 #C3CCDA,
    0 calc(var(--btn-lift) * 4) calc(var(--btn-lift) * 6) calc(var(--btn-lift) * -2) rgba(10, 23, 41, .34);
}
.btn--light:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 5px rgba(10, 23, 41, .2), 0 1px 0 #C3CCDA;
}

/* WhatsApp */
.btn--whatsapp {
  color: #fff;
  background: linear-gradient(180deg, #2BC463 0%, var(--green-500) 50%, var(--green-600) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    0 var(--btn-lift) 0 var(--green-700),
    0 calc(var(--btn-lift) * 3) calc(var(--btn-lift) * 5) calc(var(--btn-lift) * -2) rgba(15, 100, 48, .55);
  text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    0 calc(var(--btn-lift) + 2px) 0 var(--green-700),
    0 calc(var(--btn-lift) * 4) calc(var(--btn-lift) * 6) calc(var(--btn-lift) * -2) rgba(15, 100, 48, .65);
}
.btn--whatsapp:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, .24), 0 1px 0 var(--green-700);
}

/* Koyu zeminde çerçeveli CTA */
.btn--ghost {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, .05) 100%);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .3),
    inset 0 0 0 1px rgba(255, 255, 255, .26),
    0 var(--btn-lift) 0 rgba(0, 0, 0, .35);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .36),
    inset 0 0 0 1px rgba(255, 255, 255, .34),
    0 calc(var(--btn-lift) + 2px) 0 rgba(0, 0, 0, .35);
}
.btn--ghost:active { transform: translateY(1px); box-shadow: inset 0 2px 5px rgba(0, 0, 0, .3); }

/* Kart içi ikincil çerçeve butonu */
.btn--outline {
  color: var(--navy-900);
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--grey-200), 0 2px 0 var(--grey-200);
}
.btn--outline:hover {
  transform: translateY(-2px);
  color: var(--red-500);
  box-shadow: inset 0 0 0 2px var(--red-500), 0 4px 0 rgba(228, 18, 27, .18);
}
.btn--outline:active { transform: translateY(1px); box-shadow: inset 0 0 0 2px var(--red-500); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn:hover, .btn:active { transition: none; transform: none; }
}

/* Yuvarlak ikon butonu */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  transition: transform .16s var(--ease), background .16s var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .18); }
.icon-btn:active { transform: translateY(0); }
.icon-btn--wa:hover { background: var(--green-500); box-shadow: inset 0 0 0 1px var(--green-500); }
.icon-btn--phone:hover { background: var(--red-500); box-shadow: inset 0 0 0 1px var(--red-500); }

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .6); }

.topbar {
  display: none;
  background: var(--navy-950);
  font-size: .78rem;
  color: rgba(255, 255, 255, .66);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 36px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item .icon { color: var(--red-400); }
.topbar__mail { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; }
.topbar__mail:hover { color: #fff; }

.header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 66px;
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: -6px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}
.burger:hover { background: rgba(255, 255, 255, .16); }
.burger .icon { width: 22px; height: 22px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }

.logo__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(160deg, var(--red-400), var(--red-600));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 6px 14px -6px rgba(228, 18, 27, .9);
}
.logo__mark-b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .25);
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: .01em;
  color: #fff;
}
.logo__accent { color: var(--red-400); }
.logo__sub {
  margin-top: 3px;
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(255, 255, 255, .55);
}

/* Menü — mobilde yandan açılan panel */
.nav {
  position: fixed;
  inset: 0 28% 0 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  min-width: 268px;
  padding: 0 0 20px;
  background: var(--navy-850);
  transform: translateX(-100%);
  transition: transform .28s var(--ease);
  overflow-y: auto;
}
.nav.is-open { transform: translateX(0); }

.nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 14px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.nav__head-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}
.nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}
.nav__close:hover { background: var(--red-500); }

.nav__list { padding: 10px 12px; }
.nav__link {
  display: block;
  padding: 13px 14px;
  border-radius: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .84);
}
.nav__link:hover { background: rgba(255, 255, 255, .07); color: #fff; }
.nav__link.is-active { background: rgba(228, 18, 27, .16); color: #fff; box-shadow: inset 3px 0 0 var(--red-500); }

.nav__foot {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 16px 16px 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(5, 13, 26, .6);
  backdrop-filter: blur(2px);
}

.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header__phone { display: none; }
.header__cta { display: none; }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  padding: 40px 0 34px;
  background: var(--navy-950);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 13, 26, .86) 0%, rgba(5, 13, 26, .5) 38%, rgba(5, 13, 26, .92) 100%),
    linear-gradient(90deg, rgba(5, 13, 26, .9) 0%, rgba(5, 13, 26, .35) 62%, rgba(5, 13, 26, .1) 100%);
}

.hero__content { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}
.hero__eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--red-500);
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 12vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.035em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}
.hero__title span { display: block; }
.hero__title-accent {
  background: linear-gradient(100deg, #fff 22%, #FF6B70 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  max-width: 44ch;
  margin: 0 0 22px;
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn { flex: 1 1 100%; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__stat { display: flex; align-items: center; gap: 10px; font-size: .84rem; font-weight: 600; color: rgba(255, 255, 255, .88); }
.hero__stat .icon { color: var(--red-400); }

.hero__badge {
  position: absolute;
  top: 70px;
  right: -30px;
  z-index: 1;
  display: none;
  padding: 9px 40px;
  transform: rotate(38deg);
  background: linear-gradient(90deg, var(--red-600), var(--red-400));
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .8);
}

/* --------------------------------------------------------------------------
   6. Rezervasyon paneli
   -------------------------------------------------------------------------- */

.booking-wrap { position: relative; z-index: 5; margin-top: -26px; }

.booking {
  padding: 8px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(10, 23, 41, .06);
}

.booking__tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: var(--grey-50);
  overflow-x: auto;
  scrollbar-width: none;
}
.booking__tabs::-webkit-scrollbar { display: none; }

.booking__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 0 auto;
  justify-content: center;
  padding: 12px 14px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  font-size: .85rem;
  font-weight: 700;
  color: var(--grey-500);
  white-space: nowrap;
  cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.booking__tab .icon { width: 18px; height: 18px; }
.booking__tab-full { display: none; }
.booking__tab-short { display: inline; }
.booking__tab:hover { color: var(--navy-900); }
.booking__tab[aria-selected="true"] {
  color: var(--navy-900);
  background: #fff;
  box-shadow: var(--shadow-sm), inset 0 -3px 0 var(--red-500);
}

.booking__panel { padding: 8px 6px 6px; }
.booking__panel[hidden] { display: none; }

.booking__grid { display: grid; gap: 10px; }

.field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 9px 14px;
  border-radius: 14px;
  background: var(--grey-50);
  box-shadow: inset 0 0 0 1px var(--grey-200);
  transition: box-shadow .16s var(--ease), background .16s var(--ease);
}
.field:focus-within { background: #fff; box-shadow: inset 0 0 0 2px var(--red-500); }
.field__icon { color: var(--red-500); }
.field__body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.field__label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.field__input {
  width: 100%;
  padding: 2px 0 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-900);
  appearance: none;
}
.field__input:focus { outline: none; }
.field__input::placeholder { color: var(--grey-400); font-weight: 600; }
select.field__input { padding-right: 18px; cursor: pointer; }
.field__chev { position: absolute; right: 13px; color: var(--grey-400); pointer-events: none; }
.field--select .field__input { text-overflow: ellipsis; }

.booking__submit { margin-top: 4px; }

.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.inline-actions .btn { flex: 1 1 210px; }

.booking__note {
  margin: 10px 2px 2px;
  font-size: .78rem;
  color: var(--grey-500);
  text-align: center;
}

.booking__message {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(31, 168, 85, .1);
  box-shadow: inset 0 0 0 1px rgba(31, 168, 85, .3);
  font-size: .87rem;
  font-weight: 600;
  color: var(--green-700);
}
.booking__message.is-visible { display: flex; }
.booking__message .icon { color: var(--green-600); }

/* --------------------------------------------------------------------------
   7. Avantaj şeridi
   -------------------------------------------------------------------------- */

.trustbar { padding: 26px 0 6px; }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 8px;
  text-align: center;
}
.trust + .trust { box-shadow: inset 1px 0 0 var(--grey-200); }
.trust__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--red-500);
  background: rgba(228, 18, 27, .08);
}
.trust__icon .icon { width: 24px; height: 24px; }
.trust__title { font-size: .82rem; font-weight: 800; line-height: 1.25; color: var(--navy-900); }
.trust__desc { display: none; font-size: .8rem; color: var(--grey-500); }

/* Avantaj kartları */
.adv-grid { display: grid; gap: 12px; }
.adv {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--grey-200);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.adv:hover { transform: translateY(-3px); box-shadow: var(--shadow), inset 0 0 0 1px var(--grey-200); }
.adv__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(160deg, var(--red-400), var(--red-600));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 8px 16px -8px rgba(228, 18, 27, .8);
}
.adv__title { margin: 0 0 3px; font-size: 1rem; }
.adv__desc { margin: 0; font-size: .87rem; color: var(--grey-500); }

/* --------------------------------------------------------------------------
   8. Havalimanı kartları
   -------------------------------------------------------------------------- */

.airport-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 74%;
  gap: 12px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.airport-scroller::-webkit-scrollbar { display: none; }

.airport {
  position: relative;
  display: block;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.airport__img { aspect-ratio: 4 / 3.1; }
.airport__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.airport:hover .airport__img img { transform: scale(1.07); }
.airport::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 26, 0) 32%, rgba(5, 13, 26, .9) 100%);
}
.airport__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 16px;
  color: #fff;
}
.airport__text { min-width: 0; }
.airport__code {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--red-500);
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.airport__name { margin: 0; font-size: 1.02rem; color: #fff; }
.airport__desc {
  margin: 4px 0 0;
  font-size: .8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .72);
}
.airport__go {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  margin-left: auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--red-400), var(--red-600));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 3px 0 var(--red-700);
  transition: transform .2s var(--ease);
}
.airport:hover .airport__go { transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   9. Araç kartları
   -------------------------------------------------------------------------- */

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.filters::-webkit-scrollbar { display: none; }

.filter {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--grey-100);
  font-size: .86rem;
  font-weight: 800;
  color: var(--grey-600);
  cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease), transform .16s var(--ease), box-shadow .16s var(--ease);
}
.filter:hover { background: var(--grey-200); }
.filter.is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--red-400), var(--red-600));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 3px 0 var(--red-700), 0 8px 18px -8px rgba(228, 18, 27, .7);
  transform: translateY(-1px);
}

.car-grid { display: grid; gap: 16px; }

.car {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow), inset 0 0 0 1px var(--grey-200);
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.car:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--grey-200); }
.car[hidden] { display: none; }

.car__media {
  position: relative;
  padding: 12px 10px 0;
  background: linear-gradient(170deg, var(--grey-50) 0%, #fff 72%);
}
.car__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
.car:hover .car__media img { transform: scale(1.04); }

.car__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 11px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--red-400), var(--red-600));
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(228, 18, 27, .9);
}

.car__body { display: flex; flex-direction: column; flex: 1; padding: 4px 18px 18px; }
.car__name { margin: 0; font-size: 1.15rem; }
.car__sub { margin: 2px 0 14px; font-size: .78rem; font-weight: 600; color: var(--grey-400); }

.car__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.car__spec { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--grey-600); }
.car__spec .icon { width: 17px; height: 17px; color: var(--red-500); }

.car__price { display: flex; align-items: baseline; gap: 7px; padding: 14px 0 12px; margin-top: auto; }
.car__price-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-400); }
.car__price-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--navy-900); }
.car__price-unit { font-size: .78rem; font-weight: 700; color: var(--grey-400); }

.car__actions { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; }
.car__mini {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--grey-100);
  transition: transform .16s var(--ease), background .16s var(--ease), color .16s var(--ease);
}
.car__mini:hover { transform: translateY(-2px); color: #fff; background: var(--navy-800); }
.car__mini--wa:hover { background: var(--green-500); }

/* --------------------------------------------------------------------------
   10. Kampanya bannerı
   -------------------------------------------------------------------------- */

.promo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
  isolation: isolate;
}
.promo__media { position: absolute; inset: 0; z-index: -2; }
.promo__media img { width: 100%; height: 100%; object-fit: cover; }
.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95deg, rgba(155, 10, 16, .96) 0%, rgba(197, 14, 22, .82) 34%, rgba(5, 13, 26, .72) 68%, rgba(5, 13, 26, .55) 100%);
}
.promo__inner { display: grid; gap: 20px; padding: 28px 22px; }

.promo__eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}
.promo__value {
  display: block;
  margin: 6px 0 2px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 19vw, 6rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.05em;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .4);
}
.promo__title { margin: 0 0 10px; font-size: clamp(1.15rem, 5.4vw, 1.7rem); color: #fff; text-transform: uppercase; }
.promo__text { margin: 0 0 20px; max-width: 40ch; color: rgba(255, 255, 255, .82); font-size: .92rem; }

.promo__perks { display: grid; gap: 10px; }
.promo__perk {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  font-size: .86rem;
  font-weight: 700;
}
.promo__perk .icon { color: #fff; }

/* --------------------------------------------------------------------------
   11. Kampanya kartları
   -------------------------------------------------------------------------- */

.campaign-grid { display: grid; gap: 16px; }

.campaign {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow), inset 0 0 0 1px var(--grey-200);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.campaign:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--grey-200); }

.campaign__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.campaign__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.campaign:hover .campaign__media img { transform: scale(1.06); }

.campaign__tag {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 7px 12px;
  border-radius: 9px;
  background: linear-gradient(180deg, var(--red-400), var(--red-600));
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .8);
}

.campaign__body { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.campaign__title { margin: 0 0 7px; font-size: 1.1rem; }
.campaign__desc { margin: 0 0 18px; font-size: .88rem; color: var(--grey-500); }
.campaign__body .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   12. Hizmetler
   -------------------------------------------------------------------------- */

.service-grid { display: grid; gap: 12px; }

.service {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.service:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(228, 18, 27, .5);
}
.service__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(160deg, var(--red-400), var(--red-600));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 10px 20px -10px rgba(228, 18, 27, .9);
}
.service__title { margin: 0 0 4px; font-size: 1.02rem; color: #fff; }
.service__desc { margin: 0; font-size: .87rem; color: rgba(255, 255, 255, .66); }

/* --------------------------------------------------------------------------
   13. Kapanış CTA
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  padding: 48px 0;
  background:
    radial-gradient(120% 140% at 12% 0%, rgba(228, 18, 27, .42) 0%, rgba(228, 18, 27, 0) 58%),
    linear-gradient(140deg, var(--navy-850) 0%, var(--navy-950) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 100%);
}
.cta-band__inner { position: relative; }
.cta-band__title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 7.4vw, 2.9rem);
  color: #fff;
  text-transform: uppercase;
}
.cta-band__text { max-width: 46ch; margin: 0 auto 26px; color: rgba(255, 255, 255, .75); }
.cta-band__actions { display: grid; gap: 12px; max-width: 420px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   14. Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: 40px 0 34px;
  background:
    radial-gradient(110% 160% at 88% 0%, rgba(228, 18, 27, .34) 0%, rgba(228, 18, 27, 0) 60%),
    linear-gradient(135deg, var(--navy-850) 0%, var(--navy-950) 100%);
  color: #fff;
}
.page-hero__title { margin: 0 0 10px; font-size: clamp(1.8rem, 8vw, 3rem); color: #fff; text-transform: uppercase; }
.page-hero__text { max-width: 58ch; margin: 0; color: rgba(255, 255, 255, .74); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; font-size: .8rem; color: rgba(255, 255, 255, .55); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: rgba(255, 255, 255, .3); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }

/* İçerik blokları */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.6em; font-size: 1.3rem; }
.prose h3 { margin-top: 1.4em; font-size: 1.08rem; }
.prose ul { margin: 0 0 1em; padding-left: 0; }
.prose li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--red-500);
}
.prose a { color: var(--red-500); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.note-card {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--grey-50);
  box-shadow: inset 0 0 0 1px var(--grey-200), inset 4px 0 0 var(--red-500);
  font-size: .9rem;
  color: var(--grey-600);
}

/* İletişim kutuları */
.contact-grid { display: grid; gap: 12px; }
.contact-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--grey-200);
}
.contact-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(160deg, var(--red-400), var(--red-600));
}
.contact-card__title { margin: 0 0 3px; font-size: .96rem; }
.contact-card__value { margin: 0; font-size: .92rem; font-weight: 700; color: var(--red-500); }
.contact-card__value--muted { color: var(--grey-500); font-weight: 600; }

/* Şube listesi */
.branch-grid { display: grid; gap: 12px; }
.branch {
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--grey-200);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.branch:hover { transform: translateY(-3px); box-shadow: var(--shadow), inset 0 0 0 1px var(--grey-200); }
.branch__code {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 7px;
  background: rgba(228, 18, 27, .1);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--red-500);
}
.branch__name { margin: 0 0 4px; font-size: 1.04rem; }
.branch__desc { margin: 0 0 14px; font-size: .86rem; color: var(--grey-500); }

/* İstatistik kutuları */
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  text-align: center;
}
.stat__value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; color: #fff; }
.stat__label { font-size: .8rem; color: rgba(255, 255, 255, .62); }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding: 40px 0 26px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}
.footer__grid { display: grid; gap: 28px; }
.footer__desc { margin: 16px 0 18px; max-width: 42ch; font-size: .88rem; }
.footer__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__cta .btn { flex: 1 1 150px; }

.footer__title {
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}
.footer__list li + li { margin-top: 9px; }
.footer__list a:hover, .footer__contact a:hover { color: var(--red-300); }

.footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact li + li { margin-top: 12px; }
.footer__contact .icon { color: var(--red-400); margin-top: 2px; }

.footer__bottom {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
}
.footer__copy { margin: 0; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer__legal a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   16. Mobil alt bar
   -------------------------------------------------------------------------- */

.mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--navy-900);
  box-shadow: 0 -8px 26px -12px rgba(0, 0, 0, .7);
}
.mobilebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 62px;
  padding: 8px 4px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .82);
}
.mobilebar__item .icon { width: 21px; height: 21px; }
.mobilebar__item:active { background: rgba(255, 255, 255, .08); }
.mobilebar__item--wa { color: #5FE08C; }
.mobilebar__item--main {
  color: #fff;
  background: linear-gradient(180deg, var(--red-400), var(--red-600));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}

/* --------------------------------------------------------------------------
   17. Duyarlı katmanlar
   -------------------------------------------------------------------------- */

@media (min-width: 480px) {
  .hero__actions .btn { flex: 0 1 auto; min-width: 200px; }
  .cta-band__actions { grid-template-columns: 1fr 1fr; max-width: 640px; }
  .cta-band__actions .btn:first-child { grid-column: 1 / -1; }
}

@media (min-width: 640px) {
  :root { --gutter: 20px; }
  .section { padding: 60px 0; }
  .trustbar__grid { grid-template-columns: repeat(4, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .booking__grid { grid-template-columns: repeat(2, 1fr); }
  .booking__submit { grid-column: 1 / -1; }
  .booking__tab-full { display: inline; }
  .booking__tab-short { display: none; }
  .airport-scroller { grid-auto-columns: 46%; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { grid-template-columns: 1fr auto; align-items: center; }
  .trust { flex-direction: row; text-align: left; padding: 18px 14px; }
  .trust__title { font-size: .86rem; }
}

@media (min-width: 900px) {
  html { scroll-padding-top: 108px; }
  body { padding-bottom: 0; }

  .topbar { display: block; }
  .header__inner { height: 74px; gap: 20px; }
  .burger { display: none; }

  .nav {
    position: static;
    flex-direction: row;
    align-items: center;
    min-width: 0;
    padding: 0;
    background: transparent;
    transform: none;
    overflow: visible;
    margin-inline: auto;
  }
  .nav__head, .nav__foot { display: none; }
  .nav__list { display: flex; gap: 2px; padding: 0; }
  .nav__link {
    position: relative;
    padding: 10px 13px;
    border-radius: 9px;
    font-size: .92rem;
    font-weight: 700;
  }
  .nav__link.is-active { background: transparent; box-shadow: none; color: #fff; }
  .nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 1px;
    height: 3px;
    border-radius: 2px;
    background: var(--red-500);
  }
  .nav-overlay { display: none !important; }

  .icon-btn { display: none; }
  .header__phone { display: flex; flex-direction: column; line-height: 1.2; padding-right: 4px; }
  .header__phone-label { font-size: .68rem; color: rgba(255, 255, 255, .55); }
  .header__phone-number { font-family: var(--font-display); font-size: 1.05rem; font-weight: 900; color: #fff; }
  .header__cta { display: inline-flex; }

  .hero { min-height: 620px; padding: 74px 0 88px; align-items: center; }
  .hero__badge { display: block; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); max-width: 680px; }
  .hero__text { font-size: 1.1rem; }

  .booking-wrap { margin-top: -62px; }
  .booking { padding: 12px; }
  .booking__grid { grid-template-columns: repeat(4, 1fr); }
  .booking__submit { grid-column: 1 / -1; }

  .section__link { display: inline-flex; }
  .trust__desc { display: block; }

  .adv-grid { grid-template-columns: repeat(4, 1fr); }
  .adv { flex-direction: column; }

  .airport-scroller {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .car-grid { grid-template-columns: repeat(3, 1fr); }
  .campaign-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
  .branch-grid { grid-template-columns: repeat(3, 1fr); }

  .promo__inner {
    grid-template-columns: 1.25fr .85fr;
    align-items: center;
    gap: 40px;
    padding: 52px 48px;
  }
  .promo__perks { align-content: center; }

  .cta-band { padding: 76px 0; }
  .cta-band__actions { display: flex; justify-content: center; max-width: none; }

  .page-hero { padding: 62px 0 54px; }

  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr; gap: 32px; }
  .mobilebar { display: none; }
}

@media (min-width: 1140px) {
  .section { padding: 76px 0; }
  .hero { min-height: 700px; }
  .car-grid { grid-template-columns: repeat(4, 1fr); }
  .booking__submit { grid-column: auto; }
  .booking__grid { grid-template-columns: repeat(2, 1.15fr) repeat(2, .9fr) 1fr; align-items: stretch; }
  .booking__submit .btn { height: 100%; }
}
