:root {
  --ink: #101319;
  --ink-2: #1b1f27;
  --ink-soft: #3f444e;
  --steel: #5a616c;
  --red: #d81f14;
  --red-deep: #a5120a;
  --red-soft: #fdf0ef;
  --red-light: #ff7a70;
  --amber: #f5a623;
  --paper: #ffffff;
  --paper-2: #f7f8fa;
  --paper-3: #eceff3;
  --line: #e6e9ef;
  --line-strong: #d3d8e0;
  --muted: #6c7280;
  --shadow-xs: 0 1px 2px rgba(16,19,25,.06);
  --shadow-sm: 0 2px 4px rgba(16,19,25,.04), 0 8px 18px rgba(16,19,25,.05);
  --shadow-md: 0 10px 24px rgba(16,19,25,.07), 0 26px 52px rgba(16,19,25,.08);
  --shadow-lg: 0 24px 60px rgba(16,19,25,.14);
  --shadow-red: 0 12px 28px rgba(216,31,20,.26);
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 10px;
  --ff-head: "Barlow Condensed", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}
img, svg, video, iframe { max-width: 100%; }
h1, h2, h3, h4, .font-head {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
p { color: var(--ink-soft); text-wrap: pretty; }

::selection { background: var(--red); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .btn:focus-visible {
  outline: 3px solid rgba(216,31,20,.4);
  outline-offset: 2px;
}

.section { padding-block: clamp(66px, 9vw, 122px); }
.section--alt { background: var(--paper-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  font-size: .82rem; color: var(--red);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.center::after { content: ""; width: 30px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.on-dark { color: var(--red-light); }
.eyebrow.on-dark::before, .eyebrow.on-dark::after { background: var(--red-light); }

.section-title { font-size: clamp(1.9rem, 3.6vw, 3rem); text-transform: uppercase; margin: .55rem 0 .8rem; letter-spacing: -.015em; }
.lead-muted { color: var(--muted); max-width: 640px; font-size: 1.05rem; }

.btn {
  --btn-y: .85rem;
  font-family: var(--ff-head);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--radius-sm); padding: var(--btn-y) 1.6rem; font-size: 1rem;
  transition: transform .22s var(--ease), background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
  display: inline-flex; align-items: center; gap: .55rem; line-height: 1.1;
}
.btn:active { transform: translateY(0) scale(.985); }
.btn-sm { --btn-y: .58rem; font-size: .88rem; padding: var(--btn-y) 1.1rem; }
.btn-red { background: var(--red); color: #fff; border: 2px solid var(--red); box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(216,31,20,.32); }
.btn-red:hover .arrow { transform: translateX(4px); }
.btn-ink { background: var(--ink); color: #fff; border: 2px solid var(--ink); }
.btn-ink:hover { background: #000; border-color: #000; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ink:hover .arrow { transform: translateX(4px); }
.btn-outline-ink { background: transparent; color: var(--ink); border: 2px solid var(--line-strong); }
.btn-outline-ink:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; }
.arrow { transition: transform .2s ease; font-weight: 400; }

.fleet-ico i { font-size: 1.6rem; line-height: 1; }
.svc-ico i { font-size: 1.25rem; line-height: 1; }
.contact-row .ic i { font-size: 1.15rem; line-height: 1; }
.region-chip .pin i { font-size: 1.7rem; line-height: 1; }
.hbadge i { color: var(--red); }
.fleet-list li i, .about-check li i { color: var(--red); flex: none; margin-top: .35rem; font-size: .85rem; }
.about-check li i { font-size: 1rem; margin-top: .3rem; }

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1031;
  background: var(--ink); color: rgba(255,255,255,.72);
  font-size: .86rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar .sep { color: rgba(255,255,255,.25); }
.topbar i { color: var(--red); }
.topbar .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #29c26a; display: inline-block;
  box-shadow: 0 0 0 0 rgba(41,194,106,.6); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(41,194,106,.5); }
  70% { box-shadow: 0 0 0 8px rgba(41,194,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(41,194,106,0); }
}

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .28s ease, background .28s ease;
}
.site-nav.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 8px 26px rgba(16,19,25,.09); }

/* Fixed header: içerik header altında kalmasın (JS tam değeri ayarlar) */
body { padding-top: 76px; }
@media (min-width: 768px) { body { padding-top: 120px; } }
.site-nav > .container { position: relative; display: flex; align-items: center; gap: 1rem; min-height: 68px; flex-wrap: nowrap; }
.site-nav .navbar-brand { display: inline-flex; align-items: center; margin: 0; padding: 0; flex: 0 1 auto; min-width: 0; }
.site-nav .navbar-brand img { height: 60px; width: auto; max-width: 100%; object-fit: contain; transition: height .25s ease; }
.site-nav.scrolled .navbar-brand img { height: 50px; }

.main-nav { list-style: none; display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; }
.site-nav .nav-link {
  display: block; color: var(--ink); font-family: var(--ff-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em; font-size: 1.02rem;
  padding: .55rem 1rem; position: relative; border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--red); }

.nav-cta { display: flex; gap: .5rem; margin-left: auto; }

.nav-burger {
  display: none; margin-left: auto; border: 0; background: transparent;
  color: var(--ink); font-size: 1.6rem; line-height: 1; padding: .3rem .45rem; cursor: pointer;
  border-radius: 8px; transition: color .2s ease, background .2s ease;
}
.nav-burger:hover { color: var(--red); background: var(--red-soft); }

@media (min-width: 1200px) {
  .main-nav { flex: 1 1 auto; justify-content: center; gap: .1rem; }
  .site-nav .nav-link { padding: .55rem .8rem; letter-spacing: .05em; }
  .site-nav .nav-link::after {
    content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .3rem;
    height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform .22s var(--ease);
  }
  .site-nav .nav-link:hover::after, .site-nav .nav-link.active::after { transform: scaleX(1); }
}

@media (max-width: 1199.98px) {
  .main-nav, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; flex: none; margin-left: auto; }
}
@media (max-width: 991.98px) {
  .site-nav > .container { min-height: 62px; }
  .site-nav .navbar-brand img { height: 52px; }
  .site-nav.scrolled .navbar-brand img { height: 46px; }
}
@media (max-width: 575.98px) {
  .site-nav > .container { min-height: 58px; gap: .5rem; }
  .site-nav .navbar-brand img { height: 46px; }
  .site-nav.scrolled .navbar-brand img { height: 42px; }
}

.mnav-backdrop {
  position: fixed; inset: 0; background: rgba(10,11,14,.55);
  opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 1090;
  backdrop-filter: blur(2px);
}
.mnav-backdrop.open { opacity: 1; visibility: visible; }
.mnav {
  position: fixed; top: 0; right: 0; height: 100%; width: 86%; max-width: 360px;
  background: #fff; border-left: 4px solid var(--red);
  transform: translateX(100%); transition: transform .34s var(--ease);
  z-index: 1091; display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: -24px 0 60px rgba(0,0,0,.24);
}
.mnav.open { transform: none; }
.mnav-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
.mnav-head img { height: 52px; width: auto; }
.mnav-close {
  border: 0; background: var(--paper-2); width: 40px; height: 40px; border-radius: 10px;
  color: var(--ink); font-size: 1.15rem; cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.mnav-close:hover { background: var(--red); color: #fff; }
.mnav-links { display: flex; flex-direction: column; padding: .5rem 1.25rem; }
.mnav-links a {
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); padding: .95rem .4rem; border-bottom: 1px solid var(--line);
  transition: color .18s ease, padding .18s ease;
}
.mnav-links a:last-child { border-bottom: 0; }
.mnav-links a:hover, .mnav-links a.active { color: var(--red); padding-left: .9rem; }
.mnav-cta { display: flex; flex-direction: column; gap: .6rem; padding: 1rem 1.25rem; }
.mnav-cta .btn { width: 100%; justify-content: center; padding-block: .85rem; }
.mnav-contact { margin-top: auto; padding: 1.25rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .7rem; font-size: .9rem; }
.mnav-contact a, .mnav-contact span { color: var(--ink-soft); display: inline-flex; gap: .65rem; align-items: flex-start; }
.mnav-contact a:hover { color: var(--red); }
.mnav-contact i { color: var(--red); margin-top: .2rem; width: 16px; text-align: center; }
body.mnav-open { overflow: hidden; }

/* ============================================================
   HERO — Aydınlık, ferah, kurumsal, CTA odaklı (v2)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(820px 460px at 92% -8%, rgba(216,31,20,.10), transparent 62%),
    radial-gradient(680px 480px at -6% 112%, rgba(16,19,25,.06), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(44px, 6.5vw, 92px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(135deg, rgba(16,19,25,.02) 0 1px, transparent 1px 26px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

/* --- Sol içerik --- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red-soft); color: var(--red);
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  font-size: .8rem; padding: .45rem .95rem; border-radius: 999px; border: 1px solid rgba(216,31,20,.16);
}
.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.55rem); text-transform: uppercase;
  line-height: 1.05; letter-spacing: -.015em; margin: 1.15rem 0 0; color: var(--ink);
}
.hero-title .hl { color: var(--red); }
.hero-lead {
  color: var(--ink-soft); font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  max-width: 33rem; margin: 1.05rem 0 0; line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; margin-top: 1.9rem; }
.hero-cta .btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }

.hero-stats-inline {
  list-style: none; padding: 1.5rem 0 0; margin: 2.1rem 0 0;
  display: flex; gap: clamp(1.4rem, 3vw, 2.6rem); flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.hero-stats-inline li {
  font-size: .8rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .05em; font-weight: 600; line-height: 1.3;
}
.hero-stats-inline strong {
  display: block; font-family: var(--ff-head); font-weight: 800; font-size: 1.95rem;
  color: var(--ink); line-height: 1; letter-spacing: -.02em; margin-bottom: .25rem;
}
.hero-stats-inline strong span { color: var(--red); }

/* --- Sağ görsel + yüzen kart --- */
.hero-visual { position: relative; }
.hero-visual::after {
  content: ""; position: absolute; right: -14px; top: -14px; width: 62%; height: 58%;
  border: 2px solid rgba(216,31,20,.18); border-radius: var(--radius-lg); z-index: 0; pointer-events: none;
}
.hero-visual .hv-img {
  position: relative; z-index: 1; display: block; width: 100%;
  height: clamp(320px, 40vw, 480px); object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.hero-badge-op {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: .78rem; color: var(--ink); box-shadow: var(--shadow-sm);
}
.hero-badge-op i { color: var(--red); }
.hero-float {
  position: absolute; left: -16px; bottom: 26px; z-index: 3;
  display: flex; align-items: center; gap: .9rem;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: .9rem 1.15rem;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.hero-float:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hero-float .hf-ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(150deg, #fff, var(--red-soft)); color: var(--red);
  border: 1px solid rgba(216,31,20,.14); font-size: 1.2rem;
}
.hero-float .hf-t { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.hero-float .hf-num { font-family: var(--ff-head); font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: .01em; }
.hero-float .hf-num:hover { color: var(--red); }

@media (max-width: 991.98px) {
  .hero-visual { margin-top: 1rem; }
  .hero-float { left: 12px; }
  .about-badge { left: 12px; }
  .hero-visual::after { right: 0; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-visual .hv-img { height: 280px; }
  .hero-visual::after { display: none; }
  .hero-float { left: 10px; bottom: 12px; padding: .7rem .9rem; gap: .65rem; }
  .hero-float .hf-num { font-size: 1.15rem; }
  .hero-float .hf-ico { width: 40px; height: 40px; font-size: 1.05rem; }
  .hero-stats-inline { gap: 1.2rem; }
  .hero-stats-inline strong { font-size: 1.6rem; }
}

.feature-overlap { position: relative; z-index: 3; margin-top: clamp(-44px, -4vw, -60px); }
.feature-overlap .feature-bar { background: #fff; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  border-radius: var(--radius); overflow: hidden; margin-top: 2.2rem;
}
.hero-stats .cell { padding: 1.2rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.hero-stats .cell:last-child { border-right: 0; }
.hero-stats .num { font-family: var(--ff-head); font-weight: 800; font-size: 2.1rem; color: var(--ink); line-height: 1; }
.hero-stats .num .plus { color: var(--red); }
.hero-stats .lbl { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .35rem; }

.quick-card {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden;
}
.quick-card-head {
  position: relative; padding: 1.6rem 1.6rem 1.45rem; color: #fff;
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%);
}
.quick-card-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(380px 190px at 100% 0, rgba(216,31,20,.32), transparent 65%);
  pointer-events: none;
}
.quick-card-head::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--red);
}
.quick-card-head > * { position: relative; z-index: 1; }
.qc-badge {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--red); color: #fff;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  font-size: .76rem; padding: .3rem .75rem; border-radius: 999px;
}
.quick-card-head h3 { color: #fff; text-transform: uppercase; font-size: 1.45rem; margin: .75rem 0 .3rem; }
.quick-card-head p { color: rgba(255,255,255,.72); font-size: .9rem; margin: 0; }

.quick-form { padding: 1.45rem 1.6rem .2rem; }
.qc-field { margin-bottom: .9rem; }
.form-label-sm { font-size: .8rem; font-weight: 600; color: var(--steel); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; display: block; }
.form-control, .form-select { border-radius: 10px; border: 1px solid var(--line-strong); box-shadow: none; background: #fff; }
.form-control:focus, .form-select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(216,31,20,.12); }

.input-ico { position: relative; }
.input-ico > i { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: .92rem; pointer-events: none; z-index: 2; }
.input-ico .form-control, .input-ico .form-select { padding-left: 2.4rem; height: 48px; }
.input-ico .form-control:focus + i, .input-ico:focus-within > i { color: var(--red); }

.quick-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .95rem 1.6rem 1.35rem; margin-top: .6rem; border-top: 1px solid var(--line); font-size: .85rem;
}
.quick-card-foot span { color: var(--muted); }
.quick-card-foot i { color: var(--red); margin-right: .35rem; }
.quick-card-foot a { color: var(--ink); font-weight: 600; }
.quick-card-foot a:hover { color: var(--red); }

.breadcrumb-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.breadcrumb-nav { font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; margin: 0; }
.breadcrumb-nav a { color: var(--ink); font-weight: 600; text-decoration: none; transition: color .2s; }
.breadcrumb-nav a:hover { color: var(--red); }
.breadcrumb-nav .sep { color: var(--muted); font-size: .8rem; }
.breadcrumb-nav .cur { color: var(--red); font-weight: 600; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

.fleet-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.75rem; height: 100%;
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.fleet-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.fleet-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow-md); }
.fleet-card:hover::before { transform: scaleX(1); }
.fleet-ico {
  width: 66px; height: 66px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, #fff 0%, var(--red-soft) 100%);
  color: var(--red); margin-bottom: 1.15rem; border: 1px solid rgba(216,31,20,.14);
  box-shadow: inset 0 1px 0 #fff, var(--shadow-xs);
  transition: transform .28s var(--ease), background .25s ease, color .25s ease;
}
.fleet-card:hover .fleet-ico { background: var(--red); color: #fff; transform: rotate(-4deg) scale(1.05); border-color: var(--red); }
.fleet-card h3 { text-transform: uppercase; font-size: 1.5rem; margin-bottom: .5rem; }
.fleet-num {
  position: absolute; top: .9rem; right: 1.3rem; font-family: var(--ff-head);
  font-weight: 800; font-size: 3.6rem; color: var(--paper-2); line-height: 1; z-index: 0;
  transition: color .25s ease;
}
.fleet-card:hover .fleet-num { color: var(--red-soft); }
.fleet-card .content { position: relative; z-index: 1; }
.fleet-list { list-style: none; padding: 0; margin: 1.1rem 0 1.3rem; border-top: 1px dashed var(--line); padding-top: 1.1rem; }
.fleet-list li { display: flex; gap: .55rem; align-items: flex-start; padding: .3rem 0; color: var(--ink-soft); font-size: .95rem; }
.fleet-link { font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); display: inline-flex; gap: .45rem; align-items: center; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease; }
.fleet-link:hover { color: var(--red); border-color: var(--red); }
.fleet-link:hover .arrow { transform: translateX(4px); }

.about-visual {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  border-radius: var(--radius); padding: 2.2rem; position: relative; overflow: hidden; height: 100%;
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 100% 0, rgba(216,31,20,.06), transparent 60%);
  pointer-events: none;
}
.about-visual .cell-a { position: relative; z-index: 1; }
.about-visual .n { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.4rem,5vw,3.2rem); color: var(--red); line-height: 1; }
.about-visual .t { color: var(--muted); font-size: .92rem; margin-top: .35rem; }
.about-visual .grid-a { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.about-visual .grid-a > div { padding: 1rem; border-radius: 12px; background: var(--paper-2); border: 1px solid var(--line); }
.about-check { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.about-check li { display: flex; gap: .7rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); }
.about-check li:last-child { border-bottom: 0; }
.about-check li span { color: var(--ink-soft); }
.about-check.two-col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.6rem; }
@media (max-width: 575.98px) { .about-check.two-col { grid-template-columns: 1fr; } }
.safety-strip {
  height: 10px; border-radius: 6px; margin-top: 1.6rem;
  background: repeating-linear-gradient(45deg, var(--amber) 0 14px, var(--ink) 14px 28px);
}

