/* ============================================================
   AYSAM TURİZM — Kurumsal Tasarım Sistemi (UI/UX)
   Kimlik: Executive Corporate & Logistics
   Renk Düzeni: Derin Kraliyet Laciverti + İmza Kırmızı + Buzul Beyaz
   ============================================================ */

:root {
  color-scheme: light;

  /* Marka Renkleri - Lacivert Derinlikleri */
  --navy-950: #050c18;
  --navy-900: #0a1728;
  --navy-850: #0e2038;
  --navy-800: #132b4a;
  --navy-700: #1c3b65;
  --navy-600: #284e82;

  /* Marka Renkleri - İmza Kırmızı */
  --red-600: #b8151b;
  --red-500: #d92228;
  --red-400: #ee383e;
  --red-300: #f87171;
  --red-50:  #fef2f2;

  /* Açık Kurumsal Zemin */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-subtle: #f1f5f9;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Tipografi Renkleri */
  --head: #0a1728;
  --ink: #334155;
  --ink-soft: #64748b;
  --ink-muted: #94a3b8;

  /* Koyu Alan Metinleri */
  --ink-100: #f8fafc;
  --ink-200: #e2e8f0;
  --ink-300: #cbd5e1;
  --ink-400: #94a3b8;
  --white: #ffffff;
  --green-500: #25d366;

  /* Geometri & Yarıçaplar */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Çok Katmanlı Ortam Gölgeleri */
  --shadow-xs: 0 1px 2px rgba(10, 23, 40, 0.04);
  --shadow-sm: 0 4px 12px -2px rgba(10, 23, 40, 0.06), 0 1px 3px rgba(10, 23, 40, 0.03);
  --shadow-md: 0 12px 32px -4px rgba(10, 23, 40, 0.08), 0 4px 12px -2px rgba(10, 23, 40, 0.04);
  --shadow-lg: 0 24px 56px -12px rgba(10, 23, 40, 0.14), 0 8px 24px -4px rgba(10, 23, 40, 0.06);
  --shadow-xl: 0 32px 72px -16px rgba(10, 23, 40, 0.22);
  --shadow-red: 0 10px 28px -6px rgba(217, 34, 40, 0.42);
  --shadow-red-hover: 0 16px 36px -6px rgba(217, 34, 40, 0.55);

  /* Font Ailesi */
  --font-head: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Ölçüler & Geçişler */
  --navbar-h: 78px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Temel Reset & Sayfa Ayarları ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-h) + 52px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

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

::selection {
  background: var(--red-500);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
  border: 2px solid var(--bg-soft);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--navy-700);
}

/* ---------- Kapsayıcılar ---------- */
.container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}
.container--narrow {
  width: min(880px, calc(100% - 48px));
}

/* ---------- Erişilebilirlik & Yardımcılar ---------- */
:focus-visible {
  outline: 2.5px solid var(--red-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 999;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--red-500);
  box-shadow: var(--shadow-lg);
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400), #ff7675);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

