/* ==========================================================================
   ALK Ekspres Lojistik — ana stil dosyası (ana sayfa, hizmet bölgeleri, yük teklifi)
   Renkler ve yazı tipleri marka künyesine göredir. Altın geniş alanda düz
   renk olarak değil; çizgi, ikon, buton ve sayı gibi ince aksanlarda kullanılır.
   Sıra: değişkenler · temel · bileşenler · üst bar · ana sayfa · bölgeler sayfası · yük teklifi · alt bilgi
   ========================================================================== */

:root {
  /* Marka paleti (künye) */
  --gold: #C9A227;          /* Altın — vurgu, CTA, başlık aksanı */
  --gold-light: #E8C766;    /* Açık altın — hover ve vurgulu durum */
  --anthracite: #2B2B2B;    /* Antrasit — metin, koyu bölümler */
  --silver: #A8AAAD;        /* Gümüş — ikincil metin (koyu zeminde), çizgiler */
  --light: #F4F4F2;         /* Açık gri — bölüm arka planı */
  --white: #FFFFFF;

  /* Paletten türetilmiş tonlar: katman ayrımı ve açık zeminde okunabilirlik (WCAG AA) */
  --anthracite-deep: #222222;               /* antrasitin koyusu — alt bilgi, şerit, görsel zemini */
  --ink-soft: #555555;                      /* açık zeminde gövde metni */
  --ink-muted: #6B6B6B;                     /* açık zeminde ikincil metin */
  --text-on-dark: rgba(244, 244, 242, .86); /* koyu zeminde gövde metni */
  --line-light: rgba(168, 170, 173, .45);   /* gümüş çizgi, açık zemin */
  --line-dark: rgba(168, 170, 173, .22);    /* gümüş çizgi, koyu zemin */
  --line-gold: rgba(201, 162, 39, .45);     /* ince altın çizgi */
  --field-border: #8A8C8F;                  /* form alanı kenarı: gümüşün koyusu, beyazda 3:1 üstü */
  --error: #B3261E;                         /* form hata metni ve kenarı */
  --error-bg: #FBEFEE;

  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --gutter: 20px;
  --header-h: 65px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--anthracite);
  font: 400 16px/1.5 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p, figure, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
address { font-style: normal; }

::selection { background: var(--gold); color: var(--anthracite); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.services :focus-visible,
.about :focus-visible,
.region :focus-visible,
.quote-card :focus-visible,
.quote-steps :focus-visible { outline-color: var(--anthracite); }

.icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon--wa { stroke-width: 1.6; }

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

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

.skip-link {
  position: absolute;
  left: 12px; top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--anthracite);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.accent { color: var(--gold); }

/* Butonlar --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 2px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn--gold { background: var(--gold); color: var(--anthracite); box-shadow: 0 6px 20px rgba(201, 162, 39, .22); }
.btn--gold:hover { background: var(--gold-light); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn--md { min-height: 50px; padding: 0 22px; font-size: 15px; }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 16px; flex: 1 1 200px; max-width: 320px; }
.btn--gold.btn--lg:hover { transform: translateY(-1px); }
.btn--ghost {
  border: 1px solid rgba(201, 162, 39, .7);
  background: rgba(43, 43, 43, .35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-weight: 500;
}
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--anthracite);
}
.text-link__rule { width: 28px; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.text-link:hover .text-link__rule { width: 44px; }

/* Başlık etiketi (eyebrow): metin antrasit, çizgi altın */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--anthracite);
}
.eyebrow::before { content: ""; flex: none; width: 36px; height: 1px; background: var(--gold); }
.eyebrow--on-dark { color: var(--gold); }

/* Üst bar ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(43, 43, 43, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-gold);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-block: 10px;
}

/* Künye: logo 160px altında kullanılmaz; üst barda yalnızca tek satır yazı markası */
.brand {
  display: flex;
  align-items: center;
  gap: .26em;
  min-height: 44px;
  font: 700 26px/1 var(--font-display);
  letter-spacing: .04em;
  white-space: nowrap;
}
.brand__name { color: var(--gold); }
.brand__sub { color: var(--silver); }
@media (max-width: 479.98px) {
  .brand__sub { display: none; } /* dar telefonda "Teklif Al" butonuna yer kalsın */
}
@media (min-width: 900px) {
  .brand { font-size: clamp(26px, 2.9vw, 34px); }
}

