: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 { position: relative; background: var(--ink); color: rgba(255,255,255,.68); padding-top: clamp(52px,7vw,84px); }
.footer-logo {
  display: inline-block; width: auto; background: #fff;
  padding: .7rem .9rem; border-radius: 12px; box-shadow: var(--shadow-sm);
}
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 40%, transparent 40%, transparent 100%); }
.site-footer p { color: rgba(255,255,255,.6); }
.site-footer h4 { position: relative; color: #fff; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .06em; margin-bottom: 1.15rem; padding-bottom: .6rem; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--red); }
.foot-links li a { transition: color .18s ease, transform .18s ease; }
.foot-links li a:hover { transform: translateX(3px); }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: #fff; }
.site-footer .btn-outline-ink { border-color: rgba(255,255,255,.24); color: #fff; }
.site-footer .btn-red, .site-footer .btn-red:hover, .site-footer .btn-red i { color: #fff; }
.site-footer .btn-outline-ink:hover, .site-footer .btn-outline-ink:hover i { color: var(--ink); background: #fff; border-color: #fff; }
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { padding: .32rem 0; }
.foot-links li a { display: inline-flex; align-items: center; gap: .5rem; }
.foot-links li a i { color: var(--red); font-size: .85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.6rem; padding: 1.5rem 0; font-size: .86rem; color: rgba(255,255,255,.5); }

.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); }

/* Footer'daki bağlantısız metin ikonları (adres, saat) tutarlı kırmızı */
.foot-links li > i { color: var(--red); width: 16px; text-align: center; }

/* 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; }
}
