/* Acil Kanca – Premium oto kurtarma landing */

:root {
  --navy: #0a1628;
  --navy-mid: #152238;
  --navy-light: #1e3050;
  --orange: #ff5c00;
  --orange-hover: #ff7624;
  --orange-soft: rgba(255, 92, 0, 0.12);
  --white: #ffffff;
  --surface: #f4f7fb;
  --surface-2: #e8edf5;
  --text: #1a2332;
  --text-muted: #5a6b82;
  --border: #d8e0ec;
  --green: #22c55e;
  --green-dark: #16a34a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.12);
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
  --header-h: 72px;
  --topbar-h: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 12px);
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Grid/flex çocukları içerikten dolayı ekrandan taşmasın */
.hero-grid > *,
.hero-stats > *,
.services-grid > *,
.why-grid > *,
.gallery-grid > *,
.district-grid > *,
.faq-grid > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ── Top emergency bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.top-bar-phone { white-space: nowrap; }

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.top-bar-phone {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.top-bar-phone:hover { color: var(--orange-hover); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header .container { position: relative; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-icon { width: 42px; height: 42px; }

.logo-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover {
  color: var(--navy);
  background: var(--surface);
}

.header-cta { display: flex; gap: 0.5rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--navy);
}

.nav-toggle svg { width: 26px; height: 26px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  max-width: 100%;
}

.btn:hover { transform: translateY(-1px); }

.btn-call {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 92, 0, 0.35);
}

.btn-call:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(255, 92, 0, 0.45);
}

.btn-wa {
  background: var(--green);
  color: var(--white);
}

.btn-wa:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.84rem; }

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 92, 0, 0.3);
  color: #ffb380;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-slogan {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.65rem;
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}

.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  display: block;
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--navy);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.hero-visual-badge strong {
  display: block;
  color: var(--orange);
  font-size: 1rem;
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── Sections ── */
section { padding: 3.5rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  font-size: 0.95rem;
}

/* ── Services ── */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--orange-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--orange);
}

.service-icon-wrap svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Process ── */
.process { background: var(--surface); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
}

.process-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s;
}

.why-card:hover { border-color: var(--orange); }

.why-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.why-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ── Gallery ── */
.gallery {
  background: var(--navy);
  color: var(--white);
}

.gallery .section-header h2 { color: var(--white); }
.gallery .section-header p { color: rgba(255,255,255,0.65); }
.gallery .section-label { color: var(--orange); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.84rem;
  font-weight: 500;
}

/* ── Districts ── */
.districts { background: var(--white); }

.district-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.district-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  transition: background 0.15s, border-color 0.15s;
}

.district-pill:hover {
  background: var(--orange-soft);
  border-color: var(--orange);
  color: var(--orange);
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.district-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.district-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.district-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FAQ ── */
.faq { background: var(--surface); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 960px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1.4;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 1.15rem 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Contact ── */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-list-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-list-icon svg { width: 18px; height: 18px; }

.contact-list-text strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-list-text a,
.contact-list-text span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-list-text a:hover { color: var(--orange); }

.contact-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.contact-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contact-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.contact-box .btn { width: 100%; margin-bottom: 0.6rem; }

/* ── SEO article ── */
.seo-content {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.seo-article {
  max-width: 800px;
  margin-inline: auto;
}

.seo-article h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.seo-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.6rem;
}

.seo-article p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 2rem 0 5.5rem;
  font-size: 0.84rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-brand p { line-height: 1.6; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.4rem; }

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-bottom a { color: var(--orange); }

/* ── Sticky CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--navy);
  padding: 0.6rem;
  gap: 0.5rem;
  border-top: 2px solid var(--orange);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}

.sticky-cta .btn { flex: 1; padding: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .btn { white-space: normal; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 0.75rem 1rem; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .top-bar-left { display: none; }
  .top-bar-inner { justify-content: center; }

  /* Dar ekranda header'a sığmayan WhatsApp butonunu gizle
     (altta sabit WhatsApp butonu zaten var) */
  .header-cta .btn-wa { display: none; }
  .header-inner { gap: 0.5rem; }
  .logo { gap: 0.5rem; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-text strong { font-size: 1.05rem; }
  .logo-text span { font-size: 0.6rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .header-cta .btn span.label { display: none; }

  /* Uzun butonlar ekrandan taşmasın */
  .btn { white-space: normal; text-align: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn-lg { width: 100%; }

  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .cta-band-actions .btn { width: 100%; }

  .hero-stats { gap: 0.5rem; }
  .hero-stat { padding: 0.7rem 0.4rem; }

  .container { width: 92%; }

  section { padding: 2.5rem 0; }

  .contact-box { padding: 1.5rem 1.15rem; }

  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.65rem; }
  .logo-text span { display: none; }
  .btn-lg { padding: 0.9rem 1rem; font-size: 0.92rem; }
}
