/* ENG Transfer — Premium Navy/Red */
:root {
  --navy-950: #050E25;
  --navy-900: #0A1B3D;
  --navy-800: #0E2350;
  --navy-700: #122C66;
  --navy-600: #1A3B82;
  --blue: #0B3D91;
  --blue-bright: #1E5FD9;
  --red: #B91C1C;
  --red-bright: #DC2626;
  --red-deep: #7F1313;
  --ink: #0B0F1A;
  --ink-2: #14192A;
  --gray-900: #15192A;
  --gray-800: #1E2336;
  --gray-700: #2A3148;
  --gray-600: #3D4663;
  --gray-500: #6B7596;
  --gray-400: #8E97B3;
  --gray-300: #B5BCD0;
  --gray-200: #D7DCE8;
  --gray-100: #ECEFF6;
  --gray-50:  #F6F8FC;
  --white: #FFFFFF;
  --gold: #C9A96A;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(5,14,37,.06), 0 2px 6px rgba(5,14,37,.04);
  --shadow-md: 0 6px 16px rgba(5,14,37,.10), 0 2px 4px rgba(5,14,37,.06);
  --shadow-lg: 0 24px 60px rgba(5,14,37,.18), 0 8px 16px rgba(5,14,37,.08);
  --shadow-glow-red: 0 12px 32px rgba(185,28,28,.35);
  --shadow-glow-blue: 0 12px 32px rgba(11,61,145,.35);

  --font-display: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.5;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Top Bar / Header ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--gray-200);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  max-width: 1320px; margin: 0 auto; padding: 8px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 4px; align-items: center; }
.topbar-item { display: inline-flex; gap: 6px; align-items: center; opacity: .85; }
.topbar-item svg { width: 14px; height: 14px; }

.header {
  background: var(--navy-900);
  color: var(--white);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 18px 32px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: white; font-size: 18px;
  letter-spacing: -.04em;
  box-shadow: 0 4px 14px rgba(185,28,28,.45);
}
.logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.logo-name span { color: var(--red-bright); }
.logo-sub { display: block; font-size: 10.5px; font-family: var(--font-mono); font-weight: 500; opacity: .55; letter-spacing: .12em; text-transform: uppercase; margin-top: -2px; }

.nav { display: flex; gap: 4px; justify-content: center; }
.nav a {
  padding: 8px 14px; font-size: 14px; font-weight: 500; opacity: .85;
  border-radius: 8px; transition: all .15s;
}
.nav a:hover { opacity: 1; background: rgba(255,255,255,.06); }
.nav a.active { color: var(--red-bright); opacity: 1; }

.header-right { display: flex; gap: 10px; align-items: center; }
.lang-switch, .currency-switch {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: var(--white);
  font-family: var(--font-mono); font-weight: 500;
  position: relative;
}
.lang-switch:hover, .currency-switch:hover { background: rgba(255,255,255,.10); }
.lang-flag { width: 18px; height: 12px; border-radius: 2px; overflow: hidden; display: inline-block; }
.dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: white; color: var(--ink);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  min-width: 180px; padding: 6px; z-index: 100;
}
.dropdown-item {
  padding: 9px 12px; border-radius: 8px; font-size: 13.5px;
  display: flex; gap: 10px; align-items: center; cursor: pointer;
}
.dropdown-item:hover { background: var(--gray-100); }
.dropdown-item.active { background: var(--gray-100); font-weight: 600; color: var(--blue); }

.btn-call {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 9px 14px; border-radius: 999px;
  background: var(--red); color: white; font-weight: 600; font-size: 13px;
  box-shadow: 0 4px 14px rgba(185,28,28,.4);
}
.btn-call:hover { background: var(--red-bright); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; gap: 8px; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: var(--r-md); font-weight: 600; font-size: 14.5px;
  transition: all .15s; white-space: nowrap;
}
.btn-primary { background: var(--red); color: white; box-shadow: var(--shadow-glow-red); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: var(--navy-900); color: white; }
.btn-secondary:hover { background: var(--navy-800); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--gray-200); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Hero Variants ---------- */
.hero { position: relative; color: white; overflow: hidden; }

/* Variant 1: Split */
.hero-split {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  padding: 80px 0 0;
}
.hero-split-grid {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(220,38,38,.12); color: #FCA5A5;
  border: 1px solid rgba(220,38,38,.3);
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--red-bright); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.4 } }

