/* ==========================================================================
   Karaca Oto Kurtarma - Premium, Sade & Açık Renkli Kurumsal Stil Dosyası
   Yetkili: Serhat Aslan | Tel: 0545 501 87 10
   ========================================================================== */

:root {
  --bg-body: #F7F8FA;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F2F4F7;
  --bg-alt: #F7F8FA;

  --border-light: #E4E7EC;
  --border-strong: #D0D5DD;

  --navy-dark: #101828;
  --navy-surface: #1D2939;
  --navy-muted: #344054;
  --text-main: #101828;
  --text-secondary: #667085;
  --text-muted: #98A2B3;
  --text-light: #D0D5DD;

  --accent-red: #E92145;
  --accent-red-hover: #D01437;
  --accent-red-subtle: #FFF1F3;
  --accent-red-border: #FDA29B;

  --whatsapp: #22C55E;
  --whatsapp-hover: #16A34A;
  
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-subtle: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  --shadow-card: 0 1px 3px 0 rgba(16, 24, 40, 0.1), 0 1px 2px -1px rgba(16, 24, 40, 0.06);
  --shadow-hover: 0 4px 16px -2px rgba(16, 24, 40, 0.08);

  --container: 1240px;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 64px; /* Mobil alt bar boşluğu */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   İnce Koyu Lacivert Üst Bilgi Şeridi
   ========================================================================== */
.top-bar {
  background-color: var(--navy-dark);
  color: #F8FAFC;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #CBD5E1;
}

.top-bar-pulse {
  width: 6px;
  height: 6px;
  background-color: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #F8FAFC;
}

.top-bar-right a {
  color: #FFFFFF;
}
.top-bar-right a:hover {
  color: #FCA5A5;
}

/* ==========================================================================
   Header (Beyaz, Düşük Yükseklikli, Temiz & Modern)
   ========================================================================== */
.main-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-light);
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 38px;
  width: auto;
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-item {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-dark);
  padding: 0.5rem 0;
  position: relative;
}

.nav-item:hover, .nav-item.active {
  color: var(--accent-red);
}

/* ==========================================================================
   Hizmet Bölgeleri Çok Seviyeli Açılır Menü (Desktop Dropdown & Flyout)
   ========================================================================== */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-caret {
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown-wrap:hover .dropdown-caret,
.nav-dropdown-wrap:focus-within .dropdown-caret,
.nav-dropdown-wrap.open .dropdown-caret {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
  padding: 0.4rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap:focus-within .nav-dropdown-menu,
.nav-dropdown-wrap.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-top-bar {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.35rem;
  background: var(--bg-body);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dropdown-city-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.dropdown-city-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy-dark);
  line-height: 1.3;
}

.dropdown-city-sub {
  font-size: 0.75rem;
  color: var(--accent-red);
  font-weight: 700;
  margin-top: 2px;
}

.districts-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.district-dropdown-item {
  position: relative;
  list-style: none;
}

.district-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
  transition: var(--transition);
}

.district-dropdown-link:hover,
.district-dropdown-item:hover > .district-dropdown-link {
  background: var(--bg-subtle);
  color: var(--accent-red);
}

.district-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.district-badge {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  padding: 0.15rem 0.45rem;
  border-radius: 99px;
  border: 1px solid var(--border-light);
  line-height: 1.2;
}

.district-caret {
  color: var(--text-muted);
  transition: transform 0.15s ease, color 0.15s ease;
}

.district-dropdown-item:hover > .district-dropdown-link .district-caret {
  color: var(--accent-red);
  transform: translateX(2px);
}

/* 2. Seviye: Mahalleler Uçan Paneli (Flyout Panel) */
.neighborhoods-flyout-panel {
  position: absolute;
  left: 100%;
  top: -6px;
  width: 500px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.14);
  padding: 1rem 1.15rem;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.district-dropdown-item:hover .neighborhoods-flyout-panel,