.text-gradient {
  background: linear-gradient(120deg, var(--head) 0%, var(--red-600) 55%, var(--red-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-light {
  background: linear-gradient(110deg, #ffffff 0%, #ff8084 60%, #ffb3b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red-400) 0%, var(--red-500) 60%, var(--red-600) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn--primary:hover {
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-red-hover);
  background: linear-gradient(135deg, var(--red-300) 0%, var(--red-400) 60%, var(--red-500) 100%);
}
.btn--primary:active {
  transform: translateY(-1px);
}

.btn--hero {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(5, 12, 24, 0.25);
  backdrop-filter: blur(12px);
}
.btn--hero:hover {
  transform: translateY(-2.5px);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 12, 24, 0.35);
  color: var(--red-600);
}

.btn--outline {
  border: 1.5px solid var(--line-strong);
  color: var(--head);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.btn--outline:hover {
  border-color: var(--red-500);
  color: var(--red-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--light {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 12px 32px rgba(5, 12, 24, 0.2);
}
.btn--light:hover {
  transform: translateY(-2.5px);
  background: var(--bg-soft);
  color: var(--red-600);
  box-shadow: 0 18px 40px rgba(5, 12, 24, 0.3);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.02rem;
}
.btn--block {
  width: 100%;
}

.btn__spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__spinner {
  display: inline-block;
}
.btn.is-loading .btn__label {
  opacity: 0.7;
}
.btn.is-loading {
  pointer-events: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   ÜST BİLGİ ÇUBUĞU (Topbar)
   ============================================================ */
.topbar {
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-300);
  font-weight: 500;
  transition: color 0.25s;
}
a.topbar__item:hover {
  color: var(--white);
}
.topbar__item svg {
  width: 15px;
  height: 15px;
  color: var(--red-400);
  flex-shrink: 0;
}
.topbar__item--live {
  color: var(--ink-200);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  display: inline-block;
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ============================================================
   NAVBAR (Yapışkan & Yarı Saydam Cam)
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px -10px rgba(10, 23, 40, 0.12);
  border-bottom-color: var(--line);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 48vw);
  transition: transform 0.35s var(--ease-out);
}
.logo:hover .logo__img {
  transform: scale(1.03);
}
.logo--footer .logo__img {
  height: 46px;
  max-width: 220px;
  filter: brightness(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  padding: 7px 12px;
  border-radius: var(--radius-full);
  transition: color 0.25s, background 0.25s;
  position: relative;
  white-space: nowrap;
  line-height: 1.2;
}
.nav__link:hover {
  color: var(--head);
  background: var(--bg-subtle);
}
.nav__link.is-active {
  color: var(--red-600);
  background: rgba(217, 34, 40, 0.08);
}
.nav__cta {
  margin-left: 8px;
  padding: 9px 18px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 120;
}
.nav-toggle span {
  width: 24px;
  height: 2.2px;
  background: var(--head);
  border-radius: 4px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* ============================================================
   HERO BÖLÜMÜ (Executive Scrim & Frosted Stats)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-h) - 42px);
  min-height: calc(100svh - var(--navbar-h) - 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.62) 0%, rgba(5, 12, 24, 0.22) 42%, rgba(5, 12, 24, 0.18) 78%, rgba(5, 12, 24, 0.55) 100%),
    linear-gradient(90deg, rgba(5, 12, 24, 0.70) 0%, rgba(5, 12, 24, 0.28) 48%, rgba(5, 12, 24, 0.08) 100%);
}

.hero__shell {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(52px, 8vh, 100px) 0 clamp(44px, 6vh, 72px);
}

.hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 480px);
  gap: 40px 64px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.hero__badge-icon {
  display: grid;
  place-items: center;
  color: var(--red-400);
}
.hero__badge-icon svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-200);
  max-width: 580px;
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Hero Stats Card */
.hero__stats-card {
  background: rgba(14, 32, 56, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 20px 50px rgba(5, 12, 24, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.hero__stats-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), var(--red-400), transparent 80%);
}

.hero__stats-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__stats-tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-400);
}
.hero__stats-lead {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-300);
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}
.hstat {
  display: flex;
  flex-direction: column;
}
.hstat__num strong {
  font-family: var(--font-head);
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.hstat__num strong .counter {
  color: var(--white);
}
.hstat__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-300);
  line-height: 1.35;
}

.hero__stats-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-200);
}
.hero__stats-foot svg {
  width: 18px;
  height: 18px;
  color: var(--red-400);
  flex-shrink: 0;
}

/* ============================================================
   GÜVEN ÇUBUĞU (Trustbar)
   ============================================================ */
.trustbar {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trustbar__label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.trustbar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 36px;
}
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--head);
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
}
.trustbar__item svg {
  width: 17px;
  height: 17px;
  color: var(--red-600);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.trustbar__item:hover {
  background: var(--white);
  border-color: var(--red-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.trustbar__item:hover svg {
  transform: scale(1.15);
}

/* ============================================================
   GENEL BÖLÜM YAPISI & BAŞLIKLAR
   ============================================================ */
.section {
  padding: 116px 0;
  position: relative;
}
.section--soft {
  background: var(--bg-soft);
}
.section__head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 16px;
}
.section__tag::before, .section__tag::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--red-500);
  border-radius: 2px;
  opacity: 0.6;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--head);
}
.section__desc {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   HİZMETLERİMİZ (Services Showcase)
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 34, 40, 0.45);
  box-shadow: var(--shadow-lg);
}