.hero-title {
  font-family: var(--font-display);
  font-size: 76px; line-height: 1.02; letter-spacing: -.035em;
  font-weight: 700; margin: 0 0 24px;
}
.hero-title em { font-style: normal; color: var(--red-bright); }
.hero-title .underline {
  position: relative; white-space: nowrap;
}
.hero-title .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 6px;
  background: var(--red); z-index: -1; opacity: .7;
}
.hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--gray-300);
  max-width: 520px; margin: 0 0 32px;
}
.hero-trust { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.hero-trust-item { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: var(--gray-300); }
.hero-trust-item .icon { color: var(--red-bright); }

.hero-visual {
  position: relative; height: 540px;
  display: grid; place-items: center;
}
.hero-visual-card {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,61,145,.35) 0%, rgba(185,28,28,.15) 100%);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.hero-visual-card::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: 32px 32px;
}
.placeholder-img {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 12px, rgba(255,255,255,.06) 12px 24px);
  border-radius: inherit;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .12em;
  text-align: center;
  padding: 16px;
}
.placeholder-img.light {
  background: repeating-linear-gradient(135deg, var(--gray-100) 0 12px, var(--gray-200) 12px 24px);
  color: var(--gray-500);
}
.hero-floating-card {
  position: absolute; padding: 16px 18px;
  background: rgba(10,27,61,.92); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 12px; align-items: center;
  z-index: 3;
}
.hero-floating-card.tl { top: 24px; left: -12px; }
.hero-floating-card.br { bottom: 24px; right: -12px; }
.hero-floating-card .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: white; letter-spacing: -.02em; }
.hero-floating-card .label { font-size: 11px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); }
.hero-floating-card .icon-bubble {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--red); display: grid; place-items: center; color: white;
}

/* Variant 2: Full bleed */
.hero-full {
  background: var(--navy-950);
  min-height: 640px;
  padding: 100px 0 0;
  position: relative;
}
.hero-full::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(11,61,145,.4), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(185,28,28,.2), transparent 50%);
}
.hero-full-content {
  position: relative; max-width: 1080px; margin: 0 auto; padding: 0 32px; text-align: center;
}
.hero-full .hero-title { font-size: 92px; }
.hero-full .hero-sub { margin-left: auto; margin-right: auto; }

/* Variant 3: Photo */
.hero-photo {
  min-height: 640px;
  position: relative; padding: 80px 0 0;
  background: var(--navy-950);
  overflow: hidden;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,14,37,.7) 0%, rgba(5,14,37,.85) 100%),
    repeating-linear-gradient(135deg, #1a2540 0 18px, #0f1a35 18px 36px);
}
.hero-photo-bg::after {
  content: "ANTALYA · PALM BEACH · MEDITERRANEAN COASTLINE";
  position: absolute; bottom: 24px; right: 32px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .2em; color: rgba(255,255,255,.35);
}
.hero-photo-content {
  position: relative; max-width: 1320px; margin: 0 auto; padding: 0 32px;
}

/* ---------- Search Widget ---------- */
.search-widget {
  background: white; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  position: relative;
  z-index: 4;
}
.search-widget.compact { box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }

.search-tabs {
  display: flex; gap: 4px; padding: 4px;
  border-bottom: 1px solid var(--gray-100);
}
.search-tab {
  padding: 10px 18px; border-radius: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--gray-500);
  display: inline-flex; gap: 8px; align-items: center;
  position: relative;
}
.search-tab:hover { color: var(--ink); }
.search-tab.active { color: var(--ink); background: var(--gray-100); }
.search-tab.active::after {
  content: ""; position: absolute; bottom: -5px; left: 18px; right: 18px; height: 3px;
  background: var(--red); border-radius: 999px;
}

.trip-toggle {
  display: inline-flex; padding: 4px; background: var(--gray-100); border-radius: 999px;
  margin: 14px 14px 0;
}
.trip-toggle button {
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--gray-500);
}
.trip-toggle button.active {
  background: var(--navy-900); color: white;
}

.search-fields {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 0.9fr 0.9fr auto;
  gap: 1px; padding: 10px;
  background: var(--gray-100); border-radius: var(--r-lg);
  margin: 12px;
}
.search-fields.with-return {
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr 0.9fr 0.9fr auto;
}

.field {
  background: white;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
  position: relative;
  cursor: pointer;
  transition: background .15s;
}
.field:first-child { border-top-left-radius: var(--r-md); border-bottom-left-radius: var(--r-md); }
.field-cta { background: var(--red); color: white;
  border-top-right-radius: var(--r-md); border-bottom-right-radius: var(--r-md);
  display: grid; place-items: center; padding: 0 24px;
  font-weight: 700; font-size: 14.5px;
  cursor: pointer; transition: background .15s;
}
.field-cta:hover { background: var(--red-bright); }
.field-cta svg { margin-left: 8px; }

