@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN SYSTEM — AYDÍNLIK MAVİ/BEYAZ TEMA
   ============================================================ */
:root {
  /* Ana renkler */
  --blue-primary: #2563EB;
  --blue-hover:   #1D4ED8;
  --blue-light:   #EFF6FF;
  --blue-mid:     #DBEAFE;
  --blue-glow:    rgba(37, 99, 235, 0.18);

  --red-alert:    #EF4444;
  --red-light:    #FEF2F2;

  --green-wa:     #25D366;

  /* Arka planlar */
  --bg-page:      #F0F4FF;    /* Hafif mavi-beyaz sayfa zemini */
  --bg-white:     #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-card-2:    #F8FAFF;
  --bg-section:   #EEF2FF;

  /* Metin */
  --text-dark:    #0F172A;
  --text-body:    #334155;
  --text-muted:   #64748B;
  --text-light:   #94A3B8;

  /* Kenarlıklar */
  --border:       #E2E8F0;
  --border-blue:  rgba(37, 99, 235, 0.15);

  /* Gölgeler */
  --shadow-xs:    0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:    0 4px 6px -1px rgba(15,23,42,0.07), 0 2px 4px -2px rgba(15,23,42,0.05);
  --shadow-md:    0 10px 15px -3px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.05);
  --shadow-lg:    0 20px 25px -5px rgba(15,23,42,0.1), 0 8px 10px -6px rgba(15,23,42,0.06);
  --shadow-blue:  0 8px 25px rgba(37,99,235,0.25);

  /* Köşe yuvarlamaları */
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Tipografi */
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Geçişler */
  --tr-fast:   0.18s cubic-bezier(0.4,0,0.2,1);
  --tr-normal: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & TEMEL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-b);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* Mobil: bottom nav için boşluk */
  padding-bottom: 88px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

