@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:      #F4F7FE;    /* Daha havadar, premium aydınlık zemin */
  --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;

  /* Cam Tasarım (Glassmorphism) */
  --glass-bg:           rgba(255, 255, 255, 0.72);
  --glass-bg-card:      rgba(255, 255, 255, 0.82);
  --glass-border:       rgba(255, 255, 255, 0.55);
  --glass-border-blue:  rgba(37, 99, 235, 0.15);
  --glass-blur:         20px;

  /* Gölgeler */
  --shadow-xs:    0 1px 3px rgba(15,23,42,0.05);
  --shadow-sm:    0 4px 12px rgba(15,23,42,0.04);
  --shadow-md:    0 12px 28px rgba(15,23,42,0.06);
  --shadow-lg:    0 24px 38px rgba(15,23,42,0.08);
  --shadow-blue:  0 10px 28px rgba(37,99,235,0.22);
  --shadow-premium: 0 16px 40px -10px rgba(15,23,42,0.06), 0 8px 16px -6px rgba(15,23,42,0.04);

  /* 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 varsayılan alt boşluk */
  padding-bottom: 0;
}

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: 80px 0; }

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

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  border: 1px solid var(--glass-border-blue);
  color: var(--blue-primary);
  padding: 6px 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;
  box-shadow: 0 2px 8px rgba(37,99,235,0.04);
}

.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: 10px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all var(--tr-normal);
  text-align: center;
  white-space: nowrap;
}

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

.btn-secondary {
  background: linear-gradient(135deg, var(--red-alert) 0%, #DC2626 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(239,68,68,0.25);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(239,68,68,0.38);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-wa) 0%, #1EBD59 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.22);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.32);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

.btn-call-big {
  font-size: 1.05rem;
  padding: 16px 32px;
  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.88rem;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(15,23,42,0.08);
}
.urgent-banner .pulse-dot { background: #fff; }
.urgent-banner a {
  background: #fff;
  color: var(--blue-primary);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 800;
  transition: all var(--tr-fast);
}
.urgent-banner a:hover {
  background: var(--blue-mid);
  transform: scale(1.03);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 4px 20px rgba(15,23,42,0.03);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(37,99,235,0.12));
}
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-h);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-subtitle {
  font-size: 0.68rem;
  color: var(--blue-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Yuvarlak header buton */
.header-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-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: 20px; height: 20px; fill: currentColor; }
.header-circle-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  background: var(--blue-light);
  transform: translateY(-1px);
}
.header-call-btn {
  border-color: rgba(37,99,235,0.22);
  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 — Premium Glassmorphic Backdrop
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(155deg, #07122A 0%, #0D204A 50%, #152E68 100%);
  overflow: hidden;
  padding: 0;
  min-height: 540px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Radial Glow Backgrounds */
.glow-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
  animation: float-glow 10s infinite alternate ease-in-out;
}
.glow-bg-1 {
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-primary) 0%, transparent 70%);
}
.glow-bg-2 {
  bottom: -15%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #60A5FA 0%, transparent 70%);
  animation-delay: -4s;
}

@keyframes float-glow {
  0% { transform: translateY(0) scale(1); opacity: 0.13; }
  100% { transform: translateY(-25px) scale(1.1); opacity: 0.20; }
}

/* 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.25;
  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(7, 18, 42, 0.98) 0%,
    rgba(7, 18, 42, 0.85) 45%,
    rgba(7, 18, 42, 0.35) 75%,
    rgba(7, 18, 42, 0.05) 100%
  );
  z-index: 1;
}

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

/* Sol: içerik */
.hero-content h1 {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  max-width: 460px;
  line-height: 1.65;
}

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

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

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

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  max-width: 360px;
}

.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: 20px;
}

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

.hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 18px 10px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--tr-normal);
}
.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.hero-stat-number {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  line-height: 1.3;
}

/* ---- MASAÜSTÜ ---- */
@media (min-width: 992px) {
  .hero-bg-image { opacity: 0.35; }
  .hero-inner { padding: 80px 40px; gap: 50px; }
  .hero-content h1 { font-size: 4rem; }
}

/* ---- MOBİL ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-bg-image {
    object-position: center right;
    opacity: 0.28;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 18, 42, 0.95) 0%,
      rgba(7, 18, 42, 0.80) 55%,
      rgba(7, 18, 42, 0.90) 100%
    );
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 50px 20px 40px;
    gap: 30px;
  }
  .hero-content h1 { font-size: 2.8rem; letter-spacing: -1.2px; }
  .hero-ctas { max-width: 100%; }
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-number { font-size: 1.4rem; }
  .hero-right { order: 0; } /* Konum kartı mobil görünümde headline'ın altına gelsin */
  .hero-stats-row { margin-bottom: 0; }
}

/* ============================================================
   LOCATION / KONUM KARTI — Premium Glassmorphic Command Panel
   ============================================================ */