.field:hover:not(.field-cta) { background: var(--gray-50); }
.field-label {
  font-size: 11px; font-family: var(--font-mono); font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500);
}
.field-value {
  font-size: 15px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  min-height: 22px;
}
.field-value .placeholder { color: var(--gray-400); font-weight: 500; }
.field-value .code {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  background: var(--gray-100); color: var(--gray-700);
  padding: 2px 6px; border-radius: 4px; margin-left: auto;
}
.field input, .field select {
  border: none; outline: none; padding: 0; background: transparent;
  font-size: 15px; font-weight: 600; color: var(--ink); width: 100%;
}
.field input::placeholder { color: var(--gray-400); font-weight: 500; }

.suggest {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: white; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 6px; z-index: 9999; max-height: 320px; overflow: auto;
}
.suggest-group { padding: 8px 12px 4px; font-size: 11px; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); }
.suggest-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
}
.suggest-item:hover { background: var(--gray-100); }
.suggest-item .icon {
  width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center;
  background: var(--gray-100); color: var(--blue);
}
.suggest-item.airport .icon { background: rgba(11,61,145,.1); color: var(--blue); }
.suggest-item .name { font-weight: 600; font-size: 14px; }
.suggest-item .meta { font-size: 12px; color: var(--gray-500); }
.suggest-item .badge {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  padding: 2px 6px; border-radius: 4px; background: var(--gray-100); color: var(--gray-700);
  margin-left: auto;
}

.stepper { display: inline-flex; align-items: center; gap: 6px; }
.stepper button {
  width: 24px; height: 24px; border-radius: 999px; background: var(--gray-100);
  display: grid; place-items: center; color: var(--ink); font-weight: 600;
}
.stepper button:hover { background: var(--gray-200); }
.stepper .v { min-width: 18px; text-align: center; font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: 96px 32px; }
.section-light { background: white; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--navy-900); color: white; }
.container { max-width: 1320px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em; color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: 48px; line-height: 1.05;
  letter-spacing: -.025em; font-weight: 700; margin: 0 0 18px; color: var(--ink);
}
.section-dark .section-title { color: white; }
.section-sub { font-size: 17px; color: var(--gray-500); max-width: 620px; margin: 0; line-height: 1.55; }
.section-dark .section-sub { color: var(--gray-300); }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head-row { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 56px; }

/* Vehicle Grid */
.vehicle-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.vehicle-card {
  background: white; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden; transition: all .2s;
  cursor: pointer; position: relative;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.vehicle-card.featured { border-color: var(--red); }
.vehicle-card.featured::before {
  content: "POPÜLER"; position: absolute; top: 16px; right: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  background: var(--red); color: white; padding: 4px 8px; border-radius: 4px;
  letter-spacing: .1em;
}
.vehicle-img {
  height: 210px; background: linear-gradient(160deg,#F0F4FF 0%,#E8F0FC 60%,#DDE8FA 100%);
  display: grid; place-items: center; position: relative;
  overflow: hidden;
}
.vehicle-img-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  background: rgba(10,27,61,.92); color: white;
  padding: 3px 8px; border-radius: 4px; letter-spacing: .1em;
}
.vehicle-body { padding: 22px; }
.vehicle-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 4px; }
.vehicle-model { font-size: 13px; color: var(--gray-500); margin: 0 0 16px; }
.vehicle-specs {
  display: flex; gap: 16px; padding: 12px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  margin-bottom: 16px;
}
.vehicle-spec { display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--gray-700); }
.vehicle-spec .icon { color: var(--blue); }
.vehicle-price-row { display: flex; align-items: end; justify-content: space-between; }
.vehicle-price-label { font-size: 12px; color: var(--gray-500); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.vehicle-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.vehicle-price .currency { font-size: 16px; color: var(--gray-500); margin-right: 4px; }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--navy-900); padding: 36px 28px;
}
.stat-num {
  font-family: var(--font-display); font-size: 56px; font-weight: 700;
  letter-spacing: -.03em; color: white; line-height: 1;
}
.stat-num em { color: var(--red-bright); font-style: normal; }
.stat-label { font-size: 13.5px; color: var(--gray-300); margin-top: 8px; }

