/* =========================================================
   SÜMER OTO KURTARMA — Marka Tasarım Sistemi
   Palet: asfalt siyahı + turuncu (marka) + emniyet sarısı
   Başlık: Barlow Condensed (yol tabelası hissi)
   Metin:  Inter
   İmza öğesi: diagonal "hazard stripe" (çekme kayışı / trafik
   şeridi) bölüm ayırıcıları + rota noktalı çizgisi
   ========================================================= */

:root {
  --ink: #14171A;
  --ink-2: #21262b;
  --ink-soft: #3a4148;
  --orange: #FF6A1A;
  --orange-dark: #E2560C;
  --yellow: #FFC629;
  --paper: #F5F6F8;
  --paper-2: #FFFFFF;
  --line: #E4E6EA;
  --text: #1C2024;
  --text-soft: #5B6470;
  --text-inverse: #F5F6F8;
  --success: #1F9D55;
  --danger: #D3392C;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px -14px rgba(20, 23, 26, 0.35);
  --shadow-sm: 0 4px 14px -6px rgba(20, 23, 26, 0.2);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.4rem; }
p { line-height: 1.7; color: var(--text-soft); margin: 0 0 1em; }

/* Skip link için erişilebilirlik */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- İmza öğesi: hazard stripe ---------- */
.hazard-strip {
  height: 8px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0px, var(--ink) 14px,
    var(--orange) 14px, var(--orange) 28px
  );
}

/* ---------- Üst bilgi şeridi ---------- */
.top-banner {
  background: var(--ink);
  color: #cfd3d8;
  font-size: .82rem;
}
.top-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.top-banner-inner strong { color: var(--yellow); }
.top-banner-inner a { color: #fff; font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: auto; }

.main-nav {
  display: flex;
  gap: 6px;
  margin-left: 12px;
  flex: 1;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--paper); color: var(--orange-dark); }
.main-nav a.active { color: var(--orange-dark); background: #FFF1E7; }

.header-cta { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #25D366; color: #fff; }
.btn-primary:hover { background: #1fbd5a; box-shadow: var(--shadow-sm); }
.btn-ghost { border-color: var(--line); color: var(--ink-2); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-dark); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 7px 12px; font-size: .82rem; }
.btn-danger { background: var(--danger); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #1c2126 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 90px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,106,26,.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,198,41,.10), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,106,26,.14);
  border: 1px solid rgba(255,106,26,.4);
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,198,41,.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--orange); }
.hero-lead { color: #c7ccd2; font-size: 1.12rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }

.hero-quickstats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-quickstats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #fff;
  font-weight: 800;
}
.hero-quickstats div span { color: #9aa1a9; font-size: .85rem; }

.hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.55);
  border: 6px solid rgba(255,255,255,.06);
}
.hero-media img { width: 100%; height: 420px; object-fit: cover; }
.hero-media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(20,23,26,.85);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid var(--yellow);
}

/* ---------- Route line (imza öğesi #2) ---------- */
.route-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9aa1a9;
  font-size: .85rem;
  margin-top: 14px;
}
.route-line .line {
  flex: 1;
  height: 0;
  border-top: 2px dashed rgba(255,255,255,.25);
  position: relative;
}
.route-line .pin { color: var(--orange); }

/* ---------- Genel bölüm yapısı ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #b7bcc2; }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-size: .85rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 3px;
  background: var(--orange);
}
.section-dark .eyebrow { color: var(--yellow); }

/* ---------- Kart grid: hizmetler ---------- */
.grid { display: grid; gap: 26px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card-media { height: 170px; overflow: hidden; position: relative; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-icon {
  position: absolute; top: 12px; left: 12px;
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.service-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { flex: 1; font-size: .95rem; }
.service-card-link { font-weight: 700; color: var(--orange-dark); font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; margin-top: 10px; }
.service-card-link:hover { text-decoration: underline; }

/* ---------- İstatistik şeridi ---------- */
.stats-strip {
  background: var(--ink);
  position: relative;
}
.stats-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(-45deg, var(--orange) 0 10px, var(--yellow) 10px 20px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 0;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 0 12px;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--orange);
}
.stat-item span { color: #b7bcc2; font-size: .9rem; }

/* ---------- Neden biz ---------- */
.why-list { display: grid; gap: 20px; margin-top: 10px; }
.why-item { display: flex; gap: 16px; }
.why-item-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: #FFF1E7;
  color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
}
.why-item h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.15rem; }
.why-item p { margin: 0; font-size: .93rem; }

/* ---------- Yorumlar ---------- */
.review-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.review-stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-style: italic; color: var(--text); }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.review-author strong { display: block; font-size: .92rem; }
.review-author span { color: var(--text-soft); font-size: .8rem; }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 16px, transparent 16px 32px);
}
.cta-band h2 { color: #fff; margin-bottom: 6px; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0; position: relative; }
.cta-band .cta-actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-q .plus { transition: transform .2s; color: var(--orange); font-size: 1.4rem; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }

/* ---------- Blog ---------- */
.post-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-media { height: 190px; overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 20px 22px 24px; }
.post-meta { font-size: .78rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.post-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.post-card p { font-size: .92rem; }
.read-more { font-weight: 700; color: var(--orange-dark); font-size: .88rem; }

.post-content { max-width: 760px; margin: 0 auto; }
.post-content h2 { margin-top: 1.4em; font-size: 1.6rem; }
.post-content p { color: var(--text); }
.post-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; }
.post-hero-img img { width: 100%; height: 380px; object-fit: cover; }

/* ---------- Page hero (iç sayfalar) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
  position: relative;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.breadcrumb { color: #9aa1a9; font-size: .88rem; }
.breadcrumb a { color: #c7ccd2; }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { color: var(--orange); flex-shrink: 0; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b7bcc2; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a { display: block; color: #b7bcc2; padding: 5px 0; font-size: .92rem; }
.footer-col a:hover { color: var(--orange); }
.footer-logo { height: 46px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .9rem; }
.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .82rem;
}

/* ---------- Yüzen butonlar ---------- */
.float-btn {
  position: fixed;
  right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.4);
  z-index: 80;
  transition: transform .15s;
}
.float-btn:hover { transform: scale(1.08); }
.float-whatsapp { bottom: 88px; background: #25D366; color: #fff; }
.float-call { bottom: 20px; background: var(--orange); color: #fff; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-code { font-family: var(--font-display); font-weight: 800; font-size: 7rem; color: var(--orange); line-height: 1; }

/* ---------- Genel form (site tarafı yok ama iletişim vs.) ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: #fff;
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media img { height: 300px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    padding: 90px 24px 24px;
    transition: right .25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
    z-index: 70;
  }
  .main-nav.open { right: 0; }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle { display: flex; }
  .header-cta .btn-call span { display: none; }
  .top-banner-inner { font-size: .72rem; justify-content: center; text-align: center; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; flex-direction: column; text-align: center; }
  .cta-band .cta-actions { justify-content: center; }
  .section { padding: 56px 0; }
  .float-btn { width: 50px; height: 50px; right: 14px; }
  .float-whatsapp { bottom: 78px; }
  .float-call { bottom: 18px; }
}