.nav__list { display: flex; gap: 28px; font-size: 14px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.nav__list a { display: block; padding-block: 10px; color: var(--white); transition: color .2s; white-space: nowrap; }
.nav__list a:hover { color: var(--gold-light); }
.nav__list a.is-current,
.nav__list a[aria-current="page"] { color: var(--gold); }

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle__bars { position: relative; display: block; width: 20px; height: 14px; }
.menu-toggle__bars span { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; transition: transform .25s var(--ease), opacity .2s; }
.menu-toggle__bars span:nth-child(1) { top: 0; }
.menu-toggle__bars span:nth-child(2) { top: 6px; }
.menu-toggle__bars span:nth-child(3) { top: 12px; }
.site-header.is-open .menu-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.site-header.is-open .menu-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 899.98px) {
  .nav { display: none; }
  .js .menu-toggle { display: inline-flex; }
  .js .site-header.is-open .nav {
    display: block;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: rgba(43, 43, 43, .98);
    border-bottom: 1px solid var(--line-gold);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .6);
  }
  .js .nav__list { flex-direction: column; gap: 0; padding: 4px var(--gutter) 14px; }
  .js .nav__list a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid var(--line-dark);
    font: 700 22px/1 var(--font-display);
    letter-spacing: .06em;
  }
  .js .nav__list li:last-child a { border-bottom: 0; }
}

/* Üst bardaki ana çağrı: yük teklifi */
.btn--quote { font-size: 15px; }
@media (min-width: 900px) {
  .btn--quote { min-height: 46px; padding: 0 22px; }
}
@media (max-width: 359.98px) {
  .header__inner { gap: 10px; }
  .brand { font-size: 23px; }
  .btn--quote { padding: 0 12px; }
  .btn--quote .icon { display: none; }
}

/* Bölüm ortakları -------------------------------------------------------- */
.section { position: relative; overflow: hidden; }
.section__inner { position: relative; display: flex; flex-direction: column; gap: 36px; padding-block: 72px; }
.section__head { display: flex; flex-direction: column; gap: 10px; }
.section__title {
  max-width: 16ch;
  font: 700 clamp(36px, 6vw, 64px)/1 var(--font-display);
  text-transform: uppercase;
  text-wrap: balance;
}
.section__lead { max-width: 60ch; margin-top: 4px; font-size: 16px; line-height: 1.55; color: var(--text-on-dark); }

.bignum {
  position: absolute;
  top: 20px;
  font: 800 clamp(160px, 30vw, 360px)/1 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 39, .22);
  pointer-events: none;
  user-select: none;
}

.grid-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* Ana sayfa: hero -------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--anthracite);
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 97% center; } /* mobilde tırın önü değil dorse logosu görünsün */
.hero__shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(43, 43, 43, .35) 0%, rgba(43, 43, 43, 0) 30%, rgba(43, 43, 43, .92) 92%),
    linear-gradient(90deg, rgba(43, 43, 43, .97) 0%, rgba(43, 43, 43, .82) 38%, rgba(43, 43, 43, .25) 70%, rgba(43, 43, 43, .5) 100%);
}
.hero__lines {
  position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(90deg, rgba(201, 162, 39, .07) 0 1px, transparent 1px 25%);
  opacity: .6;
  pointer-events: none;
}
.hero__est {
  display: none;
  position: absolute; right: 20px; top: 120px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  /* Üst boşluk ve başlık ekran yüksekliğine de bağlı: kısa ekranlarda arama butonu ilk ekranda kalsın */
  padding-block: clamp(88px, min(20vw, 11vh), 170px) 48px;
}
.hero__title {
  max-width: 12ch;
  /* Satır aralığı 1: büyük harf İ/Ü/Ö noktaları üst satıra değmesin */
  font: 800 clamp(52px, min(11vw, 12.5vh), 124px)/1 var(--font-display);
  letter-spacing: .005em;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}
@supports (-webkit-text-stroke: 1px black) {
  .hero__title .outline { color: transparent; -webkit-text-stroke: 1.5px var(--gold); }
}
.hero__lead {
  max-width: 50ch;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--light);
  text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.phone-line { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); }