.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.stat-band .sb-cell { padding: 1.95rem 1.4rem; text-align: center; border-right: 1px solid var(--line); position: relative; }
.stat-band .sb-cell:last-child { border-right: 0; }
.stat-band .sb-num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--ink); line-height: 1; }
.stat-band .sb-num .plus, .stat-band .sb-num .pct { color: var(--red); }
.stat-band .sb-lbl { color: var(--muted); font-size: .86rem; margin-top: .5rem; }
.stat-band .sb-cell::after {
  content: ""; position: absolute; left: 1.4rem; bottom: 1.1rem; width: 28px; height: 3px;
  background: var(--red); opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease;
}
.stat-band .sb-cell:hover::after { opacity: 1; transform: none; }
@media (max-width: 767.98px) {
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-band .sb-cell:nth-child(2) { border-right: 0; }
  .stat-band .sb-cell:nth-child(1), .stat-band .sb-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.about-media { position: relative; }
.about-media .side-photo img { min-height: 380px; }
.about-badge {
  position: absolute; left: -18px; bottom: 46px; z-index: 2;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem;
}
.about-badge .ab-num { font-family: var(--ff-head); font-weight: 800; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.about-badge .ab-num .plus { color: var(--red); }
.about-badge .ab-lbl { font-size: .82rem; line-height: 1.2; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.about-media .safety-strip { margin-top: 1.1rem; }
@media (max-width: 575.98px) {
  .about-badge { left: 10px; bottom: 10px; padding: .7rem .9rem; }
  .about-badge .ab-num { font-size: 2rem; }
}

.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.6rem; height: 100%; overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red);
  transform: scaleY(0); transform-origin: top; transition: transform .25s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.svc-ico {
  width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(150deg, #fff, var(--red-soft)); color: var(--red);
  border: 1px solid rgba(216,31,20,.14); box-shadow: inset 0 1px 0 #fff;
  transition: background .25s ease, color .25s ease;
}
.svc-card:hover .svc-ico { background: var(--red); color: #fff; border-color: var(--red); }
.svc-head h3 { font-size: 1.22rem; text-transform: uppercase; margin: 0; }
.svc-ul { list-style: none; padding: 0; margin: 0; }
.svc-ul li { position: relative; padding: .36rem 0 .36rem 1.4rem; color: var(--ink-soft); font-size: .94rem; }
.svc-ul li::before { content: ""; position: absolute; left: 0; top: .85rem; width: 7px; height: 7px; background: var(--red); border-radius: 2px; transform: rotate(45deg); }

.region-chip {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1rem;
  text-align: center; height: 100%; transition: transform .22s var(--ease), border-color .22s ease, box-shadow .22s ease;
}
.region-chip h3 { color: var(--ink); transition: color .2s ease; }
.region-chip:hover h3 { color: var(--red); }
.region-chip:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-md); }
.region-chip .pin {
  width: 54px; height: 54px; margin: 0 auto .85rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red); border: 1px solid rgba(216,31,20,.14);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.region-chip:hover .pin { background: var(--red); color: #fff; transform: translateY(-2px); }
.region-chip h3 { font-size: 1.15rem; text-transform: uppercase; margin: 0 0 .1rem; }
.region-chip small { color: var(--muted); }
.region-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); color: #fff; border-radius: var(--radius);
  padding: 1.7rem 1.9rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem;
  box-shadow: 0 18px 38px rgba(216,31,20,.24);
}
.region-banner .banner-ico { font-size: 2rem; }
.region-banner .btn-white { background: #fff; color: var(--red); border: 2px solid #fff; }
.region-banner .btn-white:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.accordion-item { border: 1px solid var(--line); border-radius: 12px !important; overflow: hidden; margin-bottom: .85rem; background: #fff; transition: box-shadow .2s ease, border-color .2s ease; }
.accordion-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.accordion-item:has(.accordion-button:not(.collapsed)) { border-color: var(--red); box-shadow: var(--shadow-sm); }
.accordion-button {
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.08rem; color: var(--ink); background: #fff; padding: 1.15rem 1.25rem;
}
.accordion-button:not(.collapsed) { color: var(--red); background: #fff; box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--line); }
.accordion-button::after {
  background-image: none; content: "+"; font-size: 1.6rem; font-family: var(--ff-head);
  width: auto; height: auto; transform: none; transition: none; color: var(--red); line-height: 1;
}
.accordion-button:not(.collapsed)::after { content: "−"; transform: none; }
.accordion-body { color: var(--ink-soft); padding: 0 1.25rem 1.25rem; }

.contact-panel { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: var(--radius); padding: 2.2rem; height: 100%; }
.contact-row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(150deg,#fff,var(--red-soft)); color: var(--red); display: grid; place-items: center; flex: none; border: 1px solid rgba(216,31,20,.14); box-shadow: inset 0 1px 0 #fff; transition: background .25s ease, color .25s ease; }
.contact-row:hover .ic { background: var(--red); color: #fff; border-color: var(--red); }
.contact-row a, .contact-row span { color: var(--ink); }
.contact-row .t { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.map-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff;
  border-radius: var(--radius); padding: clamp(2rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 320px at 100% 0, rgba(216,31,20,.28), transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red);
}
.cta-band .inner { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; text-transform: uppercase; }
.cta-band p { color: rgba(255,255,255,.75); }

/* ========================================================================
   SITE FOOTER — kurumsal
   Yapı: CTA şeridi › 5 kolonlu bilgi ızgarası › alt bilgi bandı
   ======================================================================== */
.site-footer { position: relative; background: var(--ink); color: rgba(255,255,255,.66); font-size: .95rem; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 34%, rgba(255,255,255,.07) 34%, rgba(255,255,255,.07) 100%);
}
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .btn-outline-ink { border-color: rgba(255,255,255,.26); color: #fff; }
.site-footer .btn-outline-ink:hover, .site-footer .btn-outline-ink:hover i { background: #fff; border-color: #fff; color: var(--ink); }
.site-footer .btn-red, .site-footer .btn-red:hover, .site-footer .btn-red i { color: #fff; }

/* --- CTA şeridi --- */
.foot-cta { position: relative; overflow: hidden; padding: clamp(30px,4vw,48px) 0; background: var(--ink-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(680px 240px at 8% 0%, rgba(216,31,20,.22), transparent 72%);
}
.foot-cta-in { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem 2.5rem; }
.fc-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ff-head); font-weight: 700; font-size: .84rem; text-transform: uppercase; letter-spacing: .13em; color: var(--red-light); }
.fc-title { font-family: var(--ff-head); font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1.1; font-size: clamp(1.45rem,2.5vw,2.05rem); margin: .5rem 0 .4rem; }
.fc-sub { margin: 0; max-width: 58ch; color: rgba(255,255,255,.6); }
.fc-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* --- Bilgi ızgarası --- */
.foot-main { padding: clamp(38px,5vw,62px) 0 clamp(26px,3vw,38px); }
.foot-grid { display: grid; gap: clamp(26px,3vw,38px) clamp(22px,2.6vw,44px); grid-template-columns: 1.85fr 1fr 1.15fr 1fr 1.5fr; }

.foot-head { position: relative; margin: 0 0 1.15rem; padding-bottom: .65rem; font-family: var(--ff-head); font-weight: 700; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .09em; color: #fff; }
.foot-head::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--red); }

.foot-list { list-style: none; margin: 0; padding: 0; }
.foot-list a { display: flex; align-items: center; gap: .6rem; padding: .3rem 0; line-height: 1.5; transition: color .2s var(--ease), transform .2s var(--ease); }
.foot-list a::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 2px; background: rgba(255,255,255,.2); transition: background .2s var(--ease); }
.foot-list a:hover { transform: translateX(4px); }
.foot-list a:hover::before { background: var(--red); }

/* --- Marka kolonu --- */
.fb-logo { display: inline-flex; background: #fff; padding: .6rem .9rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.fb-logo img { display: block; height: 44px; width: auto; }
.fb-desc { max-width: 46ch; margin: 1.15rem 0 1.6rem; color: rgba(255,255,255,.6); }

.fb-social .fs-label { display: block; margin-bottom: .75rem; font-family: var(--ff-head); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.88); }
.fs-icons { display: flex; align-items: center; gap: .55rem; }
.fs-icons a {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: #fff; font-size: 1.1rem; transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.fs-icons a:hover { transform: translateY(-3px); border-color: transparent; color: #fff; }
.fs-icons a:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.fs-icons .fs-ig:hover { background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 52%, #6228d7 100%); }
.fs-icons .fs-yt:hover { background: #ff0000; }
.fs-icons .fs-wa:hover { background: #25d366; }

/* --- İletişim kolonu --- */
.foot-address { font-style: normal; margin: 0; }
.fcon-list { list-style: none; display: grid; gap: .95rem; margin: 0; padding: 0; }
.fcon-list li { display: flex; align-items: flex-start; gap: .75rem; }
.fcon-list .ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: var(--red-light); font-size: .88rem; }
.fcon-list .lb { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; color: rgba(255,255,255,.42); }
.fcon-list .vl { display: block; color: rgba(255,255,255,.86); line-height: 1.5; }
.fcon-list a.vl { font-weight: 600; }
.fcon-list a.vl:hover { color: #fff; }
.fcon-list .vl-phone { font-size: 1.12rem; letter-spacing: .01em; }

/* --- Alt bant --- */
.foot-bottom { border-top: 1px solid rgba(255,255,255,.09); background: rgba(0,0,0,.22); }
.fbot-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .7rem 1.5rem; padding: 1.15rem 0; font-size: .85rem; color: rgba(255,255,255,.46); }
.fbot-copy { margin: 0; }
.fbot-meta { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1rem; margin: 0; padding: 0; }
.fbot-meta li { display: flex; align-items: center; gap: 1rem; }
.fbot-meta li + li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.24); }

/* --- Uyarlanabilir düzen --- */
@media (max-width: 1199.98px) {
  .foot-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .foot-brand { grid-column: 1 / -1; }
  .fb-desc { max-width: 62ch; }
}
@media (max-width: 991.98px) {
  .foot-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 575.98px) {
  .foot-grid { grid-template-columns: 1fr; }
  .fc-actions { width: 100%; }
  .fc-actions .btn { flex: 1 1 auto; justify-content: center; }
  .fs-icons a { width: 46px; height: 46px; font-size: 1.2rem; }
  .fbot-in { justify-content: flex-start; }
}

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; display: none;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(16,19,25,.08);
  padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom));
  gap: .55rem; width: 100%; max-width: 100%;
}
.mobile-cta .btn {
  flex: 1 1 0; min-width: 0; justify-content: center;
  padding-inline: .5rem; letter-spacing: .03em; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.mobile-cta .btn i { flex: none; }
@media (max-width: 767.98px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stats .cell:last-child { border-bottom: 0; }
}
@media (max-width: 359.98px) {
  .mobile-cta .btn { font-size: .8rem; padding-inline: .35rem; }
  .mobile-cta .btn i { display: none; }
}

.feature-section { padding-top: clamp(40px, 6vw, 72px); }
.feature-bar {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden;
}
.feature-bar [class*="col-"] { border-right: 1px solid var(--line); }
.feature-bar [class*="col-"]:last-child { border-right: 0; }
.feature-item { display: flex; align-items: center; gap: 1rem; padding: 1.55rem 1.4rem; height: 100%; }
.feature-item .fi-ico {
  width: 52px; height: 52px; border-radius: 12px; flex: none;
  background: var(--red-soft); color: var(--red); display: grid; place-items: center;
  font-size: 1.35rem; border: 1px solid rgba(216,31,20,.12); transition: transform .2s ease;
}
.feature-item:hover .fi-ico { transform: translateY(-3px); }
.feature-item h3 { font-size: 1.04rem; text-transform: uppercase; margin: 0 0 .12rem; }
.feature-item p { margin: 0; font-size: .85rem; color: var(--muted); }
@media (max-width: 767.98px) {
  .feature-bar [class*="col-"] { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-bar [class*="col-"]:last-child { border-bottom: 0; }
}

.process-row { position: relative; }
@media (min-width: 768px) {
  .process-row::before {
    content: ""; position: absolute; top: 38px; left: 14%; right: 14%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 15px);
    z-index: 0;
  }
}
.step { position: relative; text-align: center; padding: 0 .75rem; z-index: 1; }
.step .step-badge {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: grid; place-items: center; background: #fff; border: 2px solid var(--line);
  color: var(--red); font-size: 1.7rem; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.step:hover .step-badge { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step .step-no {
  position: absolute; top: -4px; left: calc(50% + 22px);
  width: 27px; height: 27px; border-radius: 50%; background: var(--red); color: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: .85rem; display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(216,31,20,.3);
}
.step h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: .4rem; }
.step p { font-size: .92rem; margin: 0; }

.cta-band .cta-ico { font-size: 2.4rem; color: #ff5a52; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.wa-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 1036;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 1.75rem; text-decoration: none;
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: wa-pulse 2.8s infinite;
}
.wa-float:hover { color: #fff; transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,.55); }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 8px 22px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

.call-float {
  position: fixed; right: 20px; bottom: 92px; z-index: 1036;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 8px 22px rgba(216,31,20,.4);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.call-float:hover { color: #fff; background: var(--red-deep); transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(216,31,20,.5); }

@media (max-width: 767.98px) {
  .wa-float { right: 14px; bottom: calc(84px + env(safe-area-inset-bottom)); width: 50px; height: 50px; font-size: 1.5rem; }
  .call-float { right: 14px; bottom: calc(144px + env(safe-area-inset-bottom)); width: 50px; height: 50px; font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

.form-control, .form-select { min-height: 46px; }
textarea.form-control { min-height: auto; }

.svc-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.svc-img-wrap::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,19,25,.18), transparent 50%);
  z-index: 1; pointer-events: none;
}
.svc-img { display: block; width: 100%; height: 320px; object-fit: cover; transition: transform .4s var(--ease); }
.svc-img-wrap:hover .svc-img { transform: scale(1.04); }
@media (max-width: 767.98px) { .svc-img { height: 220px; } }

.fleet-img-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 1.1rem; border: 1px solid var(--line); }
.fleet-img { display: block; width: 100%; height: 180px; object-fit: cover; transition: transform .4s var(--ease); }
.fleet-card:hover .fleet-img { transform: scale(1.04); }

.fleet-card .fleet-media {
  margin: -2rem -1.75rem 1.35rem;
  height: 215px; overflow: hidden; position: relative;
  border-bottom: 3px solid var(--red); background: var(--paper-3);
}
.fleet-card .fleet-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.fleet-card:hover .fleet-media img { transform: scale(1.06); }
.fleet-card:has(.fleet-media) .fleet-num { z-index: 3; color: #fff; top: .4rem; right: 1.1rem; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.fleet-card:has(.fleet-media):hover .fleet-num { color: #fff; }
.fleet-card .fleet-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,19,25,.3) 100%);
  pointer-events: none;
}
/* Görsel üstü dekoratif etiket/gradient katmanları tıklamayı görsele bıraksın */
.svc-img-wrap::before, .machine-photo .tag { pointer-events: none; }
.machine-photo > img, .svc-img-wrap .svc-img, .fleet-media img, .side-photo img { cursor: zoom-in; }

.machine-photo {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); position: relative; background: var(--paper-3);
}
.machine-photo > img {
  width: 100%; height: 400px; object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.machine-photo:hover > img { transform: scale(1.04); }
.machine-photo .tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: var(--red); color: #fff; font-family: var(--ff-head);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
  padding: .45rem .95rem; border-radius: 999px; font-size: .82rem;
  box-shadow: var(--shadow-red);
}
.thumb-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: .6rem; }
.thumb-row img {
  width: 100%; height: 96px; object-fit: cover; border-radius: 10px;
  border: 1px solid var(--line); display: block;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.thumb-row img:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--red); }

.photo-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.photo-gallery .gitem {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: block;
}
.photo-gallery .gitem img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.photo-gallery .gitem:hover img { transform: scale(1.08); }
.photo-gallery .gitem::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,19,25,.38) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.photo-gallery .gitem:hover::after { opacity: 1; }
.photo-gallery .gitem .cap {
  position: absolute; left: .85rem; bottom: .75rem; z-index: 2; color: #fff;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: .9rem; opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.photo-gallery .gitem:hover .cap { opacity: 1; transform: none; }
.photo-gallery .gitem.wide { grid-column: span 2; }
/* Dekoratif katmanlar tıklamayı engellemesin; görsel Fancybox'ı açsın */
.photo-gallery .gitem::after, .photo-gallery .gitem .cap { pointer-events: none; }
.photo-gallery .gitem img { cursor: zoom-in; }
@media (max-width: 991.98px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery .gitem.wide { grid-column: span 2; }
}
@media (max-width: 575.98px) {
  .photo-gallery { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .photo-gallery .gitem img { height: 150px; }
  .thumb-row img { height: 74px; }
  .machine-photo > img { height: 300px; }
}

.side-photo {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); position: relative;
}
.side-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }

.gallery-tabs { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.4rem; }
.gallery-tabs .tab-btn {
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  font-size: .95rem; padding: .6rem 1.3rem; border-radius: 999px; cursor: pointer;
  background: #fff; color: var(--ink); border: 2px solid var(--line-strong);
  display: inline-flex; align-items: center; gap: .55rem; transition: all .2s ease;
}
.gallery-tabs .tab-btn .count {
  font-size: .76rem; background: var(--paper-3); color: var(--muted);
  padding: .05rem .5rem; border-radius: 999px; transition: all .2s ease;
}
.gallery-tabs .tab-btn:hover { border-color: var(--ink); transform: translateY(-2px); }
.gallery-tabs .tab-btn.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.gallery-tabs .tab-btn.active .count { background: rgba(255,255,255,.25); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 991.98px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479.98px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: .6rem; } }

.g-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; margin: 0;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper-3);
  aspect-ratio: 4 / 3; animation: gfade .45s ease both;
}
@keyframes gfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.g-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.g-card:hover img { transform: scale(1.08); }
.g-card .g-badge {
  position: absolute; top: .7rem; left: .7rem; z-index: 2; background: var(--red); color: #fff;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: .72rem; padding: .25rem .65rem; border-radius: 999px;
}
.g-card .g-zoom {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 1;
  background: rgba(16,19,25,.35); color: #fff; font-size: 1.5rem; opacity: 0; transition: opacity .25s ease;
}
.g-card:hover .g-zoom { opacity: 1; }
.gallery-empty { text-align: center; color: var(--muted); padding: 3rem 0; grid-column: 1 / -1; }