.service-card__media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--navy-950);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-card__media img {
  transform: scale(1.06);
}
.service-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(5, 12, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.service-card__body {
  padding: 0 28px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--white);
  border: 1.5px solid rgba(217, 34, 40, 0.3);
  box-shadow: var(--shadow-sm);
  color: var(--red-600);
  margin: -28px 0 18px;
  position: relative;
  z-index: 3;
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--red-500);
  color: var(--white);
  border-color: var(--red-500);
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--head);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__list {
  margin-bottom: 26px;
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.service-card__list li {
  position: relative;
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding-left: 20px;
  line-height: 1.45;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--red-500);
  transform: rotate(45deg);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red-600);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: color 0.25s, gap 0.25s;
}
.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.service-card__link:hover {
  color: var(--red-500);
  gap: 12px;
}
.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   HAKKIMIZDA & DEĞERLER (About & Corporate Values)
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about__photo-wrapper {
  position: relative;
}
.about__photo {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.about__photo .photo-blend--about-img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.about__photo:hover .photo-blend--about-img {
  transform: scale(1.04);
}

.about__exp {
  position: absolute;
  right: -20px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--red-400) 0%, var(--red-500) 60%, var(--red-600) 100%);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-red-hover);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.about__exp strong {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.about__exp span {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.about__content .section__tag {
  margin-bottom: 14px;
}
.about__content .section__title {
  margin-bottom: 22px;
}
.about__content > p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about__features {
  display: grid;
  gap: 20px;
  margin: 32px 0 38px;
}
.about__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 34, 40, 0.1);
  border: 1.5px solid rgba(217, 34, 40, 0.35);
  color: var(--red-600);
  margin-top: 2px;
}
.about__check svg {
  width: 15px;
  height: 15px;
}
.about__features strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  margin-bottom: 3px;
  color: var(--head);
}
.about__features span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Kurumsal Değerler */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 88px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 34, 40, 0.45);
  box-shadow: var(--shadow-md);
}
.value-card:hover::before {
  transform: scaleX(1);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 34, 40, 0.08);
  border: 1px solid rgba(217, 34, 40, 0.25);
  color: var(--red-600);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.value-card:hover .value-card__icon {
  transform: scale(1.1);
  background: rgba(217, 34, 40, 0.16);
}
.value-card__icon svg {
  width: 28px;
  height: 28px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--head);
}
.value-card p {
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.6;
}

/* ============================================================
   FİLO BÖLÜMÜ (Fleet Showroom)
   ============================================================ */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 34, 40, 0.45);
  box-shadow: var(--shadow-lg);
}

.fleet-card__visual {
  position: relative;
  background: var(--navy-950);
}
.fleet-card__visual img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.fleet-card:hover .fleet-card__visual img {
  transform: scale(1.06);
}
.fleet-card__cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(5, 12, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.fleet-card__cap svg {
  color: var(--red-400);
}

.fleet-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.fleet-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}
.fleet-card__header h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--head);
  line-height: 1.35;
  margin: 0;
}
.fleet-card__badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(217, 34, 40, 0.08);
  color: var(--red-600);
  border: 1px solid rgba(217, 34, 40, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.fleet-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.fleet-card__tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-800);
  background: rgba(217, 34, 40, 0.06);
  border: 1px solid rgba(217, 34, 40, 0.15);
  padding: 3px 9px;
  border-radius: var(--radius-xs);
}

.fleet-card__list {
  margin-top: auto;
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.fleet-card__list li {
  position: relative;
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding-left: 18px;
  line-height: 1.45;
}
.fleet-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
}

/* ============================================================
   SÜREÇ (Process Timeline)
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #cbd5e1 0 10px, transparent 10px 20px);
}
.process-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.process-step__num {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red-500);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red-600);
  box-shadow: 0 0 0 8px var(--bg-soft), var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.process-step:hover .process-step__num {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--red-400) 0%, var(--red-500) 60%, var(--red-600) 100%);
  color: var(--white);
  box-shadow: 0 0 0 8px var(--bg-soft), var(--shadow-red);
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--head);
}
.process-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   TAAHHÜTLERİMİZ (Guarantees & Commitments)
   ============================================================ */
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 48px;
}
.guarantee-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
}
.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.guarantee-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 34, 40, 0.45);
  box-shadow: var(--shadow-md);
}
.guarantee-card:hover::before {
  transform: scaleX(1);
}

.guarantee-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(217, 34, 40, 0.08);
  border: 1px solid rgba(217, 34, 40, 0.25);
  color: var(--red-600);
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease-out);
}
.guarantee-card:hover .guarantee-card__icon {
  transform: scale(1.08) rotate(-4deg);
}
.guarantee-card__icon svg {
  width: 28px;
  height: 28px;
}
.guarantee-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--head);
}
.guarantee-card p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
}

.guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    radial-gradient(90% 140% at 90% 0%, rgba(217, 34, 40, 0.22), transparent 60%),
    var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  color: var(--ink-100);
  box-shadow: var(--shadow-xl);
}
.guarantee-banner__icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 34, 40, 0.15);
  border: 1.5px solid rgba(217, 34, 40, 0.45);
  color: var(--red-400);
}
.guarantee-banner__icon svg {
  width: 32px;
  height: 32px;
}
.guarantee-banner__text {
  flex: 1 1 340px;
}
.guarantee-banner__text h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.guarantee-banner__text p {
  font-size: 1rem;
  color: var(--ink-300);
  line-height: 1.6;
}