.phone-line a { display: inline-flex; align-items: center; min-height: 44px; font: 700 22px/1 var(--font-display); letter-spacing: .03em; color: var(--white); border-bottom: 1px solid transparent; transition: color .2s; }
.phone-line a:hover { color: var(--gold-light); }
.hero .phone-line { margin-top: -10px; }
.cta-band .phone-line { margin-top: 10px; }

.road-line { width: 100%; max-width: 400px; height: auto; overflow: visible; }
.road-line__base { stroke: var(--line-gold); stroke-width: 1; }
.road-line__dash { stroke: var(--gold); stroke-width: 2; stroke-dasharray: 14 14; animation: road-dash 1.4s linear infinite; }
.road-line__dot { fill: var(--gold); }
.road-line__pulse { fill: none; stroke: var(--gold); transform-box: fill-box; transform-origin: center; animation: pulse 1.8s ease-out infinite; }

.hero__stats {
  position: relative;
  border-top: 1px solid var(--line-gold);
  background: rgba(43, 43, 43, .8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding-block: 22px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat + .stat { padding-left: 16px; border-left: 1px solid var(--line-gold); }
.stat__num { font: 800 clamp(36px, 7vw, 64px)/1 var(--font-display); color: var(--gold); }
.stat__num span { font-size: .5em; color: var(--silver); }
.stat__label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); }

@media (min-width: 900px) {
  .hero__media {
    left: auto;
    width: 72%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 35%);
    mask-image: linear-gradient(90deg, transparent 0, #000 35%);
  }
  .hero__media img { object-position: right center; } /* tır ve dorse logosu görünsün */
  .hero__est { display: block; }
}
@media (min-width: 900px) and (max-height: 820px) {
  .hero__content { gap: 18px; padding-top: 72px; }
  .hero__title { font-size: clamp(52px, min(11vw, 11.5vh), 124px); }
}

/* Kayan il şeridi */
.marquee {
  overflow: hidden;
  padding-block: 12px;
  background: var(--anthracite-deep);
  border-block: 1px solid var(--line-gold);
}
.marquee__track { display: flex; width: max-content; animation: marquee 68s linear infinite; }
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  font: 700 20px/1.2 var(--font-display);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.marquee__track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--silver); }

/* Ana sayfa: hizmetler --------------------------------------------------- */
.services { background: var(--light); }
.services .bignum { right: -40px; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 24px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(43, 43, 43, .3); }
.service-card__no {
  position: absolute; right: 14px; top: 6px;
  font: 800 96px/1 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: .4;
}
.service-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.service-card__icon svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card__title { position: relative; font: 700 30px/1 var(--font-display); text-transform: uppercase; }
.service-card__text { position: relative; font-size: 15px; line-height: 1.6; color: var(--ink-soft); text-wrap: pretty; }
.service-card .text-link { align-self: flex-start; margin-top: auto; }

/* Ana sayfa: sigorta güvencesi ------------------------------------------- */
.insurance { background: var(--white); }
.insurance__inner { display: grid; align-items: center; gap: 22px 56px; padding-block: 64px; }
.insurance__head { display: flex; align-items: center; gap: 18px; }
.insurance__icon {
  display: flex; flex: none; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.insurance__icon svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.insurance .section__title { max-width: none; }
.insurance__text { max-width: 62ch; font-size: 17px; line-height: 1.6; color: var(--ink-soft); text-wrap: pretty; }
@media (min-width: 900px) {
  .insurance__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); padding-block: 80px; }
  .insurance__text { padding-left: 28px; border-left: 1px solid var(--gold); }
}