.pagination-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem; margin-top: 2.6rem; }
.pagination-bar button {
  min-width: 44px; height: 44px; padding: 0 .85rem; border-radius: 10px; cursor: pointer;
  font-family: var(--ff-head); font-weight: 600; font-size: 1rem;
  background: #fff; color: var(--ink); border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.pagination-bar button:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.pagination-bar button.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.pagination-bar button:disabled { opacity: .4; cursor: not-allowed; }
.pagination-info { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 1.1rem; }

.lightbox { position: fixed; inset: 0; z-index: 1100; background: rgba(10,11,14,.93); display: none; }
.lightbox.open { display: grid; place-items: center; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; display: grid; place-items: center;
  transition: background .2s ease;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--red); }
.lightbox .lb-close { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-cap {
  position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.85); font-family: var(--ff-head); letter-spacing: .05em; text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .lightbox .lb-prev { left: .4rem; } .lightbox .lb-next { right: .4rem; }
  .lightbox .lb-close { top: .6rem; right: .6rem; }
}

/* ============================================================
   KALİTE & TUTARLILIK İYİLEŞTİRMELERİ
   Tüm sayfalarda ortak, kurumsal ve %100 uyumlu görünüm için.
   ============================================================ */

/* Ortak panel / form başlığı — dağınık inline stiller yerine tek sınıf */
.panel-title {
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1.4rem;
  position: relative;
  padding-bottom: .85rem;
}
.panel-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 44px; height: 3px; border-radius: 2px; background: var(--red);
}