/* ============================================================
   SEKTÖREL ÇÖZÜMLER (Sectors & Industrial Verticals)
   ============================================================ */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sector-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-500), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 34, 40, 0.45);
  box-shadow: var(--shadow-md);
}
.sector-card:hover::before {
  transform: scaleX(1);
}
.sector-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(217, 34, 40, 0.08);
  border: 1px solid rgba(217, 34, 40, 0.22);
  color: var(--red-600);
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.sector-card:hover .sector-card__icon {
  transform: scale(1.08);
  background: rgba(217, 34, 40, 0.14);
}
.sector-card__icon svg {
  width: 26px;
  height: 26px;
}
.sector-card h3 {
  font-family: var(--font-head);
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--head);
  margin-bottom: 10px;
}
.sector-card p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
}

/* ============================================================
   AKREDİTE STANDARTLAR & DENETİM (Standards Banner)
   ============================================================ */
.standards-banner {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.standards-banner__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
}
.standards-banner__tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-400);
  margin-bottom: 8px;
}
.standards-banner__head h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.standards-banner__head p {
  font-size: 0.94rem;
  color: var(--ink-300);
  line-height: 1.55;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.standard-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.3s var(--ease-out);
}
.standard-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(217, 34, 40, 0.4);
  transform: translateY(-3px);
}
.standard-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(217, 34, 40, 0.15);
  border: 1px solid rgba(217, 34, 40, 0.35);
  color: var(--red-400);
}
.standard-item__icon svg {
  width: 22px;
  height: 22px;
}
.standard-item__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.standard-item__text span {
  font-size: 0.8rem;
  color: var(--ink-400);
  line-height: 1.35;
  display: block;
}

/* ============================================================
   OPERASYON SİSTEMİMİZ (Interactive Tabs)
   ============================================================ */
.opsys__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}
.opsys__tabs {
  display: grid;
  gap: 12px;
}
.opsys__tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--head);
  text-align: left;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.opsys__tab span {
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--red-600);
  transition: color 0.3s;
}
.opsys__tab:hover {
  transform: translateX(6px);
  border-color: rgba(217, 34, 40, 0.45);
}
.opsys__tab.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.opsys__tab.is-active span {
  color: var(--red-400);
}

.opsys__panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  min-height: 320px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
}
.opsys__panel.is-switching {
  opacity: 0;
  transform: translateY(10px);
}
.opsys__panel-num {
  position: absolute;
  top: 14px;
  right: 28px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--bg-subtle);
  pointer-events: none;
  user-select: none;
}
.opsys__panel h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--head);
  margin-bottom: 16px;
  position: relative;
}
.opsys__panel p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
}
.opsys__panel ul {
  display: grid;
  gap: 12px;
  position: relative;
}
.opsys__panel li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--head);
}
.opsys__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--red-500);
  transform: rotate(45deg);
}

.opsys__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.opsys__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 11px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--head);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s var(--ease-out);
}
.opsys__chip svg {
  width: 18px;
  height: 18px;
  color: var(--red-600);
  flex-shrink: 0;
}
.opsys__chip:hover {
  border-color: rgba(217, 34, 40, 0.45);
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   SIKÇA SORULAN SORULAR (FAQ Accordion)
   ============================================================ */
.faq__list {
  display: grid;
  gap: 16px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item[open] {
  border-color: rgba(217, 34, 40, 0.45);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--head);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary:hover {
  color: var(--red-600);
}
.faq__chev {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(217, 34, 40, 0.35);
  position: relative;
  transition: transform 0.35s var(--ease-out), background 0.3s, border-color 0.3s;
}
.faq__chev::before, .faq__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--red-600);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.faq__chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item[open] .faq__chev {
  background: var(--red-500);
  border-color: var(--red-500);
}
.faq__item[open] .faq__chev::before, .faq__item[open] .faq__chev::after {
  background: var(--white);
}
.faq__item[open] .faq__chev::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__answer {
  padding: 0 28px;
}
.faq__answer p {
  padding-bottom: 24px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ============================================================
   TEKLİF FORMU (Quote Engine - Conversion Hub)
   ============================================================ */
.quote {
  color: var(--ink-100);
  background:
    radial-gradient(70% 90% at 85% 20%, rgba(217, 34, 40, 0.16), transparent 65%),
    radial-gradient(60% 80% at 15% 90%, rgba(40, 78, 130, 0.25), transparent 70%),
    var(--navy-900);
  position: relative;
}
.quote .section__title {
  color: var(--white);
}
.quote__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}
.quote__info .section__tag {
  color: var(--red-400);
}
.quote__info .section__tag::before, .quote__info .section__tag::after {
  background: var(--red-400);
}
.quote__info > p {
  color: var(--ink-300);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

.quote__benefits {
  display: grid;
  gap: 22px;
  margin-bottom: 36px;
}
.quote__benefits li {
  display: flex;
  gap: 16px;
  align-items: center;
}
.quote__benefits svg {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(217, 34, 40, 0.12);
  border: 1.5px solid rgba(217, 34, 40, 0.3);
  color: var(--red-400);
}
.quote__benefits strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
}
.quote__benefits span {
  font-size: 0.88rem;
  color: var(--ink-400);
}

.quote__info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  backdrop-filter: blur(10px);
}
.quote__info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.quote__info-badge svg {
  width: 18px;
  height: 18px;
}
.quote__info-box p {
  font-size: 0.88rem;
  color: var(--ink-300);
  line-height: 1.55;
}