p { color: var(--text-body); }
a { color: inherit; text-decoration: none; transition: var(--tr-fast); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   YARDIMCI SINIFLAR
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-primary { color: var(--blue-primary); }
.text-red { color: var(--red-alert); }

.section-padding { padding: 60px 0; }

@media (max-width: 768px) {
  .section-padding { padding: 40px 0; }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  color: var(--blue-primary);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.badge-red {
  background: var(--red-light);
  border-color: rgba(239,68,68,0.15);
  color: var(--red-alert);
}

.badge-secondary {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.18);
  color: var(--red-alert);
}

/* Pulse dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-primary);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite ease-out;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all var(--tr-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.35);
}

.btn-secondary {
  background: var(--red-alert);
  color: #fff;
  box-shadow: 0 6px 20px rgba(239,68,68,0.3);
}
.btn-secondary:hover {
  background: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(239,68,68,0.4);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover {
  background: #1EBD59;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.38);
}

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.btn-call-big {
  font-size: 1.08rem;
  padding: 16px 30px;
  letter-spacing: -0.2px;
}

.btn-block { width: 100%; }

/* ============================================================
   URGENT TOP BANNER
   ============================================================ */
.urgent-banner {
  background: linear-gradient(90deg, var(--blue-primary) 0%, #1E40AF 100%);
  color: #fff;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 100;
}
.urgent-banner .pulse-dot { background: #fff; }
.urgent-banner a {
  background: #fff;
  color: var(--blue-primary);
  padding: 3px 13px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 800;
  transition: var(--tr-fast);
}
.urgent-banner a:hover { background: var(--blue-mid); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo-icon {
  width: 38px;
  height: 38px;
  fill: var(--blue-primary);
}
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.logo-subtitle {
  font-size: 0.68rem;
  color: var(--blue-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

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

/* Yuvarlak header buton */
.header-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--tr-fast);
}
.header-circle-btn svg { width: 19px; height: 19px; fill: currentColor; }
.header-circle-btn:hover { border-color: var(--blue-primary); color: var(--blue-primary); background: var(--blue-light); }
.header-call-btn { border-color: rgba(37,99,235,0.2); background: var(--blue-light); color: var(--blue-primary); }
.header-call-btn:hover { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }

@media (max-width: 640px) {
  .header-actions .btn-whatsapp { display: none; }
}

/* ============================================================
   HERO SECTION — Referans görsele birebir
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0C1A3A 0%, #0F2460 40%, #1E3A8A 100%);
  overflow: hidden;
  padding: 0;
  min-height: 520px;
}

/* Hero arka plan görseli */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

/* Gradient overlay — sol taraf net, sağ taraf resim görünür */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(12,26,58,0.98) 0%,
    rgba(12,26,58,0.85) 40%,
    rgba(12,26,58,0.3) 70%,
    rgba(12,26,58,0.05) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 56px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sol: içerik */
.hero-content h1 {
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.hero-content h1 .highlight { color: #60A5FA; }

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.65;
}

/* Hero features — açık metin rengi (koyu arka plan üzeri) */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.hero-feat-icon { font-size: 1rem; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  max-width: 340px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-trust svg { width: 18px; height: 18px; fill: #60A5FA; flex-shrink: 0; }

/* Sağ: stat kartları + konum kartı */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 16px 12px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-stat-number {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.3;
}

/* ---- MASAÜSTÜ ---- */
@media (min-width: 992px) {
  .hero-bg-image { opacity: 0.32; }
  .hero-inner { padding: 70px 40px 70px; }
  .hero-content h1 { font-size: 3.8rem; }
}

/* ---- MOBİL ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-bg-image {
    object-position: center right;
    opacity: 0.25;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(12,26,58,0.92) 0%,
      rgba(12,26,58,0.75) 55%,
      rgba(12,26,58,0.82) 100%
    );
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 36px;
    gap: 24px;
  }
  .hero-content h1 { font-size: 2.6rem; letter-spacing: -1px; }
  .hero-ctas { max-width: 100%; }
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-number { font-size: 1.3rem; }
  .hero-right { order: -1; }
  .hero-stats-row { margin-bottom: 0; }
}

/* ============================================================
   LOCATION / KONUM KARTI — Referanstaki koyu mavi kart
   ============================================================ */
.location-radar-card {
  background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 50%, #2563EB 100%);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* Harita dokusu benzeri arka plan */
.location-radar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Radar dalgaları */
.radar-wave {
  position: absolute;
  right: 50px;
  top: 50%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  transform: translate(50%, -50%);
  pointer-events: none;
  animation: radar-expand 3s infinite ease-out;
}
.radar-wave-1 { width: 80px;  height: 80px;  animation-delay: 0s; }
.radar-wave-2 { width: 150px; height: 150px; animation-delay: 1s; }
.radar-wave-3 { width: 220px; height: 220px; animation-delay: 2s; }

@keyframes radar-expand {
  0%   { opacity: 0.9; transform: translate(50%, -50%) scale(0.6); }
  100% { opacity: 0;   transform: translate(50%, -50%) scale(1.4); }
}

/* Pin ikonu */
.location-pin-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  z-index: 2;
}
.location-pin-icon svg { width: 26px; height: 26px; fill: var(--blue-primary); }

.location-info { position: relative; z-index: 2; }

.location-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #93C5FD;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.location-status .pulse-dot { background: #93C5FD; }

.location-address {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.location-eta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.location-eta strong {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-left: 4px;
}

/* Konum paylaş butonu */
.btn-share-location-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue-primary);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all var(--tr-fast);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}
.btn-share-location-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }

@media (max-width: 640px) {
  .location-radar-card { padding: 22px 20px; }
  .location-pin-icon { display: none; }
  .location-address { font-size: 1.35rem; }
}

/* ============================================================
   SERVİSLER BÖLÜMÜ — Referanstaki kart içindeki ikon grid
   ============================================================ */
.services-section {
  background: var(--bg-page);
}

.section-title-wrapper {
  max-width: 680px;
  margin: 0 auto 32px;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-subtitle-text { font-size: 0.95rem; color: var(--text-body); }

/* Servis kartları sarmalayıcı — referanstaki beyaz kart görünümü */
.services-card-wrapper {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.services-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.services-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.services-see-all {
  color: var(--blue-primary);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.services-see-all:hover { text-decoration: underline; }

/* Yatay kaydırma — mobil için referansla aynı */
.services-scroll-container {
  width: 100%;
}

@media (max-width: 768px) {
  .services-scroll-container {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-scroll-container::-webkit-scrollbar { display: none; }
}

.services-row {
  display: flex;
  gap: 12px;
  padding: 4px 0;
}

@media (min-width: 769px) {
  .services-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
  }
}

/* Tek bir servis ikonu kartı */
.service-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 110px;
  flex-shrink: 0;
  padding: 16px 10px;
  border-radius: var(--r-lg);
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  transition: all var(--tr-fast);
  cursor: pointer;
  text-decoration: none;
}
.service-icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-blue);
  background: var(--blue-light);
}

@media (min-width: 769px) {
  .service-icon-card { width: 100%; }
}

/* Yuvarlak ikon — referanstaki koyu gri yuvarlak */
.service-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--blue-mid);
  border: 1px solid rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  transition: all var(--tr-fast);
}
.service-icon-card:hover .service-circle-icon {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.service-circle-icon svg { width: 26px; height: 26px; }

.service-icon-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.25;
}

/* ============================================================
   PROCESS SECTION (NASIL ÇALIŞIR?)
   ============================================================ */
.process-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin-bottom: 36px;
}

/* Bağlantı çizgisi */
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--border-blue) 0px, var(--border-blue) 8px,
    transparent 8px, transparent 18px
  );
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  margin-bottom: 18px;
  position: relative;
  transition: all var(--tr-fast);
}
.process-circle svg { width: 34px; height: 34px; }
.process-step:hover .process-circle {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.step-number {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.82rem;
  border: 3px solid var(--bg-white);
}
.process-step:hover .step-number { background: var(--blue-hover); }

.process-step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.88rem; color: var(--text-body); max-width: 200px; }