/* Ana sayfa: hizmet bölgeleri özeti --------------------------------------- */
.regions { background: var(--anthracite); color: var(--white); }
.regions .bignum { left: -30px; top: 10px; }
.regions .section__inner { gap: 32px; }

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.city-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 14px 16px 16px;
  background: var(--anthracite);
  color: var(--white);
  transition: box-shadow .25s, color .25s;
}
.city-link__top { display: flex; align-items: center; justify-content: space-between; }
.city-link__idx { font-size: 11px; font-weight: 500; letter-spacing: .2em; color: var(--silver); }
.city-link__arrow { color: var(--gold); transition: transform .3s var(--ease); }
.city-link__name { font: 700 clamp(22px, 3vw, 28px)/1 var(--font-display); letter-spacing: .02em; text-transform: uppercase; transition: color .25s; }
.city-link__meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--silver); }
.city-link:hover,
.city-link.is-active { box-shadow: inset 3px 0 0 var(--gold); }
.city-link:hover .city-link__name,
.city-link.is-active .city-link__name { color: var(--gold); }
.city-link:hover .city-link__arrow { transform: translateX(4px); }
.regions__actions { display: flex; justify-content: center; }
.regions__actions .btn { max-width: none; flex: 0 1 auto; }

@media (min-width: 760px) {
  .city-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Harita (ortak) */
.map { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.map__frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  border: 1px solid var(--line-gold);
  background: var(--anthracite-deep);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
}
.map__frame > img { width: 100%; height: auto; }
.map__overlay { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.map__route { fill: none; stroke: var(--gold-light); stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 0; pointer-events: none; }
.map__route.is-drawing { animation: route-draw .9s var(--ease) both; }
.map__flow { fill: none; stroke: var(--white); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: .012 .028; opacity: .7; pointer-events: none; animation: route-flow 1.6s linear infinite; }
.map__hub { fill: var(--gold); stroke: var(--anthracite-deep); stroke-width: 2; pointer-events: none; }
.map__active { opacity: 0; pointer-events: none; }
.map__active.is-visible { opacity: 1; transition: transform .6s var(--ease), opacity .3s; }
.map__active-dot { fill: var(--white); stroke: var(--gold); stroke-width: 3; }
.map__active-pulse { fill: none; stroke: var(--gold-light); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: pulse-lg 1.8s ease-out infinite; }
.map__pin { fill: rgba(201, 162, 39, 0); cursor: pointer; transition: fill .2s; }
.map__pin:hover { fill: rgba(201, 162, 39, .25); }

.corner { position: absolute; width: 18px; height: 18px; border: 0 solid var(--gold); pointer-events: none; }
.corner--tl { left: -1px; top: -1px; border-left-width: 2px; border-top-width: 2px; }
.corner--tr { right: -1px; top: -1px; border-right-width: 2px; border-top-width: 2px; }
.corner--bl { left: -1px; bottom: -1px; border-left-width: 2px; border-bottom-width: 2px; }
.corner--br { right: -1px; bottom: -1px; border-right-width: 2px; border-bottom-width: 2px; }
.map__caption { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--silver); text-align: center; }

/* Ana sayfa: hakkımızda -------------------------------------------------- */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  align-items: center;
  gap: 40px;
  padding-block: 72px;
}
.about__media { position: relative; padding: 14px 14px 0 0; }
.about__media::before {
  content: "";
  position: absolute;
  left: 14px; top: 0; right: 0; bottom: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.about__photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--anthracite-deep); }
.about__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43, 43, 43, 0) 50%, rgba(43, 43, 43, .88) 100%); }
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 8% 60%; }
.about__year { position: absolute; left: 20px; bottom: 20px; z-index: 1; display: flex; flex-direction: column; gap: 2px; color: var(--white); }
.about__year strong { font: 800 64px/.9 var(--font-display); color: var(--gold); }
.about__year span { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--light); }

.about__text { display: flex; flex-direction: column; gap: 18px; }
.about__text .section__title { max-width: none; }
.about__lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); text-wrap: pretty; }
.facts { margin-top: 6px; border-top: 1px solid var(--anthracite); }
.facts div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-light); font-size: 15px; }
.facts dt { color: var(--ink-muted); }
.facts dd { font-weight: 600; text-align: right; }
.facts a { border-bottom: 1px solid var(--gold); }

/* Ana sayfa: iletişim ---------------------------------------------------- */
.contact { background: var(--anthracite); color: var(--white); }
.contact__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 60%; opacity: .22; }
.contact__shade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--anthracite) 0%, rgba(43, 43, 43, .9) 50%, rgba(43, 43, 43, .55) 100%); }
.contact .section__inner { gap: 32px; padding-block: 80px 64px; }
.contact .section__title { max-width: 14ch; }