/* Form Kartı */
.quote__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.quote__form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-400), var(--red-600));
}

.quote__form-head {
  margin-bottom: 26px;
}
.quote__form-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--head);
  margin-bottom: 4px;
}
.quote__form-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--head);
  margin-bottom: 8px;
}
.form-group label em, .check em {
  color: var(--red-600);
  font-style: normal;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 1rem;
  color: var(--head);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23b8151b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form-group select:invalid {
  color: var(--ink-soft);
}
.form-group textarea {
  resize: vertical;
  min-height: 84px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
}
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-500);
  background: var(--white);
  box-shadow: 0 0 0 3.5px rgba(217, 34, 40, 0.16);
}

.form-error {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: 6px;
}
.form-group.is-invalid input:not([type="checkbox"]),
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: #ef4444;
  background: #fef2f2;
}
.form-group.is-invalid .form-error {
  display: block;
}

.form-group--conditional {
  display: none;
}
.form-group--conditional.is-shown {
  display: block;
  animation: popIn 0.4s var(--ease-out);
}

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

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.form-hint .link-inline {
  font-weight: 700;
}

.excel-block {
  margin-bottom: 18px;
}
.excel-drop {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  transition: all 0.25s var(--ease-out);
  overflow: hidden;
}
.excel-drop:hover,
.excel-drop.is-dragover,
.excel-drop.has-file {
  border-color: var(--red-500);
  background: #fff8f8;
  box-shadow: 0 0 0 4px rgba(217, 34, 40, 0.08);
}
.excel-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.excel-drop__ui {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 26px 20px;
  text-align: center;
  color: var(--ink-soft);
  pointer-events: none;
}
.excel-drop__ui svg {
  color: var(--red-500);
  margin-bottom: 4px;
}
.excel-drop__ui strong {
  color: var(--head);
  font-size: 0.95rem;
  font-weight: 700;
}
.excel-drop__ui span {
  font-size: 0.8rem;
}
.excel-drop__file {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 18px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
}

/* ============================================================
   HIZLI GÜZERGAH SEÇİCİ (Quick Route Chips)
   ============================================================ */
.quick-chips {
  margin-bottom: 20px;
  background: var(--bg-soft);
  border: 1px dashed rgba(10, 23, 40, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.quick-chips__label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--head);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quick-chips__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quick-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
}
.quick-chip:hover {
  background: var(--red-500);
  border-color: var(--red-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 34, 40, 0.25);
}