/* Process CTA satırı */
.process-cta-row {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-grid::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 18px; }
  .process-circle { margin-bottom: 0; flex-shrink: 0; width: 72px; height: 72px; }
  .process-step h4 { margin-bottom: 3px; }
  .process-step p { max-width: none; }
}

/* ============================================================
   REGIONS (HİZMET BÖLGELERİ)
   ============================================================ */
.regions-section { background: var(--bg-section); }

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.regions-info h2 { font-size: 1.8rem; margin-bottom: 12px; letter-spacing: -0.4px; }
.regions-info > p { font-size: 0.95rem; margin-bottom: 24px; }

.regions-list-wrapper { margin-top: 8px; }

.regions-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.region-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px 10px;
  cursor: pointer;
  transition: var(--tr-fast);
  position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.region-tab-btn.active { color: var(--blue-primary); border-bottom-color: var(--blue-primary); }
.region-tab-btn:hover { color: var(--blue-primary); }

.regions-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}

.region-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-body);
  transition: all var(--tr-fast);
}
.region-item:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  background: var(--blue-light);
  transform: translateY(-1px);
}

.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-container iframe { width: 100%; min-height: 400px; border: none; display: block; }

@media (max-width: 991px) {
  .regions-grid { grid-template-columns: 1fr; gap: 28px; }
  .map-container iframe { min-height: 300px; }
}

/* ============================================================
   SEO METİN ALANI
   ============================================================ */
.seo-article { background: var(--bg-white); }
.seo-rich-text { max-width: 860px; margin: 0 auto; }
.seo-rich-text h2 { font-size: 1.7rem; color: var(--blue-primary); margin: 28px 0 10px; }
.seo-rich-text h3 { font-size: 1.25rem; margin: 22px 0 8px; }
.seo-rich-text p { font-size: 0.975rem; color: var(--text-body); margin-bottom: 14px; line-height: 1.7; }
.seo-rich-text ul { margin: 0 0 14px 20px; }
.seo-rich-text li { font-size: 0.975rem; color: var(--text-body); margin-bottom: 6px; line-height: 1.6; }

/* ============================================================
   YORUMLAR (MÜŞTERİ GÖRÜŞLERİ)
   ============================================================ */
.testimonials-section { background: var(--bg-section); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: all var(--tr-fast);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.reviewer-info h4 { font-size: 1rem; margin-bottom: 2px; }
.reviewer-info span { font-size: 0.78rem; color: var(--text-muted); }
.reviewer-rating { color: #F59E0B; font-size: 1rem; letter-spacing: 1px; }

.testimonial-card p { font-size: 0.9rem; line-height: 1.65; font-style: italic; color: var(--text-body); }
.testimonial-date { display: block; text-align: right; font-size: 0.72rem; color: var(--text-light); margin-top: 12px; }

/* ============================================================
   SSS (FAQ)
   ============================================================ */
.faq-section { background: var(--bg-white); border-top: 1px solid var(--border); }

.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--tr-fast);
}
.faq-item.active { border-color: var(--blue-primary); }

.faq-header-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  color: var(--text-dark);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: color var(--tr-fast);
}
.faq-header-btn:hover { color: var(--blue-primary); }
.faq-item.active .faq-header-btn { color: var(--blue-primary); }

.faq-icon { width: 20px; height: 20px; color: var(--text-muted); transition: transform var(--tr-normal); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--blue-primary); }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.32s ease-out; }
.faq-item.active .faq-content { max-height: 300px; }
.faq-body { padding: 0 22px 18px; font-size: 0.95rem; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}

.footer-about h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-about p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }

.footer-links-col h4, .footer-contact-col h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}
.footer-links-col h4::after, .footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--blue-primary);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: #fff; padding-left: 3px; }

.footer-contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.contact-item span { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 14px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   MOBİL BOTTOM NAV BAR — Referansla birebir
   ============================================================ */
.mobile-app-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 74px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(15,23,42,0.08);
}

.app-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.68rem;
  color: var(--text-muted);
  height: 100%;
  transition: all var(--tr-fast);
  padding: 0 4px;
  text-decoration: none;
}
.app-nav-item svg { width: 22px; height: 22px; fill: currentColor; }
.app-nav-item.active { color: var(--blue-primary); }
.app-nav-item:hover { color: var(--blue-primary); }

/* Merkezdeki büyük yuvarlak ara butonu */
.app-nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.app-floating-circle-btn {
  position: absolute;
  bottom: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-hover) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 22px rgba(37,99,235,0.45);
  transition: all var(--tr-fast);
  z-index: 1001;
  text-decoration: none;
}
.app-floating-circle-btn svg { width: 24px; height: 24px; fill: currentColor; }
.app-floating-circle-btn span {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-floating-circle-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 10px 28px rgba(37,99,235,0.55); }

/* Masaüstünde bottom nav gizle */
@media (min-width: 769px) {
  .mobile-app-nav-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   MASAÜSTÜ YÜZEN WHATSAPP BUTONU
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  z-index: 998;
  animation: float-pulse 2.4s infinite;
  transition: transform var(--tr-normal);
}
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp svg { width: 30px; height: 30px; }

@keyframes float-pulse {
  0%   { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) { .floating-whatsapp { display: none; } }

/* ============================================================
   DESKTOP NAVIGATION HEADER MENU
   ============================================================ */
.desktop-nav {
  display: none;
}

@media (min-width: 769px) {
  .desktop-nav {
    display: block;
  }
  .desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
  }
  .desktop-nav a {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    letter-spacing: -0.1px;
  }
  .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width var(--tr-fast);
    border-radius: 2px;
  }
  .desktop-nav a:hover {
    color: var(--blue-primary);
  }
  .desktop-nav a:hover::after {
    width: 100%;
  }
}

/* ============================================================
   INTERACTIVE RADAR CARD STATES & STYLES
   ============================================================ */
.location-radar-card .radar-view-state {
  display: none !important;
}

.location-radar-card.state-idle .radar-state-idle {
  display: block !important;
}

.location-radar-card.state-matching .radar-state-matching {
  display: flex !important;
}

.location-radar-card.state-matched .radar-state-matched {
  display: block !important;
}

/* Dropdown divider inside card */
.location-select-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 16px 0 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}
.location-select-divider::before,
.location-select-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.location-select-divider::before {
  margin-right: 10px;
}
.location-select-divider::after {
  margin-left: 10px;
}

/* Glassmorphism select dropdown */
.location-select-wrapper {
  position: relative;
  width: 100%;
}
.location-district-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all var(--tr-fast);
  padding-right: 40px;
}
.location-district-select:hover, 
.location-district-select:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.location-district-select option {
  background: #0f172a;
  color: #fff;
  font-weight: 500;
}
.location-select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-25%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

/* STATE 2: MATCHING PROGRESS SCREEN */
.radar-state-matching {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  text-align: center;
  gap: 24px;
}
.radar-match-loader {
  width: 52px;
  height: 52px;
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-match-loader svg {
  width: 100%;
  height: 100%;
}
.radar-matching-logs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.match-log-item {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.match-log-item.log-active {
  color: #60a5fa;
  font-weight: 700;
  transform: scale(1.03);
  animation: pulse-log-opacity 1s infinite alternate;
}
.match-log-item.log-done {
  color: rgba(255, 255, 255, 0.75);
}

@keyframes pulse-log-opacity {
  from { opacity: 0.65; }
  to { opacity: 1; }
}

/* STATE 3: MATCHED DISPATCH TICKET SCREEN */
.ticket-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.dispatch-ticket-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.driver-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.driver-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.driver-avatar svg {
  width: 22px;
  height: 22px;
}
.driver-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.driver-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.driver-name {
  font-size: 0.98rem;
  font-weight: 800;
  margin: 1px 0 4px;
  color: #fff;
}
.truck-plate {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  align-self: flex-start;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
}
.ticket-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}
.ticket-stat {
  display: flex;
  flex-direction: column;
}
.t-stat-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.t-stat-val {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.matched-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.matched-ctas .btn {
  padding: 12px 20px;
  font-size: 0.92rem;
}

