@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   CAN MOTOTRANSFER — koyu / "kayış turuncusu" tema
   Display: Archivo (endüstriyel grotesk) · Body: Inter
   ============================================================ */

:root {
  --ink:      #0c0a09;   /* sıcak çok koyu zemin */
  --ink-2:    #15110e;   /* kart yüzeyi */
  --ink-3:    #1e1813;   /* hover yüzeyi */
  --strap:    #ff6a00;   /* bağlama kayışı turuncusu — accent */
  --strap-2:  #ff8a33;
  --ember:    #c2410c;   /* koyu turuncu */
  --bone:     #f7f3ee;   /* sıcak beyaz */
  --smoke:    #a8a09a;   /* yumuşak gri metin */
  --smoke-d:  #6f6760;
  --hair:     rgba(247,243,238,0.09);
  --hair-2:   rgba(247,243,238,0.16);
  --ok:       #34d399;
  --nav-h:    72px;
  --maxw:     1200px;
  --r:        14px;
  --r-sm:     10px;
  --ease:     cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── responsive taşma koruması ── */
.display, .hero__title, .section__title, .phead__title, .cta__title,
.svc__title, .svc-long__title, .flow__title, .why__title { overflow-wrap: break-word; }
.hero__content, .hero__media, .svc, .svc-long__card, .ccard, .why__item,
.trust__item, .vtype, .flow__step, .fleet__card, .footer__ci { min-width: 0; }
.svc-long__card > div, .ccard > div, .why__item > div, .footer__ci > div,
.trust__item > div { min-width: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--strap); color: #fff; }

/* ── tipografi yardımcıları ── */
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--strap);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--strap);
  display: inline-block;
}
.display {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  background: rgba(12,10,9,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hair);
  z-index: 1000;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.nav__logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: 1.15rem;
  letter-spacing: -0.01em; text-transform: uppercase;
  display: flex; align-items: center; gap: 11px;
}
.nav__logo-mark {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--strap); border-radius: 8px;
  box-shadow: 0 4px 14px rgba(255,106,0,0.35);
}
.nav__logo-mark svg { width: 20px; height: 20px; stroke: #0c0a09; }
.nav__logo span { color: var(--strap); }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 9px 15px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--smoke);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--bone); background: var(--ink-2); }
.nav__links a.active { color: var(--strap); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 0.92rem; color: var(--bone);
  transition: color .2s;
}
.nav__phone svg { width: 16px; height: 16px; stroke: var(--strap); }
.nav__phone:hover { color: var(--strap); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--bone); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: var(--nav-h) 0 auto 0;
  background: rgba(10,8,7,0.99);
  border-bottom: 1px solid var(--hair);
  padding: 18px 24px 28px; z-index: 999;
  display: none; flex-direction: column; gap: 3px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 13px 16px; border-radius: 9px; color: var(--smoke);
  font-size: 1.05rem; font-weight: 500; transition: .2s;
}
.nav__mobile a:hover { color: var(--bone); background: var(--ink-2); }
.nav__mobile-phones { margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--hair); display: flex; flex-direction: column; gap: 10px; }
.nav__mobile-phones a {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  color: var(--strap) !important; font-size: 1.05rem;
}
.nav__mobile-phones svg { width: 18px; height: 18px; stroke: var(--strap); }

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 10px; border: none; cursor: pointer;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.01em; transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--strap); color: #160a02; }
.btn--primary:hover { background: var(--strap-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,106,0,0.34); }
.btn--ghost { background: transparent; color: var(--bone); border: 1.5px solid var(--hair-2); }
.btn--ghost:hover { border-color: var(--strap); color: var(--strap); transform: translateY(-2px); }
.btn--wa { background: #1faf54; color: #fff; }
.btn--wa:hover { background: #25c560; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,197,96,0.3); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: var(--nav-h); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: 56px; align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 64px 0;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(255,106,0,0.10), transparent 55%),
    radial-gradient(80% 70% at 0% 100%, rgba(255,106,0,0.05), transparent 60%);
}
/* diagonal "kayış" şeritleri — imza motifi */
.hero__straps {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5; pointer-events: none;
  background-image: repeating-linear-gradient(
    -54deg,
    transparent 0, transparent 78px,
    rgba(255,106,0,0.05) 78px, rgba(255,106,0,0.05) 80px
  );
  mask-image: linear-gradient(to bottom right, #000, transparent 70%);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,106,0,0.09); border: 1px solid rgba(255,106,0,0.28);
  color: var(--strap-2); padding: 7px 15px; border-radius: 100px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(52,211,153,0.6); animation: ping 2.4s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.55);} 70%,100% { box-shadow: 0 0 0 9px rgba(52,211,153,0);} }