.location-radar-card {
  background: linear-gradient(135deg, #091736 0%, #112A61 50%, #1A3C85 100%);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

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

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

/* Pin ikonu */
.location-pin-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff 0%, #EFF6FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.22);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.8);
}
.location-pin-icon svg { width: 28px; height: 28px; fill: var(--blue-primary); }

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

.location-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #93C5FD;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.location-status .pulse-dot { background: #60A5FA; }

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

.location-eta {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 20px;
}
.location-eta strong {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-left: 5px;
}

/* Konum paylaş butonu */
.btn-share-location-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff 0%, #F3F7FF 100%);
  color: var(--blue-primary);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: var(--r-full);
  border: 1px solid #fff;
  cursor: pointer;
  transition: all var(--tr-normal);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
}
.btn-share-location-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  background: #fff;
}

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

/* ============================================================
   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 36px;
}
.section-title {
  font-size: 2.3rem;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, var(--text-dark) 40%, var(--blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-subtitle-text { font-size: 0.98rem; color: var(--text-body); }

/* Servis kartları sarmalayıcı — referanstaki beyaz kart görünümü */
.services-card-wrapper {
  background: var(--glass-bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--glass-border);
  transition: all var(--tr-normal);
}
.services-card-wrapper:hover {
  box-shadow: 0 20px 48px rgba(37,99,235,0.06);
}

.services-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.services-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.services-see-all {
  color: var(--blue-primary);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.services-see-all:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

/* Fading Carousel Mask Wrapper to indicate mobile swipability */
.services-fade-mask {
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .services-fade-mask::before,
  .services-fade-mask::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 5;
    transition: opacity var(--tr-fast);
  }
  .services-fade-mask::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
  }
  .services-fade-mask::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
  }
}

/* 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 -28px;
    padding: 0 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-scroll-container::-webkit-scrollbar { display: none; }
}

.services-row {
  display: flex;
  gap: 14px;
  padding: 6px 0;
}

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

/* Tek bir servis ikonu kartı */
.service-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 114px;
  flex-shrink: 0;
  padding: 20px 10px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  transition: all var(--tr-normal);
  cursor: pointer;
  text-decoration: none;
}
.service-icon-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-primary);
  box-shadow: 0 12px 28px rgba(37,99,235,0.12);
  background: #fff;
}

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

/* Yuvarlak ikon — referanstaki koyu gri yuvarlak */
.service-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--blue-light);
  border: 1px solid var(--glass-border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  transition: all var(--tr-normal);
}
.service-icon-card:hover .service-circle-icon {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37,99,235,0.22);
  transform: rotate(5deg) scale(1.05);
}
.service-circle-icon svg { width: 28px; height: 28px; }

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

/* ============================================================
   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 — Floating iOS Capsule
   ============================================================ */
.mobile-app-nav-bar {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  height: 68px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
  z-index: 9999;
  box-shadow: 
    0 12px 32px rgba(15, 23, 42, 0.09),
    0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all var(--tr-normal);
}

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

/* Nav active dot indicator */
.nav-active-dot {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  background-color: var(--blue-primary);
  border-radius: 50%;
  transition: transform var(--tr-fast) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.app-nav-item.active .nav-active-dot {
  transform: translateX(-50%) scale(1);
}

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

.app-floating-circle-btn {
  position: absolute;
  bottom: 12px;
  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: 1px;
  box-shadow: 0 8px 22px rgba(37,99,235,0.4);
  border: 4px solid #fff;
  transition: all var(--tr-normal);
  z-index: 10001;
  text-decoration: none;
}
.app-floating-circle-btn svg { width: 22px; height: 22px; fill: currentColor; }
.app-floating-circle-btn span {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.app-floating-circle-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37,99,235,0.52);
}

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

@media (max-width: 768px) {
  /* Mobilde body'ye alt boşluk vererek içeriğin kapatılmasını önle */
  body { padding-bottom: 105px; }
}

/* ============================================================
   MASAÜSTÜ YÜZEN WHATSAPP BUTONU
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  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: all var(--tr-normal);
  border: 1px solid rgba(255,255,255,0.15);
}
.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.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.45); }
  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;
}

/* ============================================================
   SAHADAN CANLI ÇALIŞMALAR (FLEET SLIDER)
   ============================================================ */
.fleet-slider-section {
  background: var(--bg-white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.fleet-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .fleet-slider-container {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
  }
}

.fleet-slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.fleet-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  z-index: 1;
}

.fleet-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  color: #fff;
  z-index: 3;
  text-align: left;
}

.fleet-slide-caption h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  font-family: var(--font-h);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fleet-slide-caption p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .fleet-slide-caption {
    padding: 20px 16px 16px;
  }
  .fleet-slide-caption h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .fleet-slide-caption p {
    font-size: 0.78rem;
  }
}

/* Slider Kontrolleri */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--tr-fast);
  user-select: none;
  border-style: solid;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

@media (max-width: 640px) {
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
  .arrow-left { left: 10px; }
  .arrow-right { right: 10px; }
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--tr-fast);
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 8px #fff;
}