.phones { display: flex; flex-direction: column; gap: 22px; }
.phones__group { display: flex; flex-direction: column; gap: 4px; }
.phones__label { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--silver); }
.phones__list { display: flex; flex-wrap: wrap; column-gap: 28px; }
.phones__link { display: inline-flex; align-items: center; min-height: 44px; font: 700 clamp(22px, 2.6vw, 30px)/1 var(--font-display); letter-spacing: .02em; color: var(--white); white-space: nowrap; transition: color .2s; }
.phones__list--main { flex-direction: column; }
.phones__list--main .phones__link { min-height: 52px; font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; color: var(--gold); }
.phones__link:hover,
.phones__list--main .phones__link:hover { color: var(--gold-light); }
@media (min-width: 900px) {
  .phones__list--main { flex-direction: row; }
  .phones__list--main li + li { padding-left: 28px; border-left: 1px solid var(--line-gold); }
}
.contact__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.contact__actions .btn { flex: 0 1 auto; }
@media (max-width: 559.98px) {
  .contact__actions .btn { flex: 1 1 100%; max-width: none; }
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}
.contact__card { display: flex; flex-direction: column; gap: 8px; padding: 22px 20px; background: var(--anthracite); transition: background-color .2s; }
a.contact__card:hover { background: var(--anthracite-deep); }
.contact__card-label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.contact__email { font: 600 24px/1.1 var(--font-display); color: var(--white); overflow-wrap: anywhere; }
.contact__card address { font-size: 15px; line-height: 1.5; color: var(--light); }
.contact__maplink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__maplink:hover { color: var(--gold-light); }

/* Sosyal medya bağlantıları (iletişim kartı, iletişim bandı, alt bilgi) */
.social { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.social__link { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-size: 15px; font-weight: 600; color: var(--white); transition: color .2s; }
.social__link .icon { color: var(--gold); stroke-width: 1.8; }
.social__link:hover { color: var(--gold-light); }
.cta-band .social { margin-top: 14px; }
.site-footer .social { margin-top: 10px; }
.site-footer .social__link { font-size: 14px; color: var(--light); }

/* Hizmet bölgeleri sayfası: üst bölüm ------------------------------------ */
.page-hero { position: relative; overflow: hidden; background: var(--anthracite); color: var(--white); }
.page-hero__inner { position: relative; display: flex; flex-direction: column; gap: 18px; padding-block: 32px 56px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--silver); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--gold); }
.breadcrumb a { display: inline-block; padding-block: 10px; color: var(--light); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero__title {
  max-width: 20ch;
  margin-top: 4px;
  font: 800 clamp(40px, 7vw, 84px)/1 var(--font-display);
  text-transform: uppercase;
  text-wrap: balance;
}
.page-hero__lead { max-width: 62ch; font-size: clamp(16px, 2vw, 18px); line-height: 1.55; color: var(--text-on-dark); text-wrap: pretty; }
.page-hero .map { margin-top: 18px; }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 6px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: border-color .2s, color .2s;
}
.chip__count { font-size: 12px; font-weight: 500; color: var(--silver); }
.chip:hover,
.chip.is-active { border-color: var(--gold); color: var(--gold); }

/* Hizmet bölgeleri sayfası: il bölümleri ---------------------------------- */
.region { background: var(--white); }
.region--alt { background: var(--light); }
.region__inner { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; gap: 28px; padding-block: 56px; }

.region__media { position: relative; padding: 14px 14px 0 0; }
.region__media::before {
  content: "";
  position: absolute;
  left: 14px; top: 0; right: 0; bottom: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.region__photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--anthracite-deep); }
.region__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43, 43, 43, 0) 55%, rgba(43, 43, 43, .88) 100%); }
.region__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* 16:9 görsel 4:3 çerçeveye kırpılırken logolu araç kadrajda kalsın (telefonlarda ayrı kırpılmış görsel kullanılıyor) */
.region__photo--left img { object-position: 8% 50%; }
.region__photo--right img { object-position: 96% 50%; }
.region__route {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  font: 600 15px/1 var(--font-display);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light);
}
.region__dash { flex: 1; max-width: 120px; border-top: 1px dashed var(--gold); }

