/* ---------- Değişkenler ---------- */
:root {
  --red: #D7263D;
  --red-dark: #B01E30;
  --red-bg: #FCEBEB;
  --green: #25D366;
  --green-dark: #1DA851;
  --ink: #1F2937;
  --ink-soft: #4B5563;
  --white: #FFFFFF;
  --asphalt: #2B2B30;
  --asphalt-dark: #1C1C20;
  --lane: #FFD23F;
  --blue-bg: #EAF6FB;
  --blue: #0284C7;
  --blue-dark: #026593;
  --star: #F5A623;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 14px 32px rgba(0, 0, 0, 0.16);
  --section-pad: clamp(3rem, 2rem + 5vw, 7.5rem);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3 { margin: 0 0 0.5em; line-height: 1.2; }

h2 { font-size: clamp(1.5rem, 1.15rem + 1.3vw, 2.25rem); }

p { margin: 0 0 0.75em; }

a { color: inherit; }

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex-shrink: 0;
}

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

/* ---------- Genel içerik konteyneri ---------- */
/* Bölüm arka planları tam genişlikte akar; içerik bu konteynerde ortalanır. */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25em;
}
.container--narrow { max-width: 760px; }

.section-pad { padding-block: var(--section-pad); }
.alt-bg { background: #F9FAFB; }
.section-cta { text-align: center; margin-top: 2.5em; }

.eyebrow {
  display: inline-block;
  color: var(--red-dark);
  background: var(--red-bg);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  margin-bottom: 0.75em;
}
.eyebrow--blue { color: var(--blue-dark); background: rgba(2, 132, 199, 0.1); }
.eyebrow--dark { color: #FF8496; background: rgba(255, 255, 255, 0.08); }

/* ---------- Fotoğraf çerçevesi (gerçek foto yoksa şık yer tutucu) ---------- */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #E5E7EB, #E5E7EB 10px, #EDEEF0 10px, #EDEEF0 20px);
  box-shadow: var(--shadow);
}
.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame--wide { aspect-ratio: 16 / 9; }
.media-frame--empty::after {
  content: attr(data-empty-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 1em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0.75em 1em;
  z-index: 200;
}
.skip-link:focus {
  left: 1em;
  top: 1em;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* ---------- Fade-in (scroll ile görünürlük) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hover ile hafif yükselme ---------- */
.lift-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lift-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ---------- Buton stilleri ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 0.9em 1.4em;
  min-height: 56px;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16); }
.btn:active { transform: scale(0.97); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { filter: brightness(1.08); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { filter: brightness(1.06); }
.btn--lg { width: 100%; font-size: 1.1rem; }
.btn--mini { min-height: 36px; padding: 0.4em 0.9em; font-size: 0.85rem; border-radius: 8px; }
.btn--mini:hover { transform: translateY(-1px); }

/* ---------- Site header / navigasyon ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.site-header__bar {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6em 1.25em;
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: auto;
  min-width: 0;
}
.site-header__logo {
  height: 38px;
  width: 38px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  padding: 0.25em 1.25em 1em;
  max-height: calc(100vh - 100%);
  overflow-y: auto;
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.site-nav a,
.site-nav summary {
  display: block;
  padding: 0.85em 0.25em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.site-nav summary::-webkit-details-marker { display: none; }
.site-nav summary { display: flex; align-items: center; justify-content: space-between; }
.site-nav summary::after { content: "▾"; color: var(--ink-soft); font-size: 0.8em; }
.site-nav details[open] summary::after { content: "▴"; }
.site-nav details ul { padding-left: 1em; }
.site-nav a:hover,
.site-nav summary:hover { color: var(--red-dark); }
.site-nav a[aria-current="page"] {
  color: var(--red-dark);
  border-bottom: 2px solid var(--red);
}

.site-header__actions {
  display: flex;
  gap: 0.5em;
  flex-shrink: 0;
  align-items: center;
}
.header-wa { display: none; }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 480px) {
  .header-wa { display: inline-flex; }
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
  .site-nav {
    display: flex !important;
    position: static;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
  }
  .site-nav ul { flex-direction: row; gap: 0.25em; align-items: center; }
  .site-nav a, .site-nav summary { padding: 0.5em 0.75em; }
  .site-nav details { position: relative; }
  .site-nav details ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 0.4em;
    min-width: 190px;
    flex-direction: column;
    gap: 0;
    z-index: 10;
  }
  .site-nav details ul a { padding: 0.6em 0.75em; border-radius: 6px; }
  .site-nav details ul a:hover { background: var(--red-bg); }
}

/* ---------- İç sayfa hero (üst banner) ---------- */
.page-hero {
  background: var(--red-bg);
  padding-block: var(--section-pad);
  text-align: center;
}
.page-hero__logo {
  width: min(260px, 55vw);
  height: auto;
  margin: 0 auto 1.25em;
  display: block;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 1.4rem + 2vw, 3rem);
}
.page-hero__lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Hizmet detay sayfası ---------- */
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.service-detail {
  background: var(--white);
  border: 1px solid #EEE;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2em;
  scroll-margin-top: 90px;
}
.service-detail__icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  margin-bottom: 0.5em;
}
.service-detail p { color: var(--ink-soft); }
.service-detail .btn { margin-top: 0.5em; }

/* ---------- Hero ---------- */
.hero {
  background: var(--red-bg);
  padding: 1.5em 1em 3em;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acil-kart {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2em 1.25em 1.5em;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.acil-kart__border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.acil-kart__border rect {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.2;
  stroke-dasharray: 6 5;
  animation: dash-march 18s linear infinite;
}
@keyframes dash-march {
  to { stroke-dashoffset: -400; }
}

.acil-kart__badge {
  position: absolute;
  top: 0.9em;
  right: 0.9em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-dark);
  background: var(--red-bg);
  padding: 0.3em 0.6em;
  border-radius: 999px;
}
.blink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.acil-kart__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  margin: 0 auto 0.75em;
  animation: pulse 2.2s ease-in-out infinite;
}
.acil-kart__icon .icon { width: 34px; height: 34px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(215, 38, 61, 0); }
}

