/* Sağlam Oto Kurtarıcı — tasarım v2 */
:root {
  --red: #e11d2e;
  --red-2: #ff4d3d;
  --red-dark: #b01020;
  --navy: #0d1017;
  --navy-2: #141926;
  --amber: #ffb020;
  --light: #f6f7fb;
  --text: #1c2130;
  --muted: #5d6474;
  --border: #e6e8ef;
  --radius: 18px;
  --maxw: 1140px;
  --grad: linear-gradient(135deg, #e11d2e 0%, #ff4d3d 100%);
  --shadow: 0 10px 30px rgba(13,16,23,.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand strong { font-family: "Sora", "Inter", sans-serif; letter-spacing: -.02em; }
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* İkonlar */
.ic {
  width: 1.15em; height: 1.15em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.18em;
  flex: none;
}
.ic-lg { width: 42px; height: 42px; }

/* Üst bant */
.topbar {
  background: var(--grad);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.topbar a { color: #fff; font-weight: 800; }

/* Header */
header.site {
  background: rgba(13,16,23,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; flex-direction: column; line-height: 1.12; }
.brand strong { font-size: 19px; color: #fff; letter-spacing: .02em; }
.brand strong span.red { color: var(--red-2); }
.brand > span { font-size: 11.5px; color: #9aa1b1; font-weight: 600; letter-spacing: .04em; }
nav.main { display: flex; gap: 4px; align-items: center; }
nav.main > a, nav.main .dropdown > a {
  color: #d7dae2;
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 13px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
nav.main > a:hover, nav.main .dropdown > a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }

/* Açılır menü */
nav.main .dropdown { position: relative; }
nav.main .dropdown > a::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px;
  transition: transform .2s;
}
nav.main .dropdown .menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 268px;
  box-shadow: 0 18px 50px rgba(13,16,23,.18);
  z-index: 120;
}
nav.main .dropdown .menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
nav.main .dropdown:hover .menu,
nav.main .dropdown:focus-within .menu { display: block; }
nav.main .dropdown .menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-radius: 9px;
}
nav.main .dropdown .menu a:hover { background: var(--light); color: var(--red); text-decoration: none; }
nav.main .dropdown .menu a.all { border-top: 1px solid var(--border); color: var(--red); margin-top: 6px; border-radius: 0 0 9px 9px; }

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(225,29,46,.35);
  transition: transform .18s, box-shadow .18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(225,29,46,.45); }
.btn.ghost { background: transparent; color: var(--red) !important; border: 2px solid var(--red); box-shadow: none; }
.btn.ghost:hover { background: var(--red); color: #fff !important; }
.btn.wa { background: linear-gradient(135deg, #1fa855, #2ecc71); box-shadow: 0 8px 24px rgba(31,168,85,.35); }
.btn.wa:hover { box-shadow: 0 12px 30px rgba(31,168,85,.45); }
header.site .btn { padding: 10px 20px; font-size: 14px; }

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(13,16,23,.94) 0%, rgba(13,16,23,.78) 45%, rgba(225,29,46,.38) 100%),
    url("../img/saglam-oto-kurtarici-cekici-adapazari.jpeg") center 40%/cover no-repeat;
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 70px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.12;
  max-width: 820px;
  font-weight: 800;
}
.hero h1 .accent { color: var(--red-2); }
.hero p.lead { margin: 20px 0 30px; font-size: clamp(15.5px, 2vw, 18.5px); color: #cfd3dd; max-width: 700px; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.hero .badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
}
.hero .badges .ic { color: var(--amber); }

/* Bölümler */
section { padding: 72px 0; }
section.alt { background: var(--light); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(25px, 3.2vw, 36px); line-height: 1.2; font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 12px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12.5px;
  margin-bottom: 12px;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--grad); border-radius: 2px; }

/* Kartlar */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .imgwrap { overflow: hidden; }
.card img { height: 210px; object-fit: cover; width: 100%; transition: transform .35s; }
.card:hover img { transform: scale(1.05); }
.card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card h3 { font-size: 18px; line-height: 1.32; display: flex; align-items: flex-start; gap: 10px; }
.card h3 .ic { color: var(--red); width: 1.25em; height: 1.25em; margin-top: 2px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .more { margin-top: auto; font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }

/* Özellik kutuları */
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .22s, box-shadow .22s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature .fic {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(225,29,46,.12), rgba(255,77,61,.16));
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}
.feature .fic .ic { width: 26px; height: 26px; }
.feature h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a, .chips span {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, color .15s, transform .15s;
}
.chips a:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* SSS */
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow); border-color: rgba(225,29,46,.35); }
.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 15.5px;
  font-family: "Sora", sans-serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--red);
  font-weight: 400;
  transition: transform .2s;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--muted); }