.region__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--anthracite); }
.region__meta::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.region__idx { color: var(--ink-muted); }
.region__title { margin-top: 10px; font: 800 clamp(48px, 7vw, 80px)/.9 var(--font-display); text-transform: uppercase; }
.region__lead { margin-top: 12px; font-size: 17px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.region__subtitle {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--anthracite);
  font: 700 15px/1 var(--font-display);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.region__subtitle span { color: var(--ink-muted); }
.districts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; margin-top: 4px; }
.districts li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line-light); font-size: 15px; }
.districts li::before { content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.region__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 24px; }

@media (min-width: 560px) {
  .districts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .region__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 56px; padding-block: 80px; }
  .region--alt .region__media { order: 2; }
}

/* Hizmet bölgeleri sayfası: iletişim bandı */
.cta-band { position: relative; overflow: hidden; background: var(--anthracite); color: var(--white); }
.cta-band__inner { position: relative; display: grid; align-items: end; gap: 28px; padding-block: 64px; }
.cta-band__title { max-width: 16ch; margin-top: 10px; font: 700 clamp(36px, 5vw, 56px)/1 var(--font-display); text-transform: uppercase; }
.cta-band__text { max-width: 48ch; margin-top: 14px; line-height: 1.55; color: var(--text-on-dark); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) {
  .cta-band__inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
  .cta-band__actions { justify-content: flex-end; }
}

/* Yük teklifi sayfası: üst bölüm ----------------------------------------- */
.quote-hero { isolation: isolate; }
.quote-hero__media { position: absolute; inset: 0; z-index: -2; opacity: .35; }
.quote-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 75% 60%; }
.quote-hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--anthracite) 0%, rgba(43, 43, 43, .9) 55%, rgba(43, 43, 43, .55) 100%);
}
.quote-hero__inner { padding-bottom: 64px; }
.quote-hero .page-hero__title { max-width: 24ch; font-size: clamp(36px, 5.2vw, 68px); }
.quote-hero .road-line { max-width: 320px; }

@media (min-width: 900px) {
  .quote-hero__media {
    left: auto;
    width: 60%;
    opacity: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 45%);
    mask-image: linear-gradient(90deg, transparent 0, #000 45%);
  }
  .quote-hero__shade {
    background:
      linear-gradient(180deg, rgba(43, 43, 43, .2) 0%, rgba(43, 43, 43, .6) 100%),
      linear-gradient(90deg, var(--anthracite) 0%, rgba(43, 43, 43, .92) 45%, rgba(43, 43, 43, .35) 100%);
  }
  .quote-hero__inner { padding-bottom: 112px; }
}

/* Yük teklifi sayfası: form ---------------------------------------------- */
.quote { position: relative; background: var(--light); }
.quote__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; padding-block: 0 64px; }

.quote-card {
  position: relative;
  margin-top: -32px;
  padding: 28px 20px 32px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 30px 60px -40px rgba(43, 43, 43, .45);
}

.quote-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.quote-form__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; margin-bottom: 28px; }
.quote-form__title { font: 700 clamp(30px, 4vw, 40px)/1 var(--font-display); text-transform: uppercase; }
.quote-form__req { font-size: 13px; color: var(--ink-muted); }