.acil-kart h1 {
  font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.75rem);
  color: var(--ink);
}
.acil-kart__trust {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.acil-kart__phone {
  display: block;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 800;
  color: var(--red-dark);
  text-decoration: none;
  margin: 0.5em 0 1em;
  letter-spacing: 0.01em;
}

.acil-kart__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin-bottom: 1em;
}

.acil-kart__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}
.acil-kart__location .icon { width: 1em; height: 1em; color: var(--red); }

.hero__media { display: none; width: 100%; }

/* ---------- Yüzen arama butonu ---------- */
.floating-call {
  position: fixed;
  right: 1em;
  bottom: 6.5em;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.floating-call .icon { width: 26px; height: 26px; }

/* ---------- Yol şeridi (çekici animasyonu) ---------- */
.road {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  z-index: 60;
  overflow: hidden;
  pointer-events: none;
}
.road__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.road__asphalt { fill: var(--asphalt); }
.road__line {
  stroke: var(--lane);
  stroke-width: 3;
  stroke-dasharray: 14 10;
}
.road__truck {
  position: absolute;
  left: -10px;
  bottom: 6px;
  will-change: transform;
}
.truck__cabin { fill: var(--red); }
.truck__window { fill: #BEE3F8; }
.truck__cabin-text {
  font-size: 7px;
  fill: var(--white);
  font-family: var(--font);
  font-weight: 700;
}
.truck__box { fill: #C9CDD3; stroke: #9AA0AA; stroke-width: 1; }
.truck__box-text {
  font-size: 8px;
  fill: var(--asphalt-dark);
  font-family: var(--font);
  font-weight: 700;
}
.truck__wheel { fill: var(--asphalt-dark); }
.truck__hub { fill: #C9CDD3; }
.truck__spoke { stroke: #C9CDD3; stroke-width: 1.4; }
.truck__wheel-group { transform-origin: center; transform-box: fill-box; }

.road__flag {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: var(--lane);
}
.road__flag .icon { width: 28px; height: 28px; }

/* ---------- Fiyat şeffaflığı şeridi ---------- */
.price-strip {
  background: var(--red-bg);
  border-top: 1px solid rgba(215, 38, 61, 0.15);
  border-bottom: 1px solid rgba(215, 38, 61, 0.15);
  padding: 0.9em 0;
}
.price-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  text-align: center;
}
.price-strip__inner .icon { color: var(--red); width: 1.2em; height: 1.2em; }
.price-strip p {
  margin: 0;
  font-weight: 700;
  color: var(--red-dark);
  font-size: 0.95rem;
}

/* ---------- Neden Çelik Oto Kurtarma (koyu bant) ---------- */
.why-us {
  background: #202124;
  color: #F5F5F6;
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5em;
  align-items: center;
}
.why-us__media { position: relative; }
.why-us__frame {
  position: relative;
  z-index: 1;
}
.why-us__media::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  z-index: 0;
}
.why-us__content h2 { color: #FFFFFF; }
.why-us__lead {
  color: rgba(245, 245, 246, 0.75);
  font-size: 1rem;
}
.why-us__checklist {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85em;
}
.why-us__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65em;
  font-size: 0.95rem;
  font-weight: 600;
}
.why-us__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1em;
}
.why-us__check .icon { width: 13px; height: 13px; }

.why-us__strip {
  background: var(--red);
  border-radius: var(--radius);
  padding: 1.25em 1.5em;
  display: flex;
  align-items: center;
  gap: 1.25em;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.why-us__strip-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us__strip-icon .icon { width: 28px; height: 28px; }
.why-us__strip-info {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.why-us__strip-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}
.why-us__strip-phone {
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2rem);
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
}
.why-us__strip-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-left: auto;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.6em 1em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}
.why-us__strip-wa:hover { background: rgba(255, 255, 255, 0.28); }

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: 5fr 7fr;
    gap: 4em;
  }
  .why-us__checklist { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Hizmetler ---------- */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5em;
}
.section-head p:last-child { color: var(--ink-soft); margin-bottom: 0; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  align-items: stretch;
}
.service-card {
  background: var(--white);
  border: 1px solid #EEE;
  border-radius: var(--radius);
  padding: 1.5em;
  box-shadow: var(--shadow);
  height: 100%;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 0.5em;
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.service-card__link {
  display: inline-block;
  margin-top: 0.75em;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-dark);
  text-decoration: none;
}
.service-card__link:hover { text-decoration: underline; }