/* Değer / özellik kartı başlıkları (Hakkımızda vb.) — inline font-size gerekmez */
.svc-card > h3 { font-size: 1.2rem; text-transform: uppercase; margin: 0 0 .55rem; }

/* Değer kartlarındaki ikon dilini filo/hizmet kartlarıyla aynı hizaya getir */
.svc-card > .fleet-ico { margin-bottom: 1.1rem; }
.svc-card:hover > .fleet-ico { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-3px); }

/* Bölüm içi ince ayraç (Hizmetler sayfası makine blokları) */
.row-divider { border-bottom: 1px solid var(--line); }

/* Hizmet bölgeleri bandı — inline stiller yerine sınıf tabanlı */
.region-banner h3 { color: #fff; text-transform: uppercase; font-size: 1.3rem; margin-bottom: .25rem; letter-spacing: .01em; }
.region-banner p { color: rgba(255,255,255,.88); margin: 0; }

/* Kartlarda tam yükseklik hizası — grid içi eşit kart yükseklikleri */
.fleet-card, .svc-card, .region-chip, .step { height: 100%; }

/* Form alanlarında daha kurumsal, ölçülü his */
.form-control, .form-select, textarea.form-control {
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-control::placeholder { color: #9aa1ad; }

/* Buton oku dikey hizası netleşsin */
.btn .arrow { display: inline-block; will-change: transform; }

/* ---- WEB (geniş ekran) rafinasyon ---- */
@media (min-width: 1200px) {
  .hero h1 { max-width: 14ch; }
}

/* ---- TABLET rafinasyon ---- */
@media (max-width: 991.98px) {
  .section { padding-block: clamp(52px, 8vw, 84px); }
  .hero { padding-block: clamp(52px, 9vw, 96px); }
  .cta-band { text-align: center; }
  .cta-band .text-lg-end { text-align: center !important; }
  .region-banner { justify-content: center; text-align: center; }
}

/* ---- MOBİL rafinasyon (daha kaliteli dokunmatik deneyim) ---- */
@media (max-width: 575.98px) {
  body { font-size: .97rem; }
  .section-title { font-size: clamp(1.7rem, 7.5vw, 2.15rem); }
  .lead-muted { font-size: 1rem; }
  .eyebrow { font-size: .78rem; letter-spacing: .16em; }

  /* Aksiyon butonları mobilde tam genişlik + ortalı = net dokunma hedefi */
  .hero-cta .btn,
  .cta-band .btn,
  .region-banner .btn { width: 100%; justify-content: center; }
  .cta-band .btn + .btn { margin-top: .6rem; }

  /* Kart iç boşlukları mobilde daha dengeli */
  .fleet-card { padding: 1.6rem 1.35rem; }
  .fleet-card .fleet-media { margin: -1.6rem -1.35rem 1.2rem; height: 190px; }
  .contact-panel, .form-card, .about-visual { padding: 1.6rem 1.35rem; }


}

/* Çok küçük ekranlarda galeri sekmeleri taşmasın */
@media (max-width: 400px) {
  .gallery-tabs .tab-btn { font-size: .82rem; padding: .5rem 1rem; }
}

/* Hareket azaltma tercihine tam saygı */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}


/* ============================================================
   KONUM / HARİTA ŞERİDİ — tüm sayfalarda footer üstü
   ============================================================ */
.locmap {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding-block: clamp(48px, 6.5vw, 84px);
  border-top: 1px solid rgba(255,255,255,.07);
}
.locmap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(760px 300px at 92% 6%, rgba(216,31,20,.20), transparent 70%),
    radial-gradient(620px 280px at 4% 96%, rgba(255,255,255,.05), transparent 72%);
}
.locmap::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; z-index: 1;
  background: repeating-linear-gradient(135deg, var(--red) 0 22px, var(--ink-2) 22px 44px);
  opacity: .85;
}
.locmap > .container { position: relative; z-index: 2; }