.form-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step + .form-step { margin-top: 36px; }
.form-step__legend {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 0 0;
  border-top: 1px solid var(--anthracite);
  font: 700 21px/1 var(--font-display);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-step__legend + * { clear: both; }
.form-step__idx { display: inline-flex; align-items: center; gap: 10px; font: 600 12px/1 var(--font-body); letter-spacing: .2em; color: var(--ink-muted); }
.form-step__idx::after { content: ""; width: 24px; height: 1px; background: var(--gold); }

.form-step__fields { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px 20px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field__label { font-size: 15px; font-weight: 600; line-height: 1.35; color: var(--anthracite); }
.field__req { margin-left: 3px; color: var(--anthracite); }
.field__hint { font-size: 13px; line-height: 1.45; color: var(--ink-muted); }

.field__control {
  display: block;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--field-border);
  border-radius: 2px;
  background: var(--white);
  color: var(--anthracite);
  font: 400 16px/1.4 var(--font-body); /* 16px: iOS odaklanınca yakınlaştırmasın */
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.field__control:hover { border-color: var(--anthracite); }
.field__control:focus,
.field__control:focus-visible {
  outline: none;
  border-color: var(--anthracite);
  box-shadow: 0 0 0 1px var(--anthracite), 0 0 0 5px rgba(201, 162, 39, .35);
}
textarea.field__control { min-height: 132px; resize: vertical; }
.field__control[type="date"] { line-height: 26px; }
.field__control::-webkit-date-and-time-value { min-height: 26px; text-align: left; }
.field__control::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .75; }

.field.is-invalid .field__control { border-color: var(--error); box-shadow: 0 0 0 1px var(--error); }
.field.is-invalid .field__control:focus { box-shadow: 0 0 0 1px var(--error), 0 0 0 5px rgba(179, 38, 30, .18); }
.field__error { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--error); }
.field__error::before {
  content: "!";
  flex: none;
  display: grid;
  place-items: center;
  width: 17px; height: 17px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--error);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
}
.field__error[hidden] { display: none; }

.quote-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.quote-form__btn { flex: 1 1 100%; max-width: none; text-transform: uppercase; letter-spacing: .06em; }
.quote-form__btn[aria-disabled="true"] { cursor: progress; opacity: .75; }
.quote-form__note { flex: 1 1 280px; max-width: 52ch; font-size: 15px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }

.quote-form__status { margin-top: 14px; font-size: 14px; font-weight: 600; line-height: 1.45; color: var(--error); }
.quote-form__status:empty { display: none; }

.quote-alert {
  color: var(--anthracite);
  font-weight: 400;
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--error);
  background: var(--error-bg);
  font-size: 15px;
  line-height: 1.55;
}
.quote-alert strong { display: block; margin-bottom: 4px; color: var(--error); }
.quote-alert a { font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

.quote-success { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding-block: 8px 4px; }
.quote-success[hidden] { display: none; }
.quote-success[hidden]:target { display: flex; } /* JS kapalıyken sunucu #talep-alindi adresine yönlendirir */
.quote-card:has(.quote-success:target) .quote-form { display: none; }
.quote-success__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border: 1px solid var(--gold); color: var(--gold); }
.quote-success__title { margin-top: 6px; font: 700 clamp(34px, 5vw, 48px)/1 var(--font-display); text-transform: uppercase; }
.quote-success__title:focus { outline: none; }
.quote-success__text { max-width: 56ch; font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.quote-success__text a { font-weight: 600; color: var(--anthracite); white-space: nowrap; border-bottom: 1px solid var(--gold); }
.quote-success__again { padding: 0; border: 0; background: none; cursor: pointer; }

/* Yan sütun: süreç ve telefon */
.quote-aside { display: flex; flex-direction: column; gap: 20px; }
.quote-steps { padding: 26px 20px 10px; background: var(--white); }
.steps { margin-top: 18px; }
.steps li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 12px; padding: 16px 0; border-top: 1px solid var(--line-light); }
.steps__idx { font: 800 30px/1 var(--font-display); color: transparent; -webkit-text-stroke: 1px var(--gold); }
.steps__title { font: 700 20px/1.1 var(--font-display); letter-spacing: .02em; text-transform: uppercase; }
.steps__text { margin-top: 4px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

.quote-call { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 24px 20px 14px; background: var(--anthracite); border-top: 2px solid var(--gold); color: var(--white); }
.quote-call__label { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--silver); }
.quote-call__list { display: flex; flex-direction: column; margin-bottom: 10px; }
.quote-call__list--mobile { flex-direction: row; flex-wrap: wrap; column-gap: 18px; }
.quote-call__number { display: inline-flex; align-items: center; min-height: 44px; font: 800 clamp(28px, 2.6vw, 32px)/1 var(--font-display); color: var(--gold); white-space: nowrap; transition: color .2s; }
.quote-call__mobile { display: inline-flex; align-items: center; min-height: 44px; font: 700 21px/1 var(--font-display); letter-spacing: .02em; color: var(--white); white-space: nowrap; transition: color .2s; }
.quote-call__number:hover,
.quote-call__mobile:hover { color: var(--gold-light); }
.quote-call__wa { align-self: stretch; margin-top: 4px; }
.quote-call__mail { display: inline-flex; align-items: center; min-height: 44px; font-size: 15px; color: var(--light); overflow-wrap: anywhere; transition: color .2s; }
.quote-call__mail:hover { color: var(--gold-light); }

