/* =============================================
   TOPRAK OTO KURTARICI — location.css
   Bölge sayfaları için ek stiller
   ============================================= */

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: 62px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--ink-3);
}
.breadcrumb ol li::after { content: '→'; margin-left: 8px; }
.breadcrumb ol li:last-child::after { display: none; }
.breadcrumb a { color: var(--red); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ===== LOCATION HERO ===== */
.loc-hero {
  background: var(--white);
  padding: 52px 0 70px;
  border-bottom: 1px solid var(--border);
}
.loc-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.loc-h1 {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 18px;
}
.loc-h1 span { color: var(--red); display: block; }

.loc-hero-sub {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.loc-hero-sub strong { color: var(--ink); }

.loc-phone {
  background: rgba(192,48,26,0.07);
  border: 1.5px solid rgba(192,48,26,0.18);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 24px;
}
.loc-phone-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.loc-phone-num {
  display: block;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 4px;
  transition: color .18s;
  font-variant-numeric: tabular-nums;
}
.loc-phone-num:hover { color: var(--red); }
.loc-phone-note { font-size: 12px; color: var(--ink-3); }

.loc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  transition: background .18s;
}
.btn-wa:hover { background: #1fba58; }

/* Location hero stats */
.loc-stats {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 8px 36px rgba(0,0,0,0.07);
  margin-bottom: 16px;
  overflow: hidden;
}
.ls-item {
  padding: 20px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.ls-item:nth-child(2), .ls-item:nth-child(4) { border-right: none; }
.ls-item:nth-child(3), .ls-item:nth-child(4) { border-bottom: none; }
.ls-num {
  display: inline;
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.ls-suf { font-size: 18px; font-weight: 700; color: var(--red); }
.ls-lbl { display: block; font-size: 11px; color: var(--ink-3); margin-top: 4px; font-weight: 500; }

.loc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.loc-trust span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* ===== LOCATION SERVICES ===== */
.loc-services { background: var(--bg); }
.loc-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.loc-svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: border-color .18s, box-shadow .18s;
}
.loc-svc-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(192,48,26,0.08);
}
.lsc-icon { font-size: 28px; margin-bottom: 12px; }
.loc-svc-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.loc-svc-card p { font-size: 13.5px; color: var(--ink-3); line-height: 1.65; }

/* ===== WHY ===== */
.loc-why { background: var(--white); }
.lw-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
}
.lw-left { position: sticky; top: 100px; }
.lw-right { display: flex; flex-direction: column; }
.lw-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.lw-item:first-child { border-top: 1px solid var(--border); }
.lwi-n {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 30px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lw-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.lw-item p { color: var(--ink-3); font-size: 13.5px; line-height: 1.65; }

/* ===== FAQ ===== */
.loc-faq { background: var(--bg); }

/* ===== OTHER LOCATIONS ===== */
.loc-others { background: var(--white); }
.loc-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.loc-other-card {
  display: block;
  padding: 16px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .18s, color .18s, background .18s;
}
.loc-other-card:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .loc-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .loc-hero-right { display: none; }
  .loc-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .lw-grid { grid-template-columns: 1fr; gap: 40px; }
  .lw-left { position: static; }
  .loc-other-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .loc-h1 { font-size: clamp(36px, 11vw, 52px); letter-spacing: -1px; }
  .loc-svc-grid { grid-template-columns: 1fr; }
  .loc-other-grid { grid-template-columns: 1fr; }
  .loc-actions { flex-direction: column; }
  .btn-primary, .btn-wa { width: 100%; justify-content: center; }
}