/* Routes */
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.route-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 24px; transition: all .2s;
  cursor: pointer; display: flex; flex-direction: column; gap: 16px;
}
.route-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.route-pair { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16px; }
.route-pair .arrow { color: var(--red); }
.route-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-500); }
.route-meta span { display: inline-flex; gap: 6px; align-items: center; }
.route-price-row { display: flex; justify-content: space-between; align-items: end; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.route-from { font-size: 12px; color: var(--gray-500); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.route-amount { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  padding: 28px; border-radius: var(--r-lg); background: white;
  border: 1px solid var(--gray-200);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-900) 100%);
  display: grid; place-items: center; color: white;
  margin-bottom: 18px;
}
.feature-icon.red { background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); }
.feature-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -.015em; margin: 0 0 8px; }
.feature-desc { font-size: 14px; color: var(--gray-500); margin: 0; line-height: 1.55; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: white; padding: 28px; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
}
.review-stars { color: #F59E0B; display: flex; gap: 2px; margin-bottom: 14px; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--gray-700); margin: 0 0 18px; }
.review-author { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.review-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-700) 100%);
  display: grid; place-items: center; color: white; font-weight: 700;
  font-family: var(--font-display);
}
.review-name { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--gray-500); font-family: var(--font-mono); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  color: white; border-radius: var(--r-xl);
  padding: 56px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center;
}
.cta-banner::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 60%; height: 200%; background: radial-gradient(circle, rgba(185,28,28,.25), transparent 70%);
}
.cta-banner h2 { font-family: var(--font-display); font-size: 38px; line-height: 1.1; letter-spacing: -.025em; margin: 0 0 14px; position: relative; }
.cta-banner p { color: var(--gray-300); margin: 0; position: relative; }
.cta-banner-actions { display: flex; gap: 12px; position: relative; justify-content: end; flex-wrap: wrap; }

/* Footer */
.footer {
  background: var(--navy-950); color: var(--gray-300); padding: 80px 32px 24px;
}
.footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: white; margin: 0 0 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--gray-400); }
.footer ul a:hover { color: white; }
.footer-bottom {
  max-width: 1320px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: var(--gray-500);
}
.footer-payments { display: flex; gap: 8px; }
.pay-badge {
  padding: 5px 10px; border-radius: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  color: var(--gray-300); letter-spacing: .1em;
}

/* WhatsApp FAB */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 999px;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  cursor: pointer; transition: all .2s;
}
.fab-whatsapp:hover { transform: scale(1.05); }

/* ---------- Results Page ---------- */
.page-section { padding: 32px; background: var(--gray-50); min-height: calc(100vh - 200px); }
.results-layout {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
}
.filters {
  background: white; border-radius: var(--r-lg); padding: 24px; height: fit-content;
  position: sticky; top: 90px;
  border: 1px solid var(--gray-200);
}
.filters h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 18px; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--gray-100); }
.filter-group:first-of-type { border-top: none; padding-top: 0; }
.filter-group h4 { font-size: 13px; margin: 0 0 12px; color: var(--gray-700); }
.filter-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; }
.filter-row input { accent-color: var(--red); }
.filter-row .count { margin-left: auto; font-size: 12px; color: var(--gray-500); font-family: var(--font-mono); }

.results-main { display: flex; flex-direction: column; gap: 16px; }
.results-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: white; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
}
.route-info {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px;
}
.route-info b { font-family: var(--font-display); font-size: 16px; }
.route-info .arrow { color: var(--red); font-size: 18px; }
.results-count { font-size: 13px; color: var(--gray-500); font-family: var(--font-mono); }
.sort-select {
  padding: 8px 12px; border-radius: 8px; border: 1px solid var(--gray-200);
  background: white; font-size: 13px; font-weight: 600;
}