.hero__title { font-size: clamp(2.1rem, 8.5vw, 4.7rem); margin-bottom: 22px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { color: var(--strap); font-style: normal; }
.hero__lead {
  font-size: 1.12rem; color: var(--smoke); max-width: 540px;
  margin-bottom: 34px; line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 46px; }
.hero__meta { display: flex; gap: 38px; flex-wrap: wrap; }
.hero__meta-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2.1rem; color: var(--bone); line-height: 1; }
.hero__meta-num span { color: var(--strap); }
.hero__meta-lbl { font-size: 0.8rem; color: var(--smoke); margin-top: 6px; }

/* hero görsel */
.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--hair-2);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9);
  aspect-ratio: 4 / 3.2;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.55), transparent 45%);
}
.hero__tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: rgba(12,10,9,0.78); backdrop-filter: blur(8px);
  border: 1px solid var(--hair-2); border-radius: 100px;
  padding: 9px 16px 9px 11px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.hero__tag svg { width: 17px; height: 17px; stroke: var(--strap); }
/* yüzen "sabitleme" rozeti */
.hero__chip {
  position: absolute; top: 22px; right: -14px; z-index: 2;
  background: var(--strap); color: #160a02;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.02em;
  padding: 11px 18px; border-radius: 10px;
  box-shadow: 0 16px 40px rgba(255,106,0,0.4);
  display: flex; align-items: center; gap: 8px;
}
.hero__chip svg { width: 18px; height: 18px; stroke: #160a02; }

/* ============================================================
   TRUST ŞERİDİ
   ============================================================ */
.trust {
  border-block: 1px solid var(--hair);
  background: var(--ink-2);
}
.trust__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  padding: 22px 24px; max-width: var(--maxw); margin: 0 auto;
}
.trust__item { display: flex; align-items: center; gap: 12px; }
.trust__item svg { width: 24px; height: 24px; stroke: var(--strap); flex-shrink: 0; }
.trust__item b { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.92rem; display: block; }
.trust__item span { font-size: 0.78rem; color: var(--smoke); }

/* ============================================================
   BÖLÜM
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--ink-2); }
.section__head { max-width: 660px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow::before { display: none; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); margin: 16px 0 14px; }
.section__title em { color: var(--strap); font-style: normal; }
.section__sub { color: var(--smoke); font-size: 1.02rem; line-height: 1.7; }

/* ── HİZMET KARTLARI ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.svc {
  position: relative; background: var(--ink-2); border: 1px solid var(--hair);
  border-radius: var(--r); padding: 32px 28px; overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.svc::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--strap); transition: width .35s var(--ease);
}
.svc:hover { border-color: var(--hair-2); transform: translateY(-5px); background: var(--ink-3); }
.svc:hover::before { width: 100%; }
.svc__icon {
  width: 54px; height: 54px; border-radius: 13px;
  background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.22);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background .3s;
}
.svc__icon svg { width: 27px; height: 27px; stroke: var(--strap); }
.svc:hover .svc__icon { background: rgba(255,106,0,0.16); }
.svc__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.svc__desc { font-size: 0.92rem; color: var(--smoke); line-height: 1.65; }

/* ── SÜREÇ (numaralı, gerçek iş sırası) ── */
.flow { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; counter-reset: step; }
.flow__step {
  position: relative; padding: 30px 24px;
  border: 1px solid var(--hair); border-radius: var(--r); background: var(--ink-2);
}
.flow__num {
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--strap); line-height: 1;
  display: block; margin-bottom: 16px;
}
.flow__step svg { width: 26px; height: 26px; stroke: var(--strap); margin-bottom: 12px; }
.flow__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 8px; }
.flow__desc { font-size: 0.86rem; color: var(--smoke); line-height: 1.6; }
.flow__step:not(:last-child)::after {
  content: ''; position: absolute; top: 46px; right: -13px; z-index: 2;
  width: 26px; height: 2px; background: var(--hair-2);
}

/* ── TAŞITLAR (fotoğraflı) ── */
.fleet { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.fleet__card {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--hair);
  background: var(--ink-2); transition: transform .3s var(--ease), border-color .3s;
}
.fleet__card:hover { transform: translateY(-5px); border-color: var(--strap); }
.fleet__img { aspect-ratio: 4/3; overflow: hidden; }
.fleet__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.fleet__card:hover .fleet__img img { transform: scale(1.06); }
.fleet__body { padding: 18px 20px; }
.fleet__name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.02rem; display: flex; align-items: center; gap: 9px; }
.fleet__name svg { width: 19px; height: 19px; stroke: var(--strap); }
.fleet__sub { font-size: 0.82rem; color: var(--smoke); margin-top: 4px; }