@media (min-width: 640px) {
  .form-step__fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-card { padding: 36px 36px 40px; }
  .quote-form__btn { flex: 0 0 auto; }
}
@media (min-width: 1000px) {
  .quote__grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 340px); align-items: start; gap: 28px; padding-bottom: 88px; }
  .quote-card { margin-top: -64px; padding: 44px 48px 48px; }
  .quote-aside { margin-top: -64px; }
}
@media (min-width: 1000px) and (min-height: 900px) {
  .quote-aside { position: sticky; top: calc(var(--header-h) + 24px); } /* kısa ekranda yan sütunun altı kesilmesin */
}

/* Alt bilgi ------------------------------------------------------------- */
.site-footer { background: var(--anthracite-deep); color: var(--silver); border-top: 1px solid var(--line-gold); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; padding-block: 48px 32px; }
.footer__logo { width: 180px; min-width: 160px; height: auto; } /* künye: logo en az 160px genişlik */
.footer__tagline { max-width: 34ch; margin-top: 16px; font-size: 14px; line-height: 1.55; }
.footer__title { margin-bottom: 8px; font: 700 16px/1.2 var(--font-display); letter-spacing: .12em; text-transform: uppercase; color: var(--white); }
.footer__col a { display: inline-block; padding-block: 6px; color: var(--light); transition: color .2s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__cities { columns: 2; column-gap: 16px; }
.footer__contact li { font-size: 14px; line-height: 1.5; }
.footer__contact address { padding-block: 6px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-block: 16px 24px; border-top: 1px solid var(--line-dark); font-size: 12px; }
.footer__est { letter-spacing: .2em; text-transform: uppercase; }

@media (min-width: 560px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .footer__top { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, 1fr) minmax(0, 1.1fr); }
}

/* Mobil hızlı işlem çubuğu: Ara · Teklif Al · Sipariş Ver (WhatsApp) ----- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(43, 43, 43, .97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-gold);
  transition: transform .35s var(--ease);
}
.js .callbar:not(.is-visible) { transform: translateY(110%); }
.callbar__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 56px;
  padding: 6px 4px;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  transition: background-color .2s, border-color .2s, color .2s;
}
.callbar__item .icon { color: var(--gold); }
.callbar__item:hover { border-color: var(--gold-light); color: var(--gold-light); }
.callbar__item--primary { background: var(--gold); border-color: var(--gold); color: var(--anthracite); }
.callbar__item--primary .icon { color: var(--anthracite); }
.callbar__item--primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--anthracite); }

.wa-float { display: none; }
@media (min-width: 900px) {
  .wa-float {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px 0 20px;
    border-radius: 2px;
    background: var(--gold);
    color: var(--anthracite);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 16px 36px -12px rgba(0, 0, 0, .55);
    transition: background-color .2s, opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .wa-float:hover { background: var(--gold-light); }
  .js .wa-float:not(.is-visible) { visibility: hidden; opacity: 0; transform: translateY(16px); }
}

@media (max-width: 899.98px) {
  .footer__bottom { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  body:not(:has(.callbar)) .footer__bottom { padding-bottom: calc(24px + env(safe-area-inset-bottom)); } /* çubuksuz sayfa (yük teklifi) */
}
@media (min-width: 900px) {
  .callbar { display: none; }
}

/* Görünür olunca beliren öğeler ---------------------------------------- */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.service-card.reveal { transition: opacity .8s var(--ease), transform .5s var(--ease), box-shadow .35s; }
.js .reveal:not(.is-in) { opacity: 0; transform: translateY(22px); }

/* Animasyonlar ---------------------------------------------------------- */
@keyframes road-dash { to { stroke-dashoffset: -28; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.8); opacity: 0; } }
@keyframes pulse-lg { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(3); opacity: 0; } }
@keyframes route-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes route-flow { to { stroke-dashoffset: -.04; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal:not(.is-in) { opacity: 1; transform: none; }
}