.result-card {
  background: white; border-radius: var(--r-lg); border: 1px solid var(--gray-200);
  display: grid; grid-template-columns: 240px 1fr auto; gap: 0;
  overflow: hidden; transition: all .15s;
}
.result-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.result-card.selected { border-color: var(--red); box-shadow: var(--shadow-glow-red); }
.result-img {
  background: var(--gray-100); position: relative; min-height: 200px;
  display: grid; place-items: center;
}
.result-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.result-head { display: flex; gap: 12px; align-items: center; }
.result-cat-tag {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  background: var(--navy-900); color: white;
  padding: 3px 8px; border-radius: 4px; letter-spacing: .1em;
}
.result-cat-tag.shuttle { background: var(--gray-700); }
.result-cat-tag.taxi { background: var(--blue); }
.result-cat-tag.vip { background: var(--red); }
.result-cat-tag.minivan { background: #4F46A8; }
.result-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.result-model { font-size: 13px; color: var(--gray-500); }
.result-specs { display: flex; gap: 18px; flex-wrap: wrap; }
.result-spec { display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--gray-700); }
.result-spec .icon { color: var(--blue); }
.result-trip {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center;
  padding: 14px 16px; background: var(--gray-50); border-radius: 10px;
  font-size: 13px;
}
.trip-point .label { font-size: 10.5px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); margin-bottom: 2px; }
.trip-point .value { font-weight: 600; }
.trip-arrow { color: var(--red); }
.result-features { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--gray-700); }
.result-features span { display: inline-flex; gap: 5px; align-items: center; }
.result-features .icon { color: #16A34A; }
.result-side {
  padding: 22px 24px; display: flex; flex-direction: column; justify-content: center;
  align-items: end; gap: 10px; background: var(--gray-50);
  border-left: 1px solid var(--gray-200); min-width: 220px;
}
.result-price { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -.025em; color: var(--ink); }
.result-price .currency { font-size: 18px; color: var(--gray-500); }
.result-price-meta { font-size: 11.5px; color: var(--gray-500); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Booking / Payment ---------- */
.booking-layout {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 32px;
  padding-top: 24px;
}
.steps-bar {
  display: flex; gap: 0; margin-bottom: 24px;
  background: white; border-radius: var(--r-lg); padding: 6px;
  border: 1px solid var(--gray-200);
}
.step {
  flex: 1; padding: 10px 14px; display: flex; gap: 10px; align-items: center;
  border-radius: 10px; font-size: 14px; color: var(--gray-500); font-weight: 500;
}
.step.active { background: var(--navy-900); color: white; }
.step.done { color: var(--ink); }
.step .num {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--gray-100); color: var(--gray-700);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; font-weight: 700;
}
.step.active .num { background: var(--red); color: white; }
.step.done .num { background: #16A34A; color: white; }

.booking-card {
  background: white; border-radius: var(--r-lg); border: 1px solid var(--gray-200);
  padding: 32px; margin-bottom: 16px;
}
.booking-card h2 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -.02em;
  margin: 0 0 6px;
}
.booking-card .sub { color: var(--gray-500); margin: 0 0 24px; font-size: 14px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.span-2 { grid-column: span 2; }
.form-field label {
  font-size: 12px; font-weight: 600; color: var(--gray-700);
  text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: 10px;
  font-size: 14.5px; background: white;
  transition: all .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,61,145,.1);
}
.form-field .hint { font-size: 12px; color: var(--gray-500); }

.checkbox-row {
  display: flex; gap: 12px; align-items: start; padding: 14px;
  background: var(--gray-50); border-radius: 10px; cursor: pointer;
  border: 1px solid var(--gray-200); margin-bottom: 8px;
}
.checkbox-row.checked { background: rgba(11,61,145,.05); border-color: var(--blue); }
.checkbox-row input { accent-color: var(--red); margin-top: 3px; }
.checkbox-row .name { font-weight: 600; font-size: 14px; }
.checkbox-row .desc { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }
.checkbox-row .price { margin-left: auto; font-family: var(--font-mono); font-weight: 700; }

.summary {
  background: white; border-radius: var(--r-lg); border: 1px solid var(--gray-200);
  position: sticky; top: 90px; height: fit-content; overflow: hidden;
}
.summary-vehicle {
  background: var(--navy-900); color: white; padding: 22px 24px;
  display: flex; gap: 14px; align-items: center;
}
.summary-vehicle-img {
  width: 80px; height: 60px; border-radius: 8px;
  background: var(--navy-700);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.5);
  text-align: center;
}
.summary-vehicle-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.summary-vehicle-cat { font-size: 12px; opacity: .7; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }

.summary-body { padding: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 13.5px; }
.summary-row .label { color: var(--gray-500); }
.summary-row .val { font-weight: 600; text-align: right; }
.summary-trip {
  padding: 16px; background: var(--gray-50); border-radius: 10px; margin-bottom: 16px;
  font-size: 13px;
}
.summary-trip-point { display: flex; gap: 10px; padding: 6px 0; }
.summary-trip-point .dot {
  width: 10px; height: 10px; border-radius: 999px; background: var(--blue); margin-top: 5px;
  flex-shrink: 0;
}
.summary-trip-point.end .dot { background: var(--red); }
.summary-trip-line { width: 2px; background: var(--gray-300); margin-left: 4px; height: 12px; }
.summary-divider { border-top: 1px dashed var(--gray-200); margin: 14px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: end; padding-top: 12px; }
.summary-total .label { font-size: 13px; color: var(--gray-500); }
.summary-total .val { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -.02em; }
.summary-total .currency { font-size: 18px; color: var(--gray-500); }