.routes-block {
  margin-bottom: 18px;
}
.routes-block__title {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--head);
  margin-bottom: 12px;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(var(--route-cols, 1), minmax(0, 1fr));
  gap: 12px;
}
.routes-grid[data-count="1"] { grid-template-columns: minmax(0, 1fr); }
.routes-grid[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.routes-grid[data-count="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.routes-grid[data-count="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.routes-grid[data-count="5"] { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.route-col {
  margin-bottom: 0;
}
.route-col[hidden] {
  display: none !important;
}
.route-col__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.route-col__km {
  position: relative;
  width: 100%;
}
.route-col__km input {
  padding-right: 34px;
  text-align: center;
}
.route-col__km-unit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  pointer-events: none;
}

.form-group--check {
  margin-top: 6px;
}
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.check input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.check__box {
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: var(--white);
  position: relative;
  transition: all 0.25s var(--ease-out);
}
.check__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2.4px 2.4px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s var(--ease-out);
}
.check input:checked + .check__box {
  background: var(--red-500);
  border-color: var(--red-500);
}
.check input:checked + .check__box::after {
  transform: rotate(45deg) scale(1);
}
.check input:focus-visible + .check__box {
  box-shadow: 0 0 0 4px rgba(217, 34, 40, 0.2);
}

.quote__security {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 18px;
  padding-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.quote__security span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.quote__security svg {
  width: 14px;
  height: 14px;
  color: var(--red-500);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #15803d;
  font-size: 0.94rem;
  font-weight: 600;
}
.form-success.is-visible {
  display: flex;
  animation: popIn 0.5s var(--ease-out);
}
.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.form-success--error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  color: #b91c1c;
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.link-inline {
  color: var(--red-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.link-inline:hover {
  color: var(--red-500);
}

/* ============================================================
   İLETİŞİM (Contact Information & Map)
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 34, 40, 0.45);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 34, 40, 0.08);
  border: 1px solid rgba(217, 34, 40, 0.25);
  color: var(--red-600);
  transition: transform 0.4s var(--ease-out);
}
.contact-card:hover .contact-card__icon {
  transform: scale(1.1);
}
.contact-card__icon svg {
  width: 26px;
  height: 26px;
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--head);
}
.contact-card p {
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.55;
}
.contact-card > span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-top: auto;
}

.contact__map {
  margin-top: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ============================================================
   CTA BANDI (Kurumsal Kapanış)
   ============================================================ */
.cta {
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(80% 130% at 20% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, var(--red-600) 0%, var(--red-500) 50%, #c41f24 100%);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER (Kurumsal Kapanış & İletişim)
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: var(--ink-300);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 52px;
}
.logo--footer {
  margin-bottom: 20px;
}
.footer__col--brand p {
  font-size: 0.92rem;
  color: var(--ink-400);
  max-width: 320px;
  margin-bottom: 26px;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.social {
  display: inline-block;
  line-height: 0;
  border-radius: 14px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.social:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px -6px rgba(217, 34, 40, 0.5);
}
.social__tile {
  fill: #0a182b;
  stroke: rgba(217, 34, 40, 0.4);
  stroke-width: 1.5;
  transition: fill 0.3s, stroke 0.3s;
}
.social__glyph {
  fill: var(--red-500);
  transition: fill 0.3s;
}
.social:hover .social__tile {
  fill: var(--red-500);
  stroke: var(--red-500);
}
.social:hover .social__glyph {
  fill: #050c18;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  color: var(--white);
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-400);
  margin-bottom: 12px;
  transition: color 0.25s, transform 0.25s;
}
.footer__col a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  color: var(--ink-300);
}
.footer__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__meta-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--red-400);
}
.footer__meta-item strong {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  color: var(--ink-400);
}
.footer__bottom div {
  display: flex;
  gap: 28px;
}
.footer__bottom a {
  transition: color 0.25s;
}
.footer__bottom a:hover {
  color: var(--white);
}

/* ============================================================
   YASAL SAYFALAR (KVKK / Gizlilik)
   ============================================================ */
.legal {
  padding: 80px 0 100px;
}
.legal .section__tag::before, .legal .section__tag::after {
  content: none;
}
.legal__updated {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 10px 0 40px;
}
.legal__body h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--red-600);
  margin: 36px 0 14px;
}
.legal__body p {
  color: var(--ink);
  font-size: 0.96rem;
  margin-bottom: 14px;
  line-height: 1.65;
}
.legal__body ul {
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}
.legal__body li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.96rem;
}
.legal__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red-500);
  transform: rotate(45deg);
}
.legal__body a {
  color: var(--red-600);
}

/* ============================================================
   YÜZEN BUTONLAR (Floating Action Buttons)
   ============================================================ */
.fab {
  position: fixed;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 14px 36px -6px rgba(5, 12, 24, 0.35);
  transition: transform 0.35s var(--ease-out), opacity 0.35s, visibility 0.35s;
}
.fab svg {
  width: 28px;
  height: 28px;
}
.fab--whatsapp {
  right: 28px;
  bottom: 28px;
  background: var(--green-500);
  color: #fff;
}
.fab--whatsapp:hover {
  transform: scale(1.1) rotate(6deg);
}
.fab--whatsapp::after {
  content: "WhatsApp ile Teklif İsteyin";
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.fab--whatsapp:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.fab--top {
  right: 28px;
  bottom: 98px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--red-600);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
}
.fab--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.fab--top:hover {
  background: var(--red-500);
  color: var(--white);
  border-color: var(--red-500);
}