/* Makale */
.article { max-width: 800px; margin: 0 auto; }
.article h1 { font-size: clamp(27px, 3.6vw, 40px); line-height: 1.18; margin-bottom: 14px; font-weight: 800; }
.article .meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.article h2 { font-size: 24px; margin: 38px 0 14px; font-weight: 800; }
.article h3 { font-size: 19px; margin: 28px 0 10px; }
.article p { margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 16px 22px; }
.article li { margin-bottom: 8px; }
.article img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); }
.article blockquote {
  border-left: 4px solid var(--red);
  background: linear-gradient(135deg, rgba(225,29,46,.05), rgba(255,77,61,.07));
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 0 0 16px;
  font-weight: 600;
}
.article table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 15px; }
.article th, .article td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.article th { background: var(--light); font-family: "Sora", sans-serif; font-size: 14px; }

/* CTA kutusu */
.cta-box {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 32px;
  margin: 32px 0;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(225,29,46,.4), transparent 70%);
}
.cta-box h3 { color: #fff; margin: 0 0 8px; font-size: 21px; position: relative; }
.cta-box p { color: #b9bec9; margin-bottom: 18px; position: relative; }
.cta-box .btn { position: relative; }

/* Breadcrumb */
.breadcrumb { font-size: 13.5px; color: var(--muted); margin: 0 0 10px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }

/* Galeri */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img {
  border-radius: 14px;
  height: 185px;
  width: 100%;
  object-fit: cover;
  transition: transform .25s, box-shadow .25s;
}
.gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow); }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 30px; }
.contact-card h3 { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-card h3 .ic { color: var(--red); }
.contact-card p { margin-bottom: 10px; color: var(--muted); }
.contact-card strong { color: var(--text); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
footer.site {
  background: var(--navy);
  color: #a7adbb;
  padding: 60px 0 96px;
  font-size: 14.5px;
  border-top: 4px solid;
  border-image: var(--grad) 1;
}
footer.site h4 { color: #fff; margin-bottom: 16px; font-size: 15.5px; }
footer.site a { color: #a7adbb; }
footer.site a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; display: flex; align-items: flex-start; gap: 8px; }
.footer-grid li .ic { color: var(--red-2); margin-top: 4px; }
.copyright { border-top: 1px solid rgba(255,255,255,.09); margin-top: 40px; padding-top: 20px; font-size: 13px; color: #767d8c; }

/* Sabit arama çubuğu (mobil) */
.call-fab {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 200;
  display: none;
  gap: 10px;
}
.call-fab a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15.5px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.call-fab .tel { background: var(--grad); }
.call-fab .wa { background: linear-gradient(135deg, #1fa855, #2ecc71); }

/* Mobil */
#nav-toggle { display: none; }
label.burger { display: none; font-size: 26px; cursor: pointer; color: #fff; }
@media (max-width: 960px) {
  .grid.cols-3, .grid.cols-2, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  nav.main {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-2);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    gap: 4px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  #nav-toggle:checked ~ nav.main { display: flex; }
  label.burger { display: block; }
  header.site .btn { display: none; }
  .call-fab { display: flex; }
  footer.site { padding-bottom: 120px; }
  nav.main > a, nav.main .dropdown > a { padding: 12px 14px; font-size: 15.5px; }
  nav.main .dropdown > a { width: 100%; justify-content: space-between; }
  /* Mobilde akordeon: sadece .open olunca göster */
  nav.main .dropdown .menu {
    display: none;
    position: static;
    border: 0;
    box-shadow: none;
    padding: 2px 0 6px 12px;
    min-width: 0;
    background: transparent;
  }
  nav.main .dropdown.open .menu { display: block; }
  nav.main .dropdown.open > a::after { transform: rotate(-135deg) translateY(-2px); }
  nav.main .dropdown .menu a { color: #c3c8d4; padding: 9px 12px; }
  nav.main .dropdown .menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
  nav.main .dropdown .menu a.all { border-top: 1px solid rgba(255,255,255,.1); color: var(--red-2); }
  .hero { padding: 72px 0 90px; }
}