/* Payment */
.pm-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.pm-card {
  border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 14px;
  display: flex; gap: 10px; align-items: center; cursor: pointer; font-weight: 600;
  font-size: 13.5px;
}
.pm-card.active { border-color: var(--red); background: rgba(220,38,38,.03); }
.pm-card .pm-icon { width: 36px; height: 24px; border-radius: 4px; background: var(--gray-100); display: grid; place-items: center; font-family: var(--font-mono); font-size: 9px; font-weight: 700; }

.card-mock {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 16px; padding: 24px; color: white;
  margin-bottom: 24px; position: relative; overflow: hidden;
  font-family: var(--font-mono);
}
.card-mock::before {
  content: ""; position: absolute; top: -50%; right: -20%; width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(220,38,38,.25), transparent 70%);
}
.card-mock-row { display: flex; justify-content: space-between; align-items: center; position: relative; }
.card-chip { width: 36px; height: 26px; border-radius: 6px; background: linear-gradient(135deg, #C9A96A, #8E7340); }
.card-num { font-size: 22px; letter-spacing: .15em; margin: 28px 0 18px; position: relative; font-weight: 600; }
.card-row-bottom { display: flex; justify-content: space-between; font-size: 11px; position: relative; }
.card-row-bottom .label { opacity: .55; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.card-row-bottom .v { font-weight: 600; font-size: 14px; }

.security-note {
  display: flex; gap: 12px; padding: 14px; background: rgba(22,163,74,.06);
  border: 1px solid rgba(22,163,74,.2); border-radius: 10px;
  font-size: 13px; color: #16A34A; margin-bottom: 18px;
}
.security-note .icon { flex-shrink: 0; margin-top: 1px; }

.success-page {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 72px 32px;
}
.success-icon {
  width: 88px; height: 88px; margin: 0 auto 28px;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  border-radius: 999px; display: grid; place-items: center; color: white;
  box-shadow: 0 16px 40px rgba(22,163,74,.4);
}
.success-page h1 { font-family: var(--font-display); font-size: 44px; letter-spacing: -.025em; margin: 0 0 12px; }
.success-page .lead { font-size: 17px; color: var(--gray-500); margin: 0 0 36px; }
.success-ref {
  display: inline-flex; gap: 14px; align-items: center;
  padding: 14px 24px; background: white; border: 1px solid var(--gray-200);
  border-radius: 999px; margin-bottom: 36px;
  font-family: var(--font-mono); font-size: 13.5px;
}
.success-ref b { color: var(--red); font-size: 16px; letter-spacing: .1em; }
.success-card {
  background: white; border-radius: var(--r-lg); border: 1px solid var(--gray-200);
  text-align: left; padding: 32px; margin-top: 24px;
}

/* About page */
.about-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: white; padding: 80px 32px;
}
.about-hero h1 { font-family: var(--font-display); font-size: 64px; letter-spacing: -.03em; line-height: 1.05; margin: 0 0 18px; max-width: 900px; }
.about-hero p { font-size: 18px; max-width: 720px; color: var(--gray-300); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  background: white;
}
.value-num {
  font-family: var(--font-display); font-size: 14px; color: var(--red);
  font-family: var(--font-mono); font-weight: 600; letter-spacing: .12em;
}
.value-card h3 { font-family: var(--font-display); font-size: 22px; margin: 14px 0 10px; letter-spacing: -.015em; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 32px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
}
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--navy-900));
  display: grid; place-items: center; color: white;
}
.svc-card h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; letter-spacing: -.02em; }
.svc-card p { color: var(--gray-500); margin: 0 0 12px; font-size: 14.5px; }
.svc-card ul { padding: 0; margin: 0; list-style: none; display: flex; gap: 14px; flex-wrap: wrap; }
.svc-card li { display: inline-flex; gap: 6px; align-items: center; font-size: 13px; color: var(--gray-700); }
.svc-card li .icon { color: #16A34A; }

/* Misc */
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint::after { content: ""; width: 1px; height: 32px; background: rgba(255,255,255,.3); animation: drop 1.6s infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Responsive trim */
@media (max-width: 1100px) {
  .vehicle-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid, .route-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-split-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; }
  .hero-title { font-size: 56px !important; }
  .booking-layout, .results-layout { grid-template-columns: 1fr; }
  .summary, .filters { position: static; }
  .search-fields, .search-fields.with-return { grid-template-columns: 1fr 1fr; }
  .field-cta { grid-column: span 2; padding: 14px; }
}

/* Apply tweaks */
.eng-app[data-radius="0"] { --r-sm: 0; --r-md: 0; --r-lg: 0; --r-xl: 0; --r-pill: 999px; }
.eng-app[data-radius="1"] { /* default */ }
.eng-app[data-radius="2"] { --r-sm: 14px; --r-md: 18px; --r-lg: 24px; --r-xl: 32px; }

/* ═══════════════════════════════════════════════════════
   MOBİL BOTTOM NAV BAR
═══════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   MOBİL HEADER (hamburger)
═══════════════════════════════════════════════════════ */
.mobile-header {
  display: none;
}
.mobile-drawer {
  position: fixed; inset: 0; z-index: 999;
  display: flex;
}
.mobile-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(5,14,37,.6); backdrop-filter: blur(4px);
}
.mobile-drawer-panel {
  position: relative; z-index: 1;
  width: 280px; height: 100%;
  background: var(--navy-900);
  display: flex; flex-direction: column;
  padding: 0 0 32px; overflow-y: auto;
  animation: slideIn .22s ease;
}
@keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: none; color: white;
  display: grid; place-items: center; font-size: 18px; cursor: pointer;
}
.mobile-drawer-nav { padding: 12px 0; }
.mobile-drawer-nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; color: rgba(255,255,255,.8);
  font-size: 16px; font-weight: 500; border: none;
  text-decoration: none; transition: background .15s;
}
.mobile-drawer-nav a:hover, .mobile-drawer-nav a.active {
  background: rgba(255,255,255,.08); color: white;
}
.mobile-drawer-nav a .nav-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
}
.mobile-drawer-divider {
  height: 1px; background: rgba(255,255,255,.08); margin: 8px 20px;
}
.mobile-drawer-contact {
  padding: 16px 20px; display: flex; flex-direction: column; gap: 10px;
}
.mobile-drawer-contact a {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.7); font-size: 14px; text-decoration: none;
}