/* ============================================================
   SCROLL REVEAL ANİMASYONLARI
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   DUYARLI TASARIM (Executive Ultra-Responsive Architecture)
   ============================================================ */

/* 1. Geniş Ekranlar & 2K/4K Monitörler (1440px+) */
@media (min-width: 1440px) {
  .container {
    width: min(1280px, calc(100% - 64px));
  }
  .hero__shell {
    width: min(1280px, calc(100% - 64px));
    padding: clamp(64px, 10vh, 120px) 0 clamp(54px, 8vh, 90px);
  }
  .hero__title {
    font-size: clamp(3rem, 3.8vw, 4.2rem);
  }
}

/* 2. Standart Laptop & Masaüstü (1141px - 1439px) */
@media (max-width: 1439px) and (min-width: 1141px) {
  .container {
    width: min(1180px, calc(100% - 40px));
  }
  .hero__shell {
    width: min(1180px, calc(100% - 40px));
  }
  .services__grid,
  .fleet__grid {
    gap: 20px;
  }
  .nav__link {
    font-size: 0.86rem;
    padding: 6px 10px;
  }
}

/* 3. Tablet Yatay & Küçük Laptop (901px - 1140px) */
@media (max-width: 1140px) {
  .topbar__right {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }
  .navbar .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    padding: 80px 24px 40px;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }
  .navbar .nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .navbar .nav--static {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    z-index: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    text-align: left;
    background: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    padding: 0;
  }
  .nav__link {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 10px 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), color 0.25s;
  }
  .nav.is-open .nav__link {
    opacity: 1;
    transform: none;
  }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.04s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.08s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.12s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.16s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: 0.20s; }
  .nav.is-open .nav__link:nth-child(6) { transition-delay: 0.24s; }
  .nav.is-open .nav__link:nth-child(7) { transition-delay: 0.28s; }
  .nav.is-open .nav__link:nth-child(8) { transition-delay: 0.32s; }
  .nav.is-open .nav__link:nth-child(9) { transition-delay: 0.36s; }
  .nav__cta {
    margin: 12px 0 0;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s var(--ease-out) 0.4s, transform 0.35s var(--ease-out) 0.4s;
  }
  .nav.is-open .nav__cta {
    opacity: 1;
    transform: none;
  }

  .hero__shell {
    width: min(1000px, calc(100% - 40px));
    padding: clamp(40px, 6vh, 70px) 0 40px;
  }
  .hero__row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero__main {
    max-width: 680px;
  }
  .hero__side {
    max-width: 560px;
  }

  .services__grid,
  .fleet__grid,
  .sectors__grid,
  .guarantees__grid,
  .standards-grid,
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__visual {
    max-width: 560px;
  }
  .values {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .process__steps::before {
    display: none;
  }

  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 30px;
    justify-content: center;
  }
  .guarantee-banner__text p {
    margin-inline: auto;
  }

  .opsys__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .opsys__tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .opsys__tab {
    flex: 0 0 auto;
    padding: 13px 20px;
    font-size: 0.92rem;
    scroll-snap-align: start;
    white-space: nowrap;
  }
  .opsys__panel {
    min-height: auto;
    padding: 36px 32px;
  }

  .quote__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .footer__meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 4. Dikey Tablet & Geniş Telefon (641px - 900px) */
@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }
  .values {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .standards-banner {
    padding: 36px 28px;
  }
}