.district-dropdown-item:focus-within .neighborhoods-flyout-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.flyout-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.65rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.flyout-heading {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flyout-all-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.flyout-all-link:hover {
  text-decoration: underline;
}

.neighborhoods-grid-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 10px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}

.neighborhoods-grid-scroll::-webkit-scrollbar {
  width: 5px;
}
.neighborhoods-grid-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.neighborhoods-grid-scroll::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

.flyout-item-link {
  display: block;
  padding: 0.38rem 0.6rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-dark);
  border-radius: var(--radius-xs);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.15s, color 0.15s;
}

.flyout-item-link:hover {
  background: var(--bg-subtle);
  color: var(--accent-red);
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-header-phone {
  background-color: #FFFFFF;
  color: var(--navy-dark);
  border: 1.5px solid var(--navy-dark);
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.2;
}

.btn-header-phone:hover {
  background-color: var(--navy-dark);
  color: #FFFFFF;
}

.btn-header-wa {
  background-color: var(--accent-red);
  color: #FFFFFF;
  border: 1.5px solid var(--accent-red);
  padding: 0.45rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.2;
}

.btn-header-wa:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  color: #FFFFFF;
}

.menu-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--navy-dark);
  cursor: pointer;
}

@media (min-width: 992px) {
  .menu-toggle-btn {
    display: none;
  }
}

/* ==========================================================================
   Mobil Navigasyon & Çok Seviyeli Akordiyon
   ========================================================================== */
.mobile-nav-panel {
  display: none;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0 1.25rem;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav-panel.open {
  display: block;
}

.mobile-nav-tree {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-item {
  display: block;
  padding: 0.65rem 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-item:hover {
  background: var(--bg-subtle);
  color: var(--accent-red);
}

.mobile-acc-group {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin: 0.25rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

.mobile-acc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.5rem;
}

.flex-grow {
  flex-grow: 1;
}

.mobile-acc-toggle,
.mobile-dist-toggle {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
}

.acc-chevron {
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-acc-toggle.open .acc-chevron,
.mobile-dist-toggle.open .acc-chevron {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.mobile-acc-content {
  display: none;
  padding: 0.5rem 0.75rem 0.75rem;
  background: var(--bg-body);
  border-top: 1px solid var(--border-light);
}

.mobile-acc-content.open {
  display: block;
}

.mobile-sub-item.mobile-highlight {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-red);
  padding: 0.45rem 0.65rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.mobile-dist-group {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.35rem;
  background: #FFFFFF;
  overflow: hidden;
}

.mobile-dist-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.4rem;
}

.mobile-dist-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
}

.district-badge-sm {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  padding: 0.1rem 0.4rem;
  border-radius: 99px;
  border: 1px solid var(--border-light);
  margin-left: 0.4rem;
}

.mobile-neigh-panel {
  display: none;
  padding: 0.5rem 0.75rem 0.75rem;
  background: var(--bg-body);
  border-top: 1px solid var(--border-light);
}

.mobile-neigh-panel.open {
  display: block;
}

.mobile-neigh-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 8px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

.mobile-neigh-item {
  display: block;
  padding: 0.3rem 0.45rem;
  font-size: 0.78125rem;
  color: var(--navy-dark);
  text-decoration: none;
  border-radius: var(--radius-xs);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-neigh-item:hover,
.mobile-neigh-item:active {
  background: var(--bg-subtle);
  color: var(--accent-red);
}

/* ==========================================================================
   Genel Butonlar
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.btn-red {
  background-color: var(--accent-red);
  color: #FFFFFF;
  border: 1px solid var(--accent-red);
  box-shadow: 0 2px 8px rgba(233, 33, 69, 0.22);
}
.btn-red:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  color: #FFFFFF;
}

.btn-outline-navy {
  background-color: transparent;
  border-color: var(--border-strong);
  color: var(--navy-dark);
}
.btn-outline-navy:hover {
  border-color: var(--navy-dark);
  background-color: var(--navy-dark);
  color: #FFFFFF;
}

.btn-outline-whatsapp {
  background-color: #FFFFFF;
  border-color: #CBD5E1;
  color: var(--navy-dark);
}
.btn-outline-whatsapp:hover {
  border-color: var(--whatsapp);
  color: var(--whatsapp);
  background-color: #F0FDF4;
}

.btn-whatsapp-solid {
  background-color: #FFFFFF;
  color: var(--navy-dark);
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-subtle);
}
.btn-whatsapp-solid:hover {
  background-color: #F8FAFC;
  border-color: var(--navy-dark);
  color: var(--navy-dark);
}
.btn-whatsapp-solid svg {
  color: var(--whatsapp);
}

/* ==========================================================================
   Hero Bölümü (Referans Tasarımı - Açık Renkli, Güçlü & Ferah)
   ========================================================================== */
.hero-ref {
  position: relative;
  background-color: #F7F8FA;
  border-bottom: 1px solid var(--border-light);
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-ref {
    height: 720px;
  }
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 85% center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Sol taraftan başlayan açık beyaz / gri degrade - metinler %100 keskin, araç görseli berrak */
.hero-bg-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    #F7F8FA 0%, 
    #F7F8FA 35%, 
    rgba(247, 248, 250, 0.96) 46%, 
    rgba(247, 248, 250, 0.60) 58%, 
    rgba(247, 248, 250, 0.15) 72%, 
    rgba(247, 248, 250, 0) 86%
  );
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-ref {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }
  .hero-bg-layer {
    display: none;
  }
}

.hero-content-ref {
  position: relative;
  z-index: 5;
  max-width: 660px;
  padding: 3rem 0;
}

.hero-tag-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-red);
  border-radius: 1px;
}

.hero-heading-ref {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.18;
  margin-bottom: 1.35rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-heading-ref {
    font-size: 3.15rem;
  }
}

.hero-desc-ref {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-btns-ref {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 520px) {
  .hero-btns-ref {
    flex-direction: row;
    align-items: center;
  }
}

.btn-hero-call {
  background-color: var(--accent-red);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--accent-red);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(233, 33, 69, 0.25);
  text-decoration: none;
}
.btn-hero-call:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  color: #FFFFFF;
}