/* ═══════════════════════════════════════════════════════
   TABLETe (max 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: 52px !important; }
  .section-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner-actions { justify-content: start; }

  /* Results card tablet */
  .rcard { grid-template-columns: 200px 1fr; }
  .rcard > div:last-child { grid-column: span 2; border-left: none; border-top: 1px solid var(--gray-100); flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ═══════════════════════════════════════════════════════
   MOBİL (max 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* body padding — bottom nav için */
  body { padding-bottom: 72px; }

  /* ── Header ── */
  .topbar { display: none; }
  .header { display: none; }
  .mobile-header {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--navy-900); padding: 12px 16px;
    position: sticky; top: 0; z-index: 200;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mobile-header .logo-name { font-size: 17px; }
  .mobile-header .logo-sub  { font-size: 9px; }
  .mobile-header .logo-mark { width: 32px; height: 32px; font-size: 15px; }
  .hamburger-btn {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.08); border: none; color: white;
    display: grid; place-items: center; cursor: pointer;
  }

  /* ── Bottom Nav ── */
  .mobile-bottom-nav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 500; background: white;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -8px 24px rgba(5,14,37,.12);
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
  }
  .mob-nav-item {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    gap: 3px; padding: 6px 4px; border: none; background: none;
    font-size: 10px; font-weight: 600; color: var(--gray-500);
    font-family: var(--font-body); cursor: pointer;
    text-decoration: none; transition: color .15s;
  }
  .mob-nav-item.active { color: var(--red); }
  .mob-nav-item svg { width: 22px; height: 22px; }
  .mob-nav-item.whatsapp {
    background: #25D366; color: white; border-radius: 16px;
    margin: -12px 8px 0; box-shadow: 0 6px 20px rgba(37,211,102,.5);
    padding: 10px 4px 6px;
  }
  .mob-nav-item.whatsapp svg { width: 26px; height: 26px; }

  /* Hide desktop FAB on mobile */
  .fab-whatsapp { display: none; }

  /* ── Hero ── */
  .hero-split-grid { grid-template-columns: 1fr; padding: 0 16px; gap: 24px; }
  .hero-visual { height: 220px; }
  .hero-floating-card { display: none; }
  .hero-title { font-size: 38px !important; }
  .hero-sub { font-size: 15px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero-trust { flex-direction: column; gap: 8px; }

  /* ── Search Widget ── */
  .search-widget { border-radius: var(--r-lg); }
  .trip-toggle { margin: 10px 10px 0; gap: 2px; }
  .trip-toggle button { font-size: 12px; padding: 7px 10px; }
  .search-fields,
  .search-fields.with-return {
    grid-template-columns: 1fr !important;
    gap: 1px; padding: 8px; margin: 8px;
  }
  .field { padding: 10px 12px; }
  .field:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
  .field-cta {
    grid-column: 1 !important;
    border-radius: 0 0 var(--r-md) var(--r-md) !important;
    padding: 14px;
  }
  .field-value { font-size: 14px; }
  .suggest { left: -12px; right: -12px; }

  /* ── Sections ── */
  .section { padding: 56px 16px; }
  .container { padding: 0; }
  .section-title { font-size: 28px; }
  .section-eyebrow { font-size: 11px; }
  .section-head-row { flex-direction: column; gap: 16px; margin-bottom: 32px; }

  /* ── Vehicle Grid ── */
  .vehicle-grid { grid-template-columns: 1fr; gap: 16px; }
  .vehicle-card.featured::before { font-size: 9px; padding: 3px 6px; }
  .vehicle-img { height: 180px; }
  .vehicle-name { font-size: 18px; }
  .vehicle-price { font-size: 24px; }

  /* ── Stats ── */
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 36px; }

  /* ── Routes ── */
  .route-grid { grid-template-columns: 1fr; }
  .route-pair { font-size: 14px; }

  /* ── Features ── */
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature { padding: 18px; }
  .feature-title { font-size: 15px; }
  .feature-desc { font-size: 13px; }

  /* ── Reviews ── */
  .review-grid { grid-template-columns: 1fr; }

  /* ── CTA Banner ── */
  .cta-banner {
    padding: 32px 20px; grid-template-columns: 1fr;
    gap: 20px; border-radius: var(--r-lg);
  }
  .cta-banner h2 { font-size: 24px; }
  .cta-banner-actions { justify-content: start; flex-wrap: wrap; gap: 10px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }

  /* ── Results page ── */
  .results-layout { grid-template-columns: 1fr; gap: 0; }
  .filters {
    border-radius: 0; border-left: none; border-right: none;
    margin: 0; padding: 16px;
  }
  /* Filtre akordiyon — mobile'da gizli başlar */
  .filters-body { display: none; }
  .filters-body.open { display: block; }
  .filters h3 {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; margin: 0; font-size: 16px;
  }

  /* Result card — mobile vertical */
  .rcard {
    grid-template-columns: 1fr !important;
    margin-bottom: 12px;
  }
  .rcard > div:nth-child(1) { min-height: 180px; } /* image */
  .rcard > div:nth-child(3) { /* price side */
    border-left: none; border-top: 1px solid var(--gray-100);
    flex-direction: row; justify-content: space-between; align-items: center;
    padding: 16px;
  }

  /* ── Category tabs (results) ── */
  .results-layout > div:first-child { order: 2; }
  .results-layout > div:last-child  { order: 1; }

  /* ── Booking ── */
  .booking-layout { grid-template-columns: 1fr; gap: 0; }
  .booking-card { padding: 20px 16px; margin-bottom: 12px; border-radius: var(--r-lg); }
  .booking-card h2 { font-size: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.span-2 { grid-column: 1; }
  .steps-bar { gap: 0; overflow-x: auto; white-space: nowrap; }
  .step { min-width: auto; padding: 8px 10px; font-size: 12px; }
  .step .num { width: 20px; height: 20px; font-size: 11px; }

  /* ── Summary (booking) ── */
  .summary { border-radius: var(--r-lg); }
  .summary-vehicle { padding: 16px; }

  /* ── Success page ── */
  .success-page { padding: 40px 16px; }
  .success-page h1 { font-size: 30px; }
  .success-icon { width: 64px; height: 64px; }

  /* ── Footer ── */
  .footer { padding: 48px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-payments { flex-wrap: wrap; justify-content: center; }

  /* ── About hero ── */
  .about-hero h1 { font-size: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .booking-layout { grid-template-columns: 1fr; }
  section[style*="grid-template-columns: 1.1fr"] { display: block !important; }

  /* ── Payment ── */
  .pm-row { grid-template-columns: 1fr; gap: 8px; }
  .card-mock { padding: 16px; }
  .card-num { font-size: 16px; }

  /* ── Genel padding ── */
  .page-section { padding: 16px; }
  section[style*="padding:"] { }
}

/* ═══════════════════════════════════════════════════════
   KÜÇÜK EKRAN (max 480px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 32px !important; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 30px; }
  .mob-nav-item { font-size: 9px; }
}