/* ── TAŞIT TÜRLERİ ── */
.vtypes { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.vtype {
  text-align: center; padding: 34px 22px;
  border: 1px solid var(--hair); border-radius: var(--r); background: var(--ink-2);
  transition: border-color .3s, transform .3s var(--ease);
}
.vtype:hover { border-color: var(--strap); transform: translateY(-5px); }
.vtype__ic {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 15px;
  background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
.vtype__ic svg { width: 32px; height: 32px; stroke: var(--strap); }
.vtype__name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.02rem; }
.vtype__sub { font-size: 0.8rem; color: var(--smoke); margin-top: 5px; }

/* ── NEDEN BİZ ── */
.why { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.why__item {
  display: flex; gap: 18px; padding: 26px;
  border: 1px solid var(--hair); border-radius: var(--r); background: var(--ink-2);
  transition: border-color .3s;
}
.why__item:hover { border-color: var(--hair-2); }
.why__ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
.why__ic svg { width: 24px; height: 24px; stroke: var(--strap); }
.why__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 7px; }
.why__desc { font-size: 0.9rem; color: var(--smoke); line-height: 1.6; }

/* ── GALERİ ── */
.gallery {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 200px; gap: 14px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--r-sm);
  border: 1px solid var(--hair); cursor: pointer; background: var(--ink-2);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.6), transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2; right: 14px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.82rem;
  opacity: 0; transform: translateY(6px); transition: .3s var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,5,4,0.94); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 28px;
}
.lb.open { display: flex; }
.lb__img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); border: 1px solid var(--hair-2); }
.lb__close, .lb__nav {
  position: absolute; background: rgba(30,24,19,0.8); border: 1px solid var(--hair-2);
  color: var(--bone); cursor: pointer; border-radius: 50%;
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lb__close svg, .lb__nav svg { width: 24px; height: 24px; stroke: currentColor; }
.lb__close:hover, .lb__nav:hover { background: var(--strap); color: #160a02; }
.lb__close { top: 22px; right: 22px; }
.lb__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb__count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--smoke); background: rgba(30,24,19,0.8);
  padding: 6px 16px; border-radius: 100px; border: 1px solid var(--hair);
}

/* ── CTA ── */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r);
  border: 1px solid rgba(255,106,0,0.3);
  background: linear-gradient(135deg, #1a0c02, #2a1206 60%, #14100d);
  padding: 76px 44px; text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-54deg, transparent 0 60px, rgba(255,106,0,0.06) 60px 62px);
  mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent);
}
.cta__title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 13px; position: relative; }
.cta__sub { color: var(--smoke); font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta__actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   SAYFA BAŞLIĞI (iç sayfalar)
   ============================================================ */
.phead {
  position: relative; padding: calc(var(--nav-h) + 70px) 0 64px;
  border-bottom: 1px solid var(--hair); overflow: hidden;
}
.phead__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(90% 120% at 80% -20%, rgba(255,106,0,0.12), transparent 55%),
    repeating-linear-gradient(-54deg, transparent 0 78px, rgba(255,106,0,0.04) 78px 80px);
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.phead__title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 14px 0 12px; }
.phead__title em { color: var(--strap); font-style: normal; }
.phead__sub { color: var(--smoke); max-width: 560px; font-size: 1.05rem; }
.crumb { font-size: 0.82rem; color: var(--smoke-d); margin-bottom: 4px; }
.crumb a:hover { color: var(--strap); }