.locmap-grid {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2.8rem); align-items: stretch;
}
@media (max-width: 991.98px) { .locmap-grid { grid-template-columns: 1fr; } }

/* --- sol bilgi kolonu --- */
.locmap-info { display: flex; flex-direction: column; }
.locmap-info .eyebrow { color: var(--red-light); }
.locmap-info .eyebrow::before { background: var(--red-light); }
.locmap-title {
  font-family: var(--ff-head); font-weight: 800; color: #fff; text-transform: uppercase;
  font-size: clamp(1.6rem, 2.9vw, 2.4rem); line-height: 1.08; letter-spacing: -.01em;
  margin: .6rem 0 .7rem;
}
.locmap-title .hl { color: var(--red-light); }
.locmap-sub { color: rgba(255,255,255,.68); margin: 0 0 1.5rem; font-size: 1.02rem; max-width: 40rem; }

.locmap-list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .7rem; }
.locmap-list li {
  display: flex; align-items: flex-start; gap: .9rem;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm); padding: .9rem 1.05rem;
  transition: border-color .22s ease, background .22s ease, transform .22s var(--ease);
}
.locmap-list li:hover { border-color: rgba(216,31,20,.5); background: rgba(255,255,255,.07); transform: translateY(-2px); }
.locmap-list .ic {
  width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: rgba(216,31,20,.16); color: var(--red-light);
  border: 1px solid rgba(216,31,20,.28); font-size: 1.05rem;
}
.locmap-list .lb {
  display: block; font-family: var(--ff-head); font-weight: 600; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.5); margin-bottom: .12rem;
}
.locmap-list .vl { color: #fff; font-weight: 500; line-height: 1.45; display: block; }
.locmap-list a.vl:hover { color: var(--red-light); }
.locmap-list .vl-strong { font-family: var(--ff-head); font-weight: 800; font-size: 1.32rem; letter-spacing: .01em; }

.locmap-areas { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1.5rem; }
.locmap-areas span {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.72); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: .3rem .78rem;
}
.locmap-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: auto; }
.locmap-actions .btn-ghost-light {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.24);
}
.locmap-actions .btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* --- sağ harita çerçevesi --- */
.locmap-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  background: var(--ink-2); min-height: 340px;
}
.locmap-frame iframe {
  display: block; width: 100%; height: 100%; min-height: 460px; border: 0;
  filter: saturate(1.05) contrast(1.02);
}
@media (max-width: 991.98px) { .locmap-frame iframe { min-height: 380px; } }
@media (max-width: 575.98px) { .locmap-frame iframe { min-height: 320px; } }

/* Harita üstüne kendi katmanımızı koymuyoruz: Google'ın işletme kartını ve
   logo/atıf alanını kapatmasın. Bağlantılar harita dışında veriliyor. */
.locmap-ext { font-size: .68em; opacity: .55; margin-left: .18rem; }
.locmap-list a.vl:hover .locmap-ext { opacity: 1; }
.locmap-maplink {
  display: inline-flex; align-items: center; gap: .45rem; align-self: center;
  color: rgba(255,255,255,.66); font-size: .86rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: .1rem;
  transition: color .2s ease, border-color .2s ease;
}
.locmap-maplink:hover { color: #fff; border-color: var(--red-light); }
.locmap-maplink i { color: var(--red-light); }

/* iletişim sayfası: açık zeminde büyük harita */
.map-wrap iframe { height: 460px; }
@media (max-width: 575.98px) { .map-wrap iframe { height: 340px; } }
.map-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .9rem 1.4rem; background: var(--ink); color: #fff; padding: 1rem 1.3rem;
}
.map-bar .mb-copy { display: flex; align-items: center; gap: .8rem; min-width: 0; }
.map-bar .mb-ico {
  width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: rgba(216,31,20,.18); color: var(--red-light); border: 1px solid rgba(216,31,20,.3);
}
.map-bar .mb-t {
  display: block; font-family: var(--ff-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: .76rem; color: rgba(255,255,255,.55);
}
.map-bar .mb-v { color: #fff; font-weight: 500; }
.map-bar .btn { flex: none; }

/* ============================================================
   YOUTUBE VİDEO BÖLÜMÜ — thumbnail kartlar, YouTube'da açar
   ============================================================ */
.ytsec { position: relative; }
.ytsec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem 2rem; margin-bottom: 2.6rem; }
.ytsec-head .lead-muted { margin-bottom: 0; }

.yt-sub {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #ff0000; color: #fff; border: 2px solid #ff0000;
  font-family: var(--ff-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; font-size: .95rem; padding: .8rem 1.5rem;
  border-radius: var(--radius-sm); box-shadow: 0 12px 28px rgba(255,0,0,.26);
  transition: transform .22s var(--ease), background .22s ease, box-shadow .22s ease;
}
.yt-sub:hover { background: #cc0000; border-color: #cc0000; color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,0,0,.32); }
.yt-sub i { font-size: 1.25rem; }

/* --- öne çıkan video --- */
.yt-feature {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.4rem); align-items: center; margin-bottom: clamp(2rem, 3.5vw, 3.2rem);
}
@media (max-width: 991.98px) { .yt-feature { grid-template-columns: 1fr; } }
.yt-feature .ytf-copy .eyebrow { margin-bottom: .3rem; }
.yt-feature .ytf-title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); text-transform: uppercase; margin: .5rem 0 .8rem; }
.yt-feature .ytf-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }

/* --- video kartı --- */
.yt-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .24s var(--ease), box-shadow .24s ease, border-color .24s ease;
}
.yt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; color: inherit; }
.section--alt .yt-card, .yt-card.on-alt { background: #fff; }

.yt-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-2); }
.yt-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease), filter .3s ease;
}
.yt-card:hover .yt-thumb img { transform: scale(1.06); }
.yt-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,14,.55) 0%, rgba(10,11,14,0) 46%);
  transition: opacity .3s ease;
}
.yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,0,0,.95); color: #fff; font-size: 1.35rem; padding-left: 4px;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  transition: transform .28s var(--ease), background .22s ease;
}
.yt-card:hover .yt-play, .yt-short:hover .yt-play { transform: translate(-50%, -50%) scale(1.12); background: #ff0000; }
.yt-dur {
  position: absolute; right: 9px; bottom: 9px; z-index: 2;
  background: rgba(10,11,14,.86); color: #fff; border-radius: 6px;
  padding: .12rem .42rem; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.yt-body { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.yt-title {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.14rem; line-height: 1.2;
  color: var(--ink); margin: 0 0 .55rem; text-transform: none; letter-spacing: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.yt-card:hover .yt-title { color: var(--red); }
.yt-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .3rem .8rem; margin-top: auto; }
.yt-meta span { font-size: .82rem; color: var(--muted); display: inline-flex; align-items: center; gap: .35rem; }
.yt-meta i { color: var(--red); font-size: .78rem; }
.yt-watch {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem;
  font-family: var(--ff-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; font-size: .84rem; color: var(--red);
}
.yt-card:hover .yt-watch .arrow { transform: translateX(4px); }

/* --- shorts rayı --- */
.yt-shorts-wrap { position: relative; }
.yt-shorts {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(196px, 1fr);
  gap: 1.1rem; overflow-x: auto; overflow-y: hidden;
  padding: .35rem .35rem 1.1rem; margin: 0 -.35rem;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
  -webkit-overflow-scrolling: touch;
}
.yt-shorts::-webkit-scrollbar { height: 8px; }
.yt-shorts::-webkit-scrollbar-track { background: var(--paper-3); border-radius: 99px; }
.yt-shorts::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }
.yt-shorts::-webkit-scrollbar-thumb:hover { background: var(--muted); }

.yt-short {
  position: relative; display: block; scroll-snap-align: start; color: #fff;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 9 / 16;
  background: var(--ink-2); box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s ease;
}
.yt-short:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: #fff; }
.yt-short img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.yt-short:hover img { transform: scale(1.07); }
.yt-short::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,14,.88) 0%, rgba(10,11,14,.12) 48%, rgba(10,11,14,.28) 100%);
}
.yt-short .ys-badge {
  position: absolute; left: 10px; top: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,0,0,.95); color: #fff; border-radius: 6px;
  padding: .18rem .5rem; font-family: var(--ff-head); font-weight: 700;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
}
.yt-short .ys-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: .9rem .85rem 1rem; }
.yt-short .ys-title {
  font-family: var(--ff-head); font-weight: 700; font-size: .96rem; line-height: 1.18; color: #fff;
  margin: 0 0 .28rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.yt-short .ys-views { font-size: .76rem; color: rgba(255,255,255,.75); display: inline-flex; align-items: center; gap: .32rem; }
.yt-short .yt-play { width: 50px; height: 50px; font-size: 1.1rem; }

.yt-hint {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--muted);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem;
}
.section--alt .yt-hint { background: #fff; }
.yt-hint i { color: var(--red); }

/* ============================================================
   ANA SAYFA HERO (v3) — sinematik, dönüşüm odaklı
   ============================================================ */
.xhero {
  position: relative; overflow: hidden; background: var(--ink); isolation: isolate;
  padding-block: clamp(38px, 4.4vw, 64px) clamp(92px, 10vw, 132px);
}
.xhero-bg { position: absolute; inset: 0; z-index: 0; }
.xhero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.xhero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,11,14,.95) 0%, rgba(10,11,14,.84) 34%, rgba(10,11,14,.54) 62%, rgba(10,11,14,.42) 100%),
    radial-gradient(720px 340px at 88% 12%, rgba(216,31,20,.28), transparent 68%);
}
.xhero-grid-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 30px);
}
.xhero > .container { position: relative; z-index: 3; }

.xhero-layout {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(1.6rem, 3vw, 3.2rem); align-items: center;
}
/* 992–1199px: tek kolona düşüp hero'yu 2 ekran boyuna çıkarmak yerine
   sıkışık iki kolon — laptop ekranlarında hero tek bakışta okunur kalır */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .xhero-layout { grid-template-columns: minmax(0, 1fr) minmax(322px, .78fr); gap: 1.5rem; }
  .xhero-badges { margin-bottom: 1.1rem; gap: .4rem; }
  .xhero-badges span { padding: .32rem .72rem; font-size: .74rem; }
  .xhero-title { font-size: clamp(1.95rem, 3.7vw, 2.7rem); }
  .xhero-rule { margin: 1.1rem 0 1rem; }
  .xhero-lead { font-size: 1rem; line-height: 1.6; }
  .xhero-cta { margin-top: 1.5rem; gap: .6rem; }
  .xhero-cta .btn-lg { padding: .88rem 1.4rem; font-size: .95rem; }
  .xhero-trust { margin-top: 1.6rem; padding-top: 1.2rem; gap: .8rem 1.4rem; }
  .xhero-trust .xt-num { font-size: 1.6rem; }
  .xhero-trust .xt-lbl { font-size: .7rem; max-width: 6.6rem; letter-spacing: .05em; }
  .xhero-form { padding: 1.25rem 1.3rem; }
  .xhf-head { margin-bottom: 1rem; gap: .7rem; }
  .xhf-head .xh-ico { width: 42px; height: 42px; font-size: 1.1rem; }
  .xhf-head h2 { font-size: 1.24rem; }
  .xhf-head p { font-size: .78rem; }
  .xhf-or { margin: .85rem 0; }
  .xhf-call { padding: .72rem 1rem; font-size: 1.16rem; }
}
@media (max-width: 991.98px) { .xhero-layout { grid-template-columns: 1fr; gap: 2.2rem; } }

/* --- üst rozetler --- */
.xhero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; }
.xhero-badges span {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9); border-radius: 999px; padding: .4rem .9rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  backdrop-filter: blur(6px);
}
.xhero-badges span i { color: var(--red-light); font-size: .82rem; }
.xhero-badges .xb-live { border-color: rgba(41,194,106,.4); background: rgba(41,194,106,.14); }
.xhero-badges .xb-live i { color: #34d675; }
.xhero-badges .xb-star i { color: var(--amber); }

.xhero-title {
  font-family: var(--ff-head); font-weight: 800; color: #fff; text-transform: uppercase;
  font-size: clamp(2.3rem, 5.1vw, 4.25rem); line-height: .98; letter-spacing: -.02em; margin: 0;
}
.xhero-title .ln { display: block; }
.xhero-title .hl { color: var(--red-light); }
.xhero-title .thin { font-weight: 500; color: rgba(255,255,255,.82); }
.xhero-rule { width: 74px; height: 4px; background: var(--red); border-radius: 3px; margin: 1.5rem 0 1.3rem; }
.xhero-lead {
  color: rgba(255,255,255,.78); font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.68; max-width: 36rem; margin: 0;
}
.xhero-lead strong { color: #fff; font-weight: 600; }

.xhero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2rem; }
.xhero-cta .btn-lg { padding: 1.05rem 2rem; font-size: 1.04rem; }
.xhero-cta .btn-glass {
  background: rgba(255,255,255,.1); color: #fff; border: 2px solid rgba(255,255,255,.26);
  backdrop-filter: blur(8px);
}
.xhero-cta .btn-glass:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }

.xhero-trust { list-style: none; margin: 2.2rem 0 0; padding: 1.6rem 0 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem clamp(1.6rem, 3.4vw, 3rem); }
.xhero-trust li { display: flex; align-items: center; gap: .7rem; }
.xhero-trust .xt-num {
  font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: #fff; line-height: 1; letter-spacing: -.02em;
}
.xhero-trust .xt-num span { color: var(--red-light); }
.xhero-trust .xt-lbl {
  font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase;
  letter-spacing: .07em; font-weight: 600; line-height: 1.25; max-width: 8.5rem;
}