.btn-hero-wa {
  background-color: #FFFFFF;
  color: var(--navy-dark);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid var(--border-strong);
  transition: var(--transition);
  text-decoration: none;
}
.btn-hero-wa:hover {
  background-color: #F8FAFC;
  border-color: var(--navy-dark);
  color: var(--navy-dark);
}
.btn-hero-wa svg {
  color: var(--whatsapp);
}

.hero-mobile-photo {
  display: none;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.hero-mobile-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 65% 50%;
}

@media (max-width: 991px) {
  .hero-mobile-photo {
    display: block;
  }
}

/* Hero Altı 3 Sütunlu Güven Metrikleri */
.hero-metrics-ref {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
  max-width: 660px;
}

@media (min-width: 560px) {
  .hero-metrics-ref {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.hero-metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-metric-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-metric-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.2;
}

/* ==========================================================================
   İç Sayfa Hero Alanı (Şehir, İlçe, Mahalle)
   ========================================================================== */
.hero {
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0 3rem;
}

@media (min-width: 992px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-heading {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.22;
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero-bullet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.hero-bullet-icon {
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-visual-col {
  width: 100%;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  background-color: #FFFFFF;
}

.hero-photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Bölüm Başlıkları & Genel Bölüm Alanları
   ========================================================================== */
.section {
  padding: 4rem 0;
}

.section-white {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.section-subtle {
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-light);
}

.section-head {
  max-width: 700px;
  margin-bottom: 2.75rem;
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tagline {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title-main {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title-main {
    font-size: 2.25rem;
  }
}

.section-desc-main {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Hizmet Kartları
   ========================================================================== */
.services-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card-clean:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}

.service-icon-clean {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-title-clean {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
}

.service-text-clean {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link-clean {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-top: auto;
}

.service-link-clean:hover {
  color: var(--accent-red);
}

/* ==========================================================================
   Neden Karaca Oto Kurtarma?
   ========================================================================== */
.why-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .why-section-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.why-photo-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.why-photo-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-points-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-point-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.why-point-icon {
  color: var(--accent-red);
  margin-top: 2px;
  flex-shrink: 0;
}

.why-point-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.why-point-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Çağrıdan Teslimata Süreç
   ========================================================================== */
.process-grid-clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .process-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid-clean {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.process-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.process-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Saha Galerisi (Sade 6'lı Grid)
   ========================================================================== */
.gallery-grid-clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid-clean {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.gallery-card-clean:hover {
  box-shadow: var(--shadow-hover);
}

.gallery-photo-holder {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-subtle);
}

.gallery-photo-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption-box {
  padding: 1rem 1.25rem;
}

.gallery-caption-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.2rem;
}

.gallery-caption-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Gaziantep Hizmet Bölgeleri (Yalnızca 9 İlçe)
   ========================================================================== */
.districts-grid-clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .districts-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .districts-grid-clean {
    grid-template-columns: repeat(3, 1fr);
  }
}

.district-item-clean {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.district-item-clean:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}

.district-title-clean {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.district-desc-clean {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.district-foot-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
}

.district-link-arrow {
  color: var(--accent-red);
  font-weight: 700;
}

/* ==========================================================================
   Onaylı Yorumlar & SSS
   ========================================================================== */
.reviews-grid-clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid-clean {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text-clean {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-author-clean {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  font-size: 0.8125rem;
}

.faq-list-clean {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card-clean {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-btn-clean {
  width: 100%;
  padding: 1.15rem 1.35rem;
  text-align: left;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-btn-clean:hover {
  color: var(--accent-red);
}

.faq-icon-arrow {
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.faq-card-clean.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.faq-body-clean {
  display: none;
  padding: 0 1.35rem 1.15rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-card-clean.active .faq-body-clean {
  display: block;
}

/* ==========================================================================
   Acil Çağrı Alanı (Banner)
   ========================================================================== */
.emergency-banner-clean {
  background: var(--navy-dark);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem auto 0;
}

.emergency-banner-inner {
  max-width: 680px;
  margin: 0 auto;
}

.emergency-tag-clean {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #F87171;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.emergency-title-clean {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.emergency-desc-clean {
  font-size: 1rem;
  color: #CBD5E1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.emergency-btns-clean {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .emergency-btns-clean {
    flex-direction: row;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer-clean {
  background: #0B1120;
  color: #94A3B8;
  padding: 3.5rem 0 2rem;
  border-top: 2px solid var(--border-light);
  margin-top: auto;
}

.footer-row-clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-row-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-row-clean {
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  }
}

.footer-heading-clean {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-clean {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-links-clean a {
  color: #94A3B8;
}
.footer-links-clean a:hover {
  color: #FFFFFF;
}

.footer-bottom-clean {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Mobilde Sabit Alt Bar (Yalnızca "Ara" ve "WhatsApp")
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0.75rem;
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1;
}

.mobile-action-btn.call-action {
  background-color: var(--accent-red);
}
.mobile-action-btn.call-action:active {
  background-color: var(--accent-red-hover);
}

.mobile-action-btn.wa-action {
  background-color: var(--whatsapp);
}
.mobile-action-btn.wa-action:active {
  background-color: var(--whatsapp-hover);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb-clean {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  font-size: 0.8125rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--navy-muted);
  font-weight: 500;
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  color: var(--accent-red);
}

.breadcrumb-curr {
  color: var(--navy-dark);
  font-weight: 600;
}

@media (min-width: 992px) {
  .detail-layout-grid {
    grid-template-columns: 1fr 340px !important;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