/* ---------- Nasıl Çalışır ---------- */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
.step { text-align: center; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.6em;
}
.step__icon { color: var(--red); margin-bottom: 0.4em; }
.step__icon .icon { width: 32px; height: 32px; }
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }
.step__hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: #F3F4F6;
  padding: 0.6em 0.9em;
  border-radius: 8px;
  margin-top: 0.5em;
}

/* ---------- Araçlarımız ---------- */
.vehicles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
}
.vehicle-card { text-align: center; }
.vehicle-card h3 {
  margin-top: 0.75em;
  font-size: 1.1rem;
}

/* ---------- Neden biz ---------- */
.trust { background: #F9FAFB; }
.trust__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  margin-bottom: 2em;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25em;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat__num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red-dark);
}
.stat__label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.trust__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
.photo-placeholder {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, #E5E7EB, #E5E7EB 10px, #EDEEF0 10px, #EDEEF0 20px);
  border-radius: var(--radius);
}

/* ---------- Müşteri yorumları ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5em;
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial-card__stars {
  color: var(--star);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
}
.testimonial-card p { font-style: italic; margin: 0 0 0.75em; }
.testimonial-card cite { font-size: 0.85rem; color: var(--ink-soft); font-style: normal; font-weight: 700; }
.testimonials__cta {
  text-align: center;
  margin-top: 2em;
}
.testimonials__cta a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: none;
}
.testimonials__cta a:hover { text-decoration: underline; }

/* ---------- Hizmet bölgesi ---------- */
.area {
  text-align: center;
}
.area__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
  padding: 0;
  margin: 0 0 1.5em;
}
.area__list a {
  display: inline-block;
  background: var(--red-bg);
  color: var(--red-dark);
  font-weight: 700;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.area__list a:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

/* ---------- SSS akordeon ---------- */
.faq__list { max-width: 100%; }
.faq__item {
  background: var(--white);
  border: 1px solid #EEE;
  border-radius: 12px;
  padding: 1em 1.25em;
  margin-bottom: 0.75em;
  box-shadow: var(--shadow);
}
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--red);
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p {
  margin: 0.75em 0 0;
  color: var(--ink-soft);
}

/* ---------- İletişim / künye kartı ---------- */
.kunye-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.kunye-row {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1em 1.25em;
  border-bottom: 1px solid #EEE;
}
.kunye-row:last-child { border-bottom: none; }
.kunye-row__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kunye-row__icon .icon { width: 20px; height: 20px; }
.kunye-row__text {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  min-width: 0;
}
.kunye-row__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kunye-row__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.kunye-row__value a {
  color: var(--red-dark);
  text-decoration: none;
}
.kunye-row__value a:hover { text-decoration: underline; }
a.kunye-row--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.kunye-row--link:hover,
a.kunye-row--link:focus-visible {
  background: #FAFAFA;
}
.kunye-row__directions {
  align-self: flex-start;
  margin-top: 0.3em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red-dark);
  text-decoration: none;
}
.kunye-row__directions:hover { text-decoration: underline; }

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  max-width: 420px;
  margin: 0 auto 2.5em;
}
@media (min-width: 640px) {
  .contact-actions { flex-direction: row; max-width: none; }
}