/* 5. Standart Akıllı Telefonlar (481px - 640px) */
@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }
  .container {
    width: calc(100% - 32px);
  }

  /* Topbar kompakt görünüm */
  .topbar {
    font-size: 0.76rem;
    padding: 4px 0;
  }
  .topbar__inner {
    justify-content: center;
  }
  .topbar__left {
    gap: 14px;
    justify-content: center;
  }

  /* Hero Mobilde Jilet Gibi */
  .hero {
    min-height: auto;
    padding: 20px 0 36px;
  }
  .hero__media img {
    object-position: center 60%;
  }
  .hero__shell {
    width: calc(100% - 28px);
    padding: 24px 0 32px;
  }
  .hero__badge {
    padding: 6px 14px;
    font-size: 0.76rem;
    margin-bottom: 16px;
  }
  .hero__title {
    font-size: clamp(1.9rem, 7.8vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hero__subtitle {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero__actions .btn {
    width: 100%;
    padding: 14px 20px;
  }

  /* Hero İstatistik Kartı */
  .hero__stats-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }
  .hero__stats-head {
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
  .hero__stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
  }
  .hstat__num {
    font-size: 1.9rem;
    margin-bottom: 2px;
  }
  .hstat__label {
    font-size: 0.74rem;
  }
  .hero__stats-foot {
    margin-top: 18px;
    padding-top: 12px;
    font-size: 0.78rem;
  }

  /* Trustbar Mobilde */
  .trustbar {
    padding: 34px 0;
  }
  .trustbar__label {
    font-size: 0.72rem;
    margin-bottom: 20px;
  }
  .trustbar__logos {
    gap: 10px;
  }
  .trustbar__item {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  /* Kart Izgaraları Mobilde Tek Sütun */
  .services__grid,
  .fleet__grid,
  .sectors__grid,
  .guarantees__grid,
  .standards-grid,
  .process__steps,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card__body,
  .fleet-card__body,
  .sector-card,
  .guarantee-card,
  .value-card {
    padding: 26px 20px;
  }

  .about__photo .photo-blend--about-img {
    height: 300px;
  }
  .about__exp {
    right: 10px;
    bottom: -18px;
    padding: 14px 18px;
  }
  .about__exp strong {
    font-size: 2rem;
  }

  .standards-banner {
    padding: 30px 18px;
    border-radius: var(--radius-lg);
  }
  .standards-banner__head h3 {
    font-size: 1.25rem;
  }

  .opsys__panel {
    padding: 28px 18px;
    border-radius: var(--radius-lg);
  }
  .opsys__panel-num {
    font-size: 3.5rem;
    top: 6px;
    right: 14px;
  }
  .opsys__chips {
    gap: 8px;
  }
  .opsys__chip {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* Form & iOS Otomatik Zoom Koruması (font-size >= 16px) */
  .quote__form {
    padding: 30px 20px;
    border-radius: var(--radius-lg);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group input:not([type="checkbox"]),
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* iOS Safari zoom koruması */
    padding: 13px 14px;
    border-radius: 10px;
  }
  .quick-chips {
    padding: 12px 14px;
  }
  .quick-chips__list {
    gap: 6px;
  }
  .quick-chip {
    padding: 6px 11px;
    font-size: 0.76rem;
  }
  .routes-grid,
  .routes-grid[data-count="1"],
  .routes-grid[data-count="2"],
  .routes-grid[data-count="3"],
  .routes-grid[data-count="4"],
  .routes-grid[data-count="5"] {
    grid-template-columns: 1fr;
  }
  .route-col__fields {
    flex-direction: row;
    align-items: stretch;
  }
  .route-col__fields > input[type="text"] {
    flex: 1 1 auto;
    min-width: 0;
  }
  .route-col__km {
    flex: 0 0 84px;
    width: auto;
  }

  .quote__security {
    gap: 12px 18px;
    font-size: 0.74rem;
  }

  .contact__map iframe {
    height: 300px;
  }

  .cta {
    padding: 64px 0;
  }
  .cta__inner {
    text-align: center;
    justify-content: center;
  }
  .cta__action {
    width: 100%;
  }
  .cta__action .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 0 30px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Yüzen Butonlar - Safe Area Inset Korumalı */
  .fab--whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .fab--top {
    right: 16px;
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* 6. Küçük & Kompakt Telefonlar (iPhone SE, 320px - 480px) */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  .topbar__left .topbar__item:nth-child(2) {
    display: none;
  }
  .hero__shell {
    width: calc(100% - 20px);
    padding: 16px 0 24px;
  }
  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
  }
  .hero__badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  .section__head {
    margin-bottom: 36px;
  }
  .section__title {
    font-size: 1.65rem;
  }
  .quote__form {
    padding: 24px 16px;
  }
  .fab {
    width: 48px;
    height: 48px;
  }
  .fab svg {
    width: 24px;
    height: 24px;
  }
  .fab--whatsapp::after {
    display: none;
  }
}

/* 7. Dokunmatik Cihazlar İçin Haptik & Basış Geri Bildirimi */
@media (hover: none) and (pointer: coarse) {
  .btn:active,
  .quick-chip:active,
  .opsys__tab:active,
  .contact-card:active,
  .trustbar__item:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }
  .nav__link:active {
    background: rgba(217, 34, 40, 0.12);
  }
}

/* 8. Yatay Telefon Modu (Landscape Orientation) */
@media (max-height: 520px) and (orientation: landscape) {
  .navbar .nav {
    padding: 64px 20px 24px;
    justify-content: flex-start;
  }
  .nav__link {
    font-size: 1rem;
    padding: 6px 16px;
  }
  .nav__cta {
    margin-top: 8px;
    padding: 8px 18px;
  }
  .hero {
    min-height: auto;
    padding: 20px 0;
  }
}