/* --- sağ: hızlı teklif kartı --- */
.xhero-form {
  background: rgba(255,255,255,.98); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.5); box-shadow: 0 34px 80px rgba(0,0,0,.5);
  padding: clamp(1.5rem, 2.2vw, 2.1rem); position: relative; overflow: hidden;
}
.xhero-form::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber));
}
.xhf-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.3rem; }
.xhf-head .xh-ico {
  width: 48px; height: 48px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--red), var(--red-deep)); color: #fff; font-size: 1.25rem;
  box-shadow: 0 10px 22px rgba(216,31,20,.3);
}
.xhf-head h2 { font-size: 1.42rem; text-transform: uppercase; margin: 0 0 .1rem; letter-spacing: -.005em; }
.xhf-head p { margin: 0; font-size: .84rem; color: var(--muted); line-height: 1.4; }
.xhero-form .form-label-sm {
  display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--steel); margin-bottom: .3rem;
}
.xhero-form .form-control, .xhero-form .form-select {
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .7rem .9rem; font-size: .95rem;
}
.xhero-form .form-control:focus, .xhero-form .form-select:focus {
  border-color: var(--red); box-shadow: 0 0 0 4px rgba(216,31,20,.1);
}
.xhero-form .btn { width: 100%; justify-content: center; }
.xhero-form .row { --bs-gutter-y: .8rem; }
.xhf-foot {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin-top: .7rem; font-size: .78rem; color: var(--muted); text-align: center;
}
.xhf-foot i { color: #29c26a; }
.xhf-or {
  display: flex; align-items: center; gap: .8rem; margin: .8rem 0;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600;
}
.xhf-or::before, .xhf-or::after { content: ""; height: 1px; background: var(--line); flex: 1 1 auto; }
.xhf-call {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--ink); color: #fff; border-radius: var(--radius-sm); padding: .85rem 1rem;
  font-family: var(--ff-head); font-weight: 800; font-size: 1.28rem; letter-spacing: .02em;
  transition: background .22s ease, transform .22s var(--ease);
}
.xhf-call:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
/* kısa (laptop) ekranlarda hero tek bakışta bitsin */
@media (min-width: 992px) and (max-height: 780px) {
  .xhero { padding-block: clamp(30px, 3.4vw, 46px) clamp(88px, 9vw, 118px); }
  .xhero-badges { margin-bottom: 1rem; }
  .xhero-rule { margin: 1rem 0 .9rem; }
  .xhero-trust { margin-top: 1.5rem; padding-top: 1.15rem; }
  .xhero-form { padding: 1.3rem 1.4rem; }
  .xhf-call { padding: .74rem 1rem; }
}
.xhf-call i { font-size: 1rem; }

/* --- hero altı makine seçici --- */
.xhero-pick { position: relative; z-index: 4; margin-top: clamp(-78px, -8vw, -110px); }
.xhero-pick .xp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.9rem, 1.6vw, 1.4rem); }
@media (max-width: 767.98px) { .xhero-pick .xp-grid { grid-template-columns: 1fr; } }
.xp-card {
  display: flex; align-items: center; gap: 1rem; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.25rem; box-shadow: var(--shadow-md);
  transition: transform .24s var(--ease), box-shadow .24s ease, border-color .24s ease;
}
.xp-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); color: inherit; }
.xp-card .xp-img {
  width: 78px; height: 68px; flex: none; border-radius: 11px; overflow: hidden; background: var(--paper-3);
}
.xp-card .xp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.xp-card:hover .xp-img img { transform: scale(1.09); }
.xp-card .xp-txt { min-width: 0; }
.xp-card h3 { font-size: 1.14rem; text-transform: uppercase; margin: 0 0 .18rem; }
.xp-card:hover h3 { color: var(--red); }
.xp-card p { margin: 0; font-size: .83rem; color: var(--muted); line-height: 1.4; }
.xp-card .xp-go {
  margin-left: auto; flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--red-soft); color: var(--red);
  border: 1px solid rgba(216,31,20,.15); font-size: .9rem;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.xp-card:hover .xp-go { background: var(--red); color: #fff; transform: translateX(3px); }

@media (max-width: 991.98px) {
  .xhero { padding-block: clamp(36px, 7vw, 60px) clamp(80px, 12vw, 120px); }
  .xhero-trust { gap: 1.1rem 2rem; }
  .xhero-trust .xt-lbl { max-width: 7.5rem; }
}
@media (max-width: 575.98px) {
  .xhero-cta .btn { width: 100%; justify-content: center; }
  .xhero-trust { justify-content: space-between; }
  .xhero-trust li { flex: 0 0 auto; }
  .xhero-trust .xt-num { font-size: 1.6rem; }
  .xhero-trust .xt-lbl { font-size: .7rem; max-width: 6.5rem; }
  .locmap-actions .btn { width: 100%; justify-content: center; }
  .map-bar { flex-direction: column; align-items: stretch; }
  .map-bar .btn { width: 100%; justify-content: center; }
  .ytsec-head .yt-sub { width: 100%; justify-content: center; }
}

/* ============================================================
   GÜVEN ŞERİDİ + SEKTÖR KARTLARI (ana sayfa)
   ============================================================ */
.trust-strip { background: var(--ink-2); padding-block: 1.1rem; overflow: hidden; }
.trust-strip .ts-in {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .6rem clamp(1.2rem, 3vw, 2.6rem);
}
.trust-strip .ts-item {
  display: inline-flex; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.78); font-family: var(--ff-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .86rem;
}
.trust-strip .ts-item i { color: var(--red-light); font-size: .95rem; }

.sector-card {
  display: block; height: 100%; color: inherit; position: relative; overflow: hidden;
  border-radius: var(--radius); background: var(--ink-2); min-height: 240px;
  box-shadow: var(--shadow-sm); transition: transform .26s var(--ease), box-shadow .26s ease;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: inherit; }
.sector-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.sector-card:hover img { transform: scale(1.08); }
.sector-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,14,.92) 0%, rgba(10,11,14,.25) 55%, rgba(10,11,14,.1) 100%);
}
.sector-card .sc-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.35rem; }
.sector-card .sc-ico {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(216,31,20,.9); color: #fff; margin-bottom: .8rem; font-size: 1.05rem;
}
.sector-card h3 { color: #fff; font-size: 1.18rem; text-transform: uppercase; margin: 0 0 .25rem; }
.sector-card p { color: rgba(255,255,255,.76); margin: 0; font-size: .87rem; line-height: 1.45; }

/* Shorts: sayfa içi tam grid varyantı (raysız) */
.yt-shorts.as-grid {
  grid-auto-flow: row; grid-auto-columns: auto;
  grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
  overflow: visible; scroll-snap-type: none; padding: 0; margin: 0;
}
@media (max-width: 575.98px) {
  .yt-shorts.as-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
}

/* Videolar sayfası başlık bloğu */
.vid-head { background: var(--ink); position: relative; overflow: hidden; padding-block: clamp(44px, 6vw, 76px); }
.vid-head::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 300px at 88% 8%, rgba(255,0,0,.22), transparent 70%);
}
.vid-head > .container { position: relative; z-index: 2; }
.vid-head .eyebrow { color: var(--red-light); }
.vid-head .eyebrow::before, .vid-head .eyebrow::after { background: var(--red-light); }
.vid-head h1 {
  color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); text-transform: uppercase;
  margin: .6rem 0 .8rem; letter-spacing: -.015em;
}
.vid-head p { color: rgba(255,255,255,.72); max-width: 46rem; margin: 0 0 1.6rem; font-size: 1.05rem; }
.vid-head .vh-stats { list-style: none; margin: 1.7rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem clamp(1.6rem, 3.4vw, 3rem); }
.vid-head .vh-stats li { display: flex; flex-direction: column; }
.vid-head .vh-stats strong { font-family: var(--ff-head); font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.vid-head .vh-stats strong span { color: var(--red-light); }
.vid-head .vh-stats small { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-top: .3rem; }

/* ============================================================
   NAV — 8 menü öğesiyle taşmayı önleyen rafinasyon
   ============================================================ */
.main-nav { min-width: 0; }
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-nav .nav-link { font-size: .92rem; padding: .5rem .52rem; letter-spacing: .03em; }
  .site-nav .nav-link::after { left: .52rem; right: .52rem; }
  .nav-cta .btn-outline-ink { display: none; }
  .site-nav .navbar-brand img { height: 52px; }
  .site-nav.scrolled .navbar-brand img { height: 46px; }
}
@media (min-width: 1400px) {
  .site-nav .nav-link { padding: .55rem .68rem; }
  .site-nav .nav-link::after { left: .68rem; right: .68rem; }
}

.yt-subhead { margin: 0; font-size: 1.35rem; text-transform: uppercase; letter-spacing: -.005em; }