.carwash__gallery { margin-top: var(--section-pad); }
.carwash__gallery-title { text-align: center; color: var(--blue-dark); }
.carwash__gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-top: 1.5em;
}

/* ---------- Oto yıkama ---------- */
.carwash {
  background: var(--blue-bg);
  position: relative;
  overflow: hidden;
}
.carwash::before,
.carwash::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.08);
}
.carwash::before {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -60px;
}
.carwash::after {
  width: 240px;
  height: 240px;
  bottom: -100px;
  right: -80px;
}
.carwash__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.carwash h2 { color: var(--blue-dark); }
.carwash__address { color: var(--ink-soft); }
.carwash__services {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6em;
}
.carwash__services li {
  background: var(--white);
  border-radius: 10px;
  padding: 0.75em 1em;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.1);
}
.carwash__hours { margin-bottom: 1.25em; color: var(--ink-soft); }
.carwash .btn--green { background: var(--green); }

/* ---------- Footer ---------- */
.footer {
  background: var(--asphalt-dark);
  color: #D1D5DB;
  text-align: center;
  padding: 3em 1.25em 6em;
  font-size: 0.9rem;
}
.footer__logo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  margin: 0 auto 1em;
  display: block;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.footer__name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.footer a { color: var(--white); text-decoration: underline; }
.footer__regions-label {
  margin-top: 1.5em;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
}
.footer__regions {
  max-width: 640px;
  margin: 0.25em auto 0;
  line-height: 2;
}
.footer__regions a { text-decoration: none; }
.footer__regions a:hover { text-decoration: underline; color: var(--lane); }
.footer__copy {
  margin-top: 1.5em;
  font-size: 0.8rem;
  color: #9CA3AF;
}
.footer__signature {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1em;
  margin-top: 2em;
}
.footer__signature a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.75rem;
  color: #8A8F98;
  text-decoration: none;
  padding: 0.5em;
}
.footer__signature a:hover { color: #C9CDD3; }
.footer__signature .icon { width: 14px; height: 14px; }

/* ---------- Bölge (ilçe) sayfaları ---------- */
.district-content { padding-block: var(--section-pad); }
.district-content h2 { text-align: left; }
.hikaye__photo { max-width: 480px; margin: 1.5em auto; }
.district-photo { margin: 1.5em 0 2em; }
.district-content p { color: var(--ink-soft); }
.district-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  padding: 0;
  margin: 1em 0 0;
}
.district-links a {
  display: inline-block;
  background: var(--red-bg);
  color: var(--red-dark);
  font-weight: 700;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
}
.district-links a:hover { background: var(--red); color: var(--white); }
.district-services {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6em;
}
.district-services li {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 0.75em 1em;
  font-size: 0.95rem;
}
@media (min-width: 640px) {
  .district-services { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Tablet / masaüstü ---------- */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__stats { grid-template-columns: repeat(3, 1fr); }
  .trust__gallery { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .carwash__services { grid-template-columns: repeat(2, 1fr); }
  .acil-kart__actions { flex-direction: row; }
}

@media (min-width: 900px) {
  .services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .carwash__gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3.5em;
    text-align: left;
  }
  .acil-kart {
    text-align: left;
    flex: 1 1 460px;
    max-width: 480px;
  }
  .acil-kart__icon { margin: 0 0 0.75em; }
  .acil-kart__location { justify-content: flex-start; }
  .hero__media {
    display: block;
    flex: 1 1 480px;
    max-width: 560px;
  }
}

@media (min-width: 1200px) {
  .services__grid { grid-template-columns: repeat(5, 1fr); gap: 0.85em; }
  .service-card { padding: 1.15em; }
  .service-card__icon { width: 32px; height: 32px; margin-bottom: 0.4em; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.88rem; }
}

/* ---------- Erişilebilirlik: hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .acil-kart__border rect,
  .blink-dot,
  .acil-kart__icon {
    animation: none !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .truck__wheel-group,
  .road__truck {
    transition: none !important;
  }
}