/* ── HİZMET DETAY (uzun) ── */
.svc-long { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.svc-long__card {
  display: flex; gap: 20px; padding: 30px;
  background: var(--ink-2); border: 1px solid var(--hair); border-radius: var(--r);
  transition: border-color .3s, transform .3s var(--ease);
}
.svc-long__card:hover { border-color: var(--hair-2); transform: translateY(-3px); }
.svc-long__ic {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 13px;
  background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
.svc-long__ic svg { width: 28px; height: 28px; stroke: var(--strap); }
.svc-long__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 9px; }
.svc-long__desc { font-size: 0.94rem; color: var(--smoke); line-height: 1.7; }

/* ── HAKKINDA ── */
.about { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: start; }
.about__text p { color: var(--smoke); line-height: 1.85; margin-bottom: 18px; font-size: 1.01rem; }
.about__text p strong { color: var(--bone); font-weight: 600; }
.about__quote {
  border-left: 3px solid var(--strap); padding: 6px 0 6px 24px; margin: 28px 0;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 1.18rem;
  line-height: 1.5; color: var(--bone);
}
.about__media { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 14px; }
.about__media img { border-radius: var(--r); border: 1px solid var(--hair); width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ── ÇALIŞMA SAATLERİ ── */
.hours { max-width: 620px; margin: 0 auto; border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; }
.hours__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px; border-bottom: 1px solid var(--hair); background: var(--ink-2);
}
.hours__row:last-child { border-bottom: none; }
.hours__day { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 0.95rem; }
.hours__time { color: var(--smoke); font-size: 0.92rem; margin-left: auto; margin-right: 16px; }
.tag-open {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(52,211,153,0.1); color: var(--ok);
  border: 1px solid rgba(52,211,153,0.25); border-radius: 100px;
  padding: 4px 12px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.74rem;
}
.tag-open i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

/* ── İLETİŞİM ── */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.contact__list { display: flex; flex-direction: column; gap: 13px; }
.ccard {
  display: flex; gap: 16px; padding: 20px;
  background: var(--ink-2); border: 1px solid var(--hair); border-radius: var(--r);
  transition: border-color .3s;
}
.ccard:hover { border-color: var(--strap); }
.ccard__ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
.ccard__ic svg { width: 23px; height: 23px; stroke: var(--strap); }
.ccard__lbl { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); margin-bottom: 5px; }
.ccard__val { font-size: 0.98rem; font-weight: 500; line-height: 1.55; }
.ccard__val a { color: var(--strap); }
.ccard__val a:hover { color: var(--strap-2); }
.map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--hair); }
.map iframe { width: 100%; height: 420px; display: block; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080605; border-top: 1px solid var(--hair); padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1.3fr; gap: 52px; margin-bottom: 50px; }
.footer__logo { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 14px; }
.footer__logo span { color: var(--strap); }
.footer__about { color: var(--smoke); font-size: 0.9rem; line-height: 1.75; max-width: 300px; margin-bottom: 22px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--ink-2); border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center; transition: .2s var(--ease);
}
.footer__social a svg { width: 19px; height: 19px; stroke: var(--smoke); transition: stroke .2s; }
.footer__social a:hover { background: var(--strap); border-color: var(--strap); transform: translateY(-3px); }
.footer__social a:hover svg { stroke: #160a02; }
.footer__ttl { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: var(--smoke); font-size: 0.92rem; transition: color .2s; }
.footer__links a:hover { color: var(--strap); }
.footer__ci { display: flex; gap: 11px; margin-bottom: 13px; }
.footer__ci svg { width: 18px; height: 18px; stroke: var(--strap); flex-shrink: 0; margin-top: 2px; }
.footer__ci div { font-size: 0.9rem; color: var(--smoke); line-height: 1.55; }
.footer__ci a { color: var(--smoke); }
.footer__ci a:hover { color: var(--strap); }
.footer__bot {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid var(--hair);
  font-size: 0.82rem; color: var(--smoke-d);
}
.footer__bot a { color: var(--smoke); }
.footer__bot a:hover { color: var(--strap); }

/* ── WHATSAPP FLOAT ── */
.wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #1faf54;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(31,175,84,0.45); transition: transform .2s var(--ease);
}
.wa svg { width: 30px; height: 30px; }
.wa:hover { transform: scale(1.08); }
.wa::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #1faf54; animation: ping 2.4s infinite;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .fleet { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .flow { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .flow__step:nth-child(2)::after { display: none; }
  .svc-long { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 64px; }
  .hero__media { max-width: 540px; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__media { position: static; grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
  .gallery { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__logo { font-size: 1rem; }
  .nav__logo-mark { width: 30px; height: 30px; }
  .section { padding: 68px 0; }
  .why { grid-template-columns: 1fr; }
  .trust__inner { gap: 14px; }
  .trust__item { width: calc(50% - 9px); }
  .cta { padding: 52px 26px; border-radius: 0; margin: 0 -24px; border-inline: none; }
}
@media (max-width: 560px) {
  .svc-grid, .fleet, .flow { grid-template-columns: 1fr; }
  .flow__step::after { display: none !important; }
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .hero__meta { gap: 26px; }
  .hero__chip { right: 12px; }
  .lb__nav { width: 42px; height: 42px; }
  .lb__nav--prev { left: 10px; } .lb__nav--next { right: 10px; }
}

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

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