/* ============================================================
   TAŞIRGO • sehirlerarasinakliyat.com
   Bütün UI bileşenleri (ekran görüntülerinden birebir)
   ============================================================ */

/* ============================================================
   KRİTİK: YATAY SCROLL TAMAMEN ENGELLE
   Mobilde sağa-sola kayma olmasın diye 3 katmanlı koruma:
   1) html + body'de overflow-x:hidden + max-width:100vw
   2) Tüm direkt child'larda max-width:100% kontrolü
   3) Genişliği aşan tipik elementler (img, video, iframe, table)
   ============================================================ */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

/* Genişliği taşan elementlere global guard - viewport dışına çıkmasın */
img,
video,
iframe,
embed,
object,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* Tüm section/container'lar viewport içinde kalsın */
section,
header,
footer,
main,
.container,
.section,
.hero,
.wrap {
  max-width: 100%;
  overflow-x: clip;
}

/* Mobilde özellikle taşma riski olan grid/flex layout'lar */
@media (max-width: 768px) {
  * {
    /* Hiçbir element negatif margin ile viewport dışına çıkamaz */
    max-width: 100vw;
  }
  /* Yatay scroll alanları (kaydırılabilir kart sırası) korunur */
  .scroll-x,
  .horizontal-scroll,
  [data-scroll-x] {
    max-width: none;
    overflow-x: auto;
  }
}

/* ============================================================
   KRİTİK: MOBİL MENÜ FIX — main.css'teki eski .open class'ı
   yerine JS .is-open set ediyor. Burada garanti altına alıyoruz.
   ============================================================ */
@media (max-width: 980px) {
  /* Hamburger butonu mutlaka görünür ve tıklanabilir */
  .mobile-toggle {
    display: flex !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 1000 !important;
    position: relative !important;
  }
  /* main.css'teki #main-nav.open kuralını etkisiz kıl - is-open kullanılıyor */
  #main-nav { transform: translateY(-110%); }
  #main-nav.is-open,
  #main-nav.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  /* Body scroll lock */
  body.nav-locked { overflow: hidden; }
}
:root {
  --primary: #1AAFA0;
  --primary-dark: #148F83;
  --primary-light: #2ECDB9;
  --primary-ghost: rgba(26,175,160,0.08);
  --primary-soft: #E6F7F4;
  --accent: #F07B2E;
  --accent-dark: #D4631E;
  --accent-light: #FF9A56;
  --accent-ghost: rgba(240,123,46,0.1);
  --accent-soft: #FFE9D9;

  --dark: #0F1923;
  --dark-700: #1A2A38;
  --dark-500: #2C3E50;
  --dark-300: #546E7A;
  --dark-100: #8FA3B0;

  --light: #FFFFFF;
  --light-100: #F7F9FB;
  --light-200: #EDF2F6;
  --light-300: #DDE5ED;
  --light-400: #C5D0DB;

  --success: #27AE60;
  --warning: #F2994A;
  --danger:  #EB5757;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(15,25,35,0.06), 0 1px 2px rgba(15,25,35,0.04);
  --shadow-md: 0 4px 12px rgba(15,25,35,0.08), 0 2px 4px rgba(15,25,35,0.04);
  --shadow-lg: 0 12px 40px rgba(15,25,35,0.12), 0 4px 12px rgba(15,25,35,0.06);
  --shadow-xl: 0 24px 64px rgba(15,25,35,0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --header-h: 80px;
  --container-max: 1280px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-light { background: var(--light-100); }
.section-tight { padding: 56px 0; }

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--light-200);
  height: var(--header-h);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-500);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-item:hover {
  color: var(--primary-dark);
  background: var(--primary-ghost);
}
.nav-item.is-active {
  color: var(--primary);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-pill-primary { background: var(--primary); color: #fff; }
.btn-pill-primary:hover { color: #fff; background: var(--primary-dark); }
.btn-pill-accent  { background: var(--accent); color: #fff; }
.btn-pill-accent:hover  { color: #fff; background: var(--accent-dark); }

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-item { padding: 10px 10px; font-size: 14px; }
}
@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); }
  .nav-item {
    padding: 14px 16px;
    border-bottom: 1px solid var(--light-200);
    border-radius: 0;
  }
  .nav-item:last-child { border-bottom: 0; }
  .mobile-toggle { display: flex; }
  .header-actions .btn-pill {
    padding: 9px 16px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  /* Müşteri Girişi'ni de göster - daha küçük boyutta */
  .header-actions .btn-pill-primary {
    display: inline-flex !important;
    padding: 7px 10px !important;
    font-size: 11px !important;
  }
  .header-actions .btn-pill-accent {
    padding: 7px 10px !important;
    font-size: 11px !important;
  }
  .header-actions { gap: 4px !important; }
  .brand-logo img { height: 36px; }

  /* Hamburger butonu sağ kenara biraz daha yakın olsun.
     Hem header iç padding'ini sağda küçültüyoruz hem de butonu küçük negatif
     margin ile sağa itiyoruz - container çerçevesi içinde kalmaya devam eder. */
  .site-header > .container,
  .site-header .header-inner {
    padding-right: 12px !important;
  }
  .mobile-toggle {
    width: 36px !important;
    height: 36px !important;
    margin-right: -4px !important;  /* hafif sağa */
  }
}
@media (max-width: 380px) {
  /* Çok dar ekranda: butonlardaki yazıyı kısalt */
  .header-actions .btn-pill-primary { font-size: 10px !important; padding: 6px 8px !important; }
  .header-actions .btn-pill-accent  { font-size: 10px !important; padding: 6px 8px !important; }
  #site-logo-img { max-width: 110px !important; }
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 17px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--light-300);
}
.btn-outline:hover {
  background: var(--light-100);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--primary-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--primary-dark);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--primary-ghost);
  color: var(--primary-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #0E6B62 0%, #13877C 60%, #148F83 100%);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(240,123,46,0.10), transparent 45%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
}
.hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: #2DCB80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(45,203,128,0.7);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(45,203,128,0.7); }
  50% { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 8px rgba(45,203,128,0); }
}

.hero h1 {
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 800;
  color: #fff;
}
.hero h1 .accent,
.hero h1 .highlight {
  color: var(--accent);
  /* Yeşil hero arka planı üzerinde turuncunun tam butondaki gibi
     parlak ve doygun görünmesi için hafif gölge + text-stroke */
  text-shadow: 0 1px 0 rgba(212, 99, 30, 0.35), 0 2px 14px rgba(240, 123, 46, 0.35);
  -webkit-text-stroke: 0.4px rgba(255, 140, 60, 0.25);
  font-weight: 800;
}
.hero h1 .primary { color: #fff; }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 520px;
}
.hero-desc strong { color: #fff; }

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 520px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  margin-top: 6px;
}

/* Hero form (sağ taraf) - aşağıdaki "HERO FORM 8 adımlı" bölümünde tanımlandı */

@media (max-width: 600px) {
  .hero-stats-row { gap: 12px; }
  .hero-form-card { padding: 24px; }
  .hero { padding: 40px 0 32px; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow.primary { color: var(--primary); }
.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-head p {
  font-size: 16px;
  color: var(--dark-300);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.section-head.left p { margin: 0; }

/* ============================================================
   ÖZELLİK KARTLARI - "Öne Çıkan Özellikler"
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--light-200);
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-soft);
}
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s var(--ease);
}
.feature-card:hover .feature-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--dark-300);
  line-height: 1.6;
}

/* ============================================================
   TÜRKİYE HARİTASI
   ============================================================ */
.map-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #ECFDF5 100%);
  position: relative;
  overflow: hidden;
}
/* Map-section floating icons - turkuaz tonlu (açık zemine uygun) */
.map-section .floating-icons.map-floating { z-index: 0; }
.map-section .container, .map-section .turkey-map-wrap { position: relative; z-index: 1; }
.map-section .map-floating .fi          { stroke: rgba(26,175,160,0.18); }
.map-section .map-floating .fi-lg       { stroke: rgba(26,175,160,0.22); }
.map-section .map-floating .fi-sm       { stroke: rgba(26,175,160,0.13); }
.map-section .map-floating .fi-xs       { stroke: rgba(240,123,46,0.18); }
/* Detay stiller home.php içinde inline */

/* ============================================================
   SÜREÇ ADIMLARI 01/02/03
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 24px; } }

.step-item {
  text-align: center;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--primary-soft);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.step-bar {
  width: 50px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}
.step-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.step-item p {
  color: var(--dark-300);
  line-height: 1.6;
  font-size: 15px;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   HİZMET KARTLARI (4'lü şehir)
   ============================================================ */
.service-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .service-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-grid-4 { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-soft);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: var(--dark-300);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  background: var(--primary-ghost);
  border-radius: var(--radius-full);
  align-self: flex-start;
}
.service-card-cta:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   POPÜLER GÜZERGAHLAR
   ============================================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .routes-grid { grid-template-columns: 1fr; } }

.route-card {
  background: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  transition: all 0.2s;
  position: relative;
  display: block;
}
.route-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.route-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(240, 123, 46, 0.25);
  z-index: 2;
}
.route-cities {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.route-arrow {
  color: var(--primary);
}
.route-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--light-200);
}
.route-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  font-size: 17px;
}
.route-time {
  font-size: 12px;
  color: var(--dark-300);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   STAT BAND - Turkuaz arka plan büyük sayılar
   ============================================================ */
.stat-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stat-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.06), transparent 40%);
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 980px) { .stat-band-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .stat-band-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-band-item {
  text-align: center;
}
.stat-band-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.stat-band-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-band-label {
  font-size: 13px;
  opacity: 0.9;
}

/* ============================================================
   YORUMLAR
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-ghost));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.review-meta {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}
.review-route {
  font-size: 12px;
  color: var(--dark-300);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-stars {
  color: var(--accent);
  display: inline-flex;
  gap: 1px;
}
.review-quote {
  color: var(--dark-500);
  font-size: 15px;
  line-height: 1.6;
  margin: 16px 0;
  font-style: italic;
}
.review-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--light-200);
  font-size: 12px;
  color: var(--dark-300);
}
.review-foot-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   FAQ - Merak Edilenler (4'lü grid)
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }

details.faq-item {
  background: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}
details.faq-item:hover { border-color: var(--primary-soft); box-shadow: var(--shadow-sm); }
details.faq-item[open] { border-color: var(--primary); }
details.faq-item summary {
  padding: 18px 56px 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
  list-style: none;
  position: relative;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform-origin: 80% 80%;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s;
}
details.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}
details.faq-item p {
  padding: 0 22px 18px;
  color: var(--dark-300);
  line-height: 1.65;
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   BLOG KARTLARI (4'lü)
   ============================================================ */
.blog-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .blog-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .blog-grid-4 { grid-template-columns: 1fr; } }

.blog-card {
  background: white;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-cover {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}
/* Cover gradient + dekoratif şeritler */
.blog-card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.10), transparent 45%);
  pointer-events: none;
}
.blog-card-cover.bg-1 { background: linear-gradient(135deg, #2ECDB9, #148F83); color: #fff; }
.blog-card-cover.bg-2 { background: linear-gradient(135deg, #5BA8F5, #2563EB); color: #fff; }
.blog-card-cover.bg-3 { background: linear-gradient(135deg, #1AAFA0, #0E6E68); color: #fff; }
.blog-card-cover.bg-4 { background: linear-gradient(135deg, #F8964A, #D4631E); color: #fff; }
.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Kurumsal SVG ikon kapsayıcısı */
.blog-card-icon {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.22);
  box-shadow:
    0 8px 24px -6px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-icon {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(255,255,255,0.22);
}
.blog-card-icon svg {
  width: 56px;
  height: 56px;
  stroke: rgba(255,255,255,0.95);
  fill: none;
}
.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  align-self: flex-start;
}
.blog-card-meta {
  font-size: 13px;
  color: var(--dark-300);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card p {
  font-size: 14px;
  color: var(--dark-300);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.blog-card-link {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   "ŞU AN CANLI" mini blok
   ============================================================ */
.live-mini {
  text-align: center;
  margin: 60px 0;
}
.live-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.live-mini-tag .live-dot {
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.live-mini-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .live-mini-grid { grid-template-columns: 1fr; }
  .live-mini-dots { display: none; }
}
.live-mini-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  border-top: 4px solid;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.live-mini-card.c1 { border-color: var(--primary); }
.live-mini-card.c2 { border-color: var(--accent); }
.live-mini-card.c3 { border-color: var(--success); }
.live-mini-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.live-mini-card.c1 .live-mini-icon { background: var(--primary-soft); color: var(--primary-dark); }
.live-mini-card.c2 .live-mini-icon { background: var(--accent-soft); color: var(--accent-dark); }
.live-mini-card.c3 .live-mini-icon { background: rgba(39,174,96,0.1); color: var(--success); }
.live-mini-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.live-mini-card.c1 .live-mini-num { color: var(--primary); }
.live-mini-card.c2 .live-mini-num { color: var(--accent); }
.live-mini-card.c3 .live-mini-num { color: var(--success); }
.live-mini-label {
  font-size: 14px;
  color: var(--dark-300);
  font-weight: 500;
}
.live-mini-dots {
  display: flex;
  gap: 6px;
}
.live-mini-dots span {
  width: 6px; height: 6px;
  background: var(--light-400);
  border-radius: 50%;
}

.live-mini-cta {
  margin-top: 32px;
  text-align: center;
}
.live-mini-cta h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.live-mini-cta p {
  color: var(--dark-300);
  margin-bottom: 24px;
}
.live-mini-cta strong { color: var(--primary); }

/* ============================================================
   FİRMA CTA BANNER (büyük yeşil)
   ============================================================ */
.firma-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-2xl);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.firma-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 40%);
}
.firma-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.firma-cta h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}
.firma-cta p {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.firma-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .firma-cta { padding: 40px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

.footer-logo {
  filter: brightness(0) invert(1) sepia(1) saturate(0) hue-rotate(0deg);
  /* TAŞIRGO logosu beyaz versiyonu yok, dolayısıyla CSS ile beyazlatamayız;
     gerçekte logo zaten renkli kalsın */
  filter: none;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.95);
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-payment {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-payment svg {
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 4px;
}
.footer-pay-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
}

/* ============================================================
   FAB - Sağ alttaki Teklif Al butonu
   ============================================================ */
.fab-quote {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: var(--accent);
  color: #fff;
  padding: 16px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(240,123,46,0.4);
  transition: all 0.2s;
  font-family: var(--font-display);
}
.fab-quote:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,123,46,0.5);
}
@media (max-width: 540px) {
  .fab-quote {
    padding: 14px 20px;
    font-size: 13px;
    right: 16px;
    bottom: 16px;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--dark-300);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--dark-300);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb-sep { color: var(--light-400); }
.breadcrumb [aria-current] {
  color: var(--primary);
  font-weight: 500;
}

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: white;
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-500);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--light-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--light-100);
  transition: all 0.2s;
  color: var(--dark);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px var(--primary-ghost);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}
.alert-error {
  background: rgba(235,87,87,0.08);
  border: 1px solid var(--danger);
  color: var(--danger);
}
.alert-success {
  background: rgba(39,174,96,0.08);
  border: 1px solid var(--success);
  color: var(--success);
}

/* ============================================================
   GENERIC
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* Article (blog detay, hizmet detay vb.) */
.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0;
}
.article-header { text-align: center; margin-bottom: 40px; }
.article-meta {
  font-size: 14px;
  color: var(--dark-300);
  margin-bottom: 12px;
}
.article-cover {
  aspect-ratio: 16/8;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--light-200);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark-500);
}
.article-body h2 { margin: 36px 0 14px; color: var(--dark); }
.article-body h3 { margin: 28px 0 12px; color: var(--dark); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--dark); font-weight: 700; }
.article-body img { border-radius: var(--radius-md); margin: 24px 0; }
.article-body a {
  color: var(--primary-dark);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

/* Şehir SEO bloğu */
.city-seo-block {
  background: white;
  padding: 40px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--light-200);
  margin: 40px 0;
}
.city-seo-header { margin-bottom: 24px; }
.city-seo-eyebrow {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.city-seo-block h2 { font-size: 26px; color: var(--dark); margin-bottom: 0; }
.city-seo-intro p {
  color: var(--dark-500);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}
.city-seo-services-wrap { margin-top: 32px; }
.city-seo-services-wrap h3 { font-size: 18px; margin-bottom: 16px; color: var(--dark); }
.city-seo-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.city-seo-service {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--light-100);
  border-radius: var(--radius-md);
}
.city-seo-service-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-seo-service h4 { font-size: 15px; margin-bottom: 4px; color: var(--dark); }
.city-seo-service p { font-size: 13px; color: var(--dark-300); margin: 0; line-height: 1.5; }
.city-seo-districts { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--light-200); }
.city-seo-districts h3 { font-size: 18px; margin-bottom: 8px; }
.city-seo-districts p { color: var(--dark-300); margin-bottom: 16px; font-size: 14px; }
.city-seo-district-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.city-seo-district-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.city-seo-district-tag:hover {
  background: var(--primary-dark);
  color: white;
}
.city-seo-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  border-radius: var(--radius-lg);
  margin-top: 32px;
  flex-wrap: wrap;
}
.city-seo-cta-text strong {
  display: block;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
}
.city-seo-cta-text p { color: var(--dark-300); margin: 0; font-size: 14px; }
@media (max-width: 640px) {
  .city-seo-block { padding: 24px; }
  .city-seo-cta { flex-direction: column; align-items: stretch; text-align: center; }
}

/* Hata sayfaları */
.error-page {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.error-page-icon { font-size: 80px; margin-bottom: 20px; }
.error-page h1 { font-size: 48px; margin-bottom: 12px; }
.error-page p {
  color: var(--dark-300);
  font-size: 18px;
  margin-bottom: 32px;
}

/* ============================================================
   ABOUT-SEO BÖLÜMÜ - kamyon ve koli SVG'leri ile yan dekorasyon
   ============================================================ */
.about-seo-section {
  position: relative;
  overflow: hidden;
}
.about-seo-wrap {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr minmax(140px, 200px);
  gap: 28px;
  align-items: center;
}
.about-seo-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-seo-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-seo-side svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
.about-truck-svg-left {
  filter: drop-shadow(0 6px 12px rgba(26, 175, 160, 0.18));
}
.about-box-svg {
  filter: drop-shadow(0 6px 12px rgba(26, 175, 160, 0.18));
}

/* Mobilde SVG'ler küçülüp metnin üstüne/altına kayar */
@media (max-width: 900px) {
  .about-seo-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-seo-side {
    max-height: 110px;
    opacity: 0.9;
  }
  .about-seo-side svg { max-width: 130px; }
  .about-seo-side-left  { order: 1; }
  .about-seo-content    { order: 2; }
  .about-seo-side-right { order: 3; }
}
@media (max-width: 520px) {
  .about-seo-side { display: none; } /* dar telefonda sadece metin */
}

/* "highlight" sınıfı - hero h1 için */
.highlight {
  color: var(--accent);
  text-shadow: 0 1px 0 rgba(212, 99, 30, 0.35), 0 2px 14px rgba(240, 123, 46, 0.35);
  -webkit-text-stroke: 0.4px rgba(255, 140, 60, 0.25);
  font-weight: 800;
}


/* City chips grid */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.city-link {
  display: inline-block;
  padding: 10px 18px;
  background: white;
  color: var(--dark-500);
  border: 1px solid var(--light-300);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
}
.city-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* Sigortalı/Asansörlü/Hızlı badge'ler (Hizmet Bölgeleri sayfası) */
.region-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.region-badge {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ============================================================
   HAREKETLİ ARKA PLAN İKONLARI (Floating Background Icons)
   ============================================================ */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fi {
  position: absolute;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: rgba(255,255,255,0.14);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: fi-float 6s ease-in-out infinite;
}
.fi:nth-child(odd)  { animation-name: fi-float-slow; animation-duration: 7.5s; }
.fi:nth-child(3n)   { animation-name: fi-drift; animation-duration: 8s; }
.fi-lg { width: 44px; height: 44px; stroke: rgba(255,255,255,0.18); stroke-width: 1.3; }
.fi-sm { width: 22px; height: 22px; stroke: rgba(255,255,255,0.10); }
.fi-xs { width: 16px; height: 16px; stroke: rgba(255,255,255,0.07); animation-duration: 9s !important; }

/* Hero için (koyu turkuaz zemin) - beyaz tonlu stroke */
.hero .fi          { stroke: rgba(255,255,255,0.14); }
.hero .fi-lg       { stroke: rgba(255,255,255,0.18); }
.hero .fi-sm       { stroke: rgba(255,255,255,0.10); }
.hero .fi-xs       { stroke: rgba(255,255,255,0.08); }

@keyframes fi-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-14px) rotate(3deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
  75% { transform: translateY(-18px) rotate(4deg); }
}
@keyframes fi-float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-20px) rotate(-5deg); }
  60% { transform: translateY(-8px) rotate(6deg); }
}
@keyframes fi-drift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(8px,-12px) rotate(4deg); }
  66% { transform: translate(-6px,-20px) rotate(-3deg); }
}

/* Hero ve firma-cta'ı relative + içerikleri z-index ayarla */
.hero, .firma-cta { position: relative; }
.hero .container, .firma-cta-inner { position: relative; z-index: 1; }

/* ============================================================
   HERO FORM - 7 adımlı wizard
   ============================================================ */
.hf-step { display: none; }
.hf-step.active { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HERO FORM - 8 adımlı wizard (resim 2 stili)
   Header: turkuaz zemin | Gövde: beyaz zemin
   ============================================================ */
.hero-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35), 0 12px 30px -10px rgba(0,0,0,0.18);
  padding: 0;
  overflow: hidden;
  border: none;
}

/* Üst turkuaz başlık + progress alanı */
.hero-form-card > h2,
.hero-form-card > .hf-progress,
.hero-form-card > .hf-step-label {
  display: none; /* Eski yapıdan kalma - artık header bloğu kullanıyoruz */
}

/* Header bloğu */
.hero-form-card::before {
  content: '';
  display: block;
  position: relative;
}

/* Yeni yapı: header'ı içine alacak şekilde kart düzenle */
.hero-form-card {
  display: flex;
  flex-direction: column;
}
.hero-form-card .hf-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1AAFA0 100%);
  color: #fff;
  padding: 26px 30px 22px;
}
.hero-form-card .hf-header h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}
.hero-form-card .hf-progress {
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
  margin: 0;
}
.hero-form-card .hf-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.hero-form-card .hf-step-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 12px 0 0;
  font-weight: 500;
}

/* Gövde (beyaz) */
.hero-form-card .hf-body {
  padding: 26px 30px 30px;
  background: #fff;
  flex: 1;
}

/* Adım soruları */
.hero-form-card .hf-step h3 {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

/* Radyo seçenekleri - resim 2 stili */
.hf-radio-group { display: flex; flex-direction: column; gap: 10px; }
.hf-radio-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  background: #F9FAFB;
}
.hf-radio-opt:hover {
  border-color: var(--primary);
  background: #fff;
}
.hf-radio-opt.selected {
  border: 2px solid var(--primary);
  background: var(--primary-soft);
  padding: 14px 17px; /* compensate 0.5px border */
}
.hf-radio-opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  margin: 0;
  position: relative;
  flex-shrink: 0;
  transition: all 0.18s ease;
  background: #fff;
}
.hf-radio-opt.selected input[type="radio"] {
  border-color: var(--primary);
  border-width: 2px;
}
.hf-radio-opt.selected input[type="radio"]::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--primary);
  border-radius: 50%;
}
.hf-radio-opt-label {
  font-weight: 500;
  font-size: 15px;
  color: #1F2937;
  letter-spacing: 0.1px;
}
.hf-radio-opt.selected .hf-radio-opt-label {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Form alanları (input/select) - beyaz gövde içinde */
.hero-form-card .form-field { margin-bottom: 12px; }
.hero-form-card .form-field input,
.hero-form-card .form-field select {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  background: #F9FAFB;
  color: #1F2937;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  outline: none;
  transition: all 0.18s ease;
}
.hero-form-card .form-field input:hover,
.hero-form-card .form-field select:hover {
  border-color: var(--primary);
  background: #fff;
}
.hero-form-card .form-field input:focus,
.hero-form-card .form-field select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,175,160,0.15);
}
.hero-form-card .form-field input::placeholder {
  color: #9CA3AF;
}
.hero-form-card .form-field select:disabled {
  background: #F3F4F6;
  color: #9CA3AF;
  cursor: not-allowed;
}

/* Geri/İleri butonları */
.hf-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  align-items: stretch;
}
.hf-actions .btn { flex: 1; }
.hf-actions .btn-back {
  flex: 0 0 auto;
  min-width: 100px;
  background: #fff;
  color: var(--dark);
  border: 1.5px solid #E5E7EB;
  font-weight: 600;
}
.hf-actions .btn-back:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: #fff;
}
.hf-actions .btn-accent {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: none;
  font-size: 15px;
}
.hf-actions .btn-accent:hover {
  background: var(--accent-dark);
}

/* OTP / Doğrulama ekranı */
.hf-otp-info {
  background: #ECFDF5;
  color: var(--dark);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 18px;
  border: 1px solid #A7F3D0;
}
.hf-otp-icon { font-size: 28px; margin-bottom: 6px; }
.hf-otp-title {
  font-weight: 600;
  font-size: 14px;
  color: #128C7E;
  margin-bottom: 6px;
}
.hf-otp-phone { font-size: 13px; color: var(--dark-300); }
.hf-otp-phone span { font-weight: 700; color: var(--dark); }

.hf-otp-expire-wrap { text-align: center; margin-bottom: 14px; }
.hf-otp-expire-label { font-size: 13px; color: var(--dark-300); margin-bottom: 4px; }
.hf-otp-expire {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.hf-otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 380px;
  margin: 0 auto;
}
.hf-otp-inputs .verify-digit {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: all 0.18s ease;
}
.hf-otp-inputs .verify-digit:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240,123,46,0.2);
  transform: scale(1.05);
}

.btn-resend {
  background: #fff;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-resend:not(:disabled):hover {
  background: var(--primary-soft);
}
.btn-resend:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  border-color: #E5E7EB;
  color: var(--dark-300);
}

.hf-error {
  background: #FEE2E2;
  color: #B91C1C;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-top: 10px;
  border: 1px solid #FCA5A5;
}

/* Başarı ekranı */
.hf-success { text-align: center; padding: 20px 0; }
.hf-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.hf-success h3 {
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 10px;
}
.hf-success p {
  color: var(--dark-300);
  font-size: 14px;
  line-height: 1.6;
}
.hf-track-code {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 999px;
  margin-top: 16px;
  letter-spacing: 1px;
  border: 1px solid var(--primary);
}

/* Adım gösterim/gizleme */
.hf-step { display: none; }
.hf-step.active { display: block; animation: hf-fadeIn 0.25s ease; }
@keyframes hf-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .hero-form-card .hf-header { padding: 22px 22px 18px; }
  .hero-form-card .hf-body { padding: 22px 22px 24px; }
  .hf-otp-inputs { gap: 6px; }
}

/* ============================================================
   CANLI FIRSATLAR SAYFASI (cf-* prefix)
   ============================================================ */

/* 4'lü stat kartları */
.cf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .cf-stats { grid-template-columns: repeat(2, 1fr); }
}
.cf-stat-card {
  background: #fff;
  padding: 22px 20px;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 8px;
}
.cf-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #1F2937;
  line-height: 1;
}
.cf-stat-label {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

/* Filtre paneli */
.cf-filters {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 20px 22px;
}
.cf-filter-label {
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.cf-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.cf-pill:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}
.cf-pill.active {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 700;
}
.cf-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Talep kartları grid */
.cf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .cf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .cf-grid { grid-template-columns: 1fr; } }

.cf-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.cf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.85;
}
.cf-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(26,175,160,0.18);
}

/* Üst kısım: NEREDEN → NEREYE */
.cf-card-route {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #E5E7EB;
  padding-right: 60px; /* Live badge için yer */
}
.cf-card-route-side {
  min-width: 0;
}
.cf-card-route-right {
  text-align: left;
}
.cf-card-side-label {
  font-size: 9px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.cf-card-side-value {
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cf-card-arrow {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-top: 8px;
}

.cf-card-live-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(39,174,96,0.35);
}
.cf-card-live-dot {
  width: 7px;
  height: 7px;
  background: #2ECC71;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.7);
  animation: cf-pulse 1.2s ease-in-out infinite;
}
@keyframes cf-pulse {
  0%   { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
  70%  { opacity: 0.6; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(46,204,113,0); }
  100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* Talep Kodu satırı */
.cf-card-code {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.3px;
  padding: 5px 10px;
  background: #F3F4F6;
  border-radius: 8px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 6px;
}
.cf-card-code strong {
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-left: 2px;
}

/* Detay grid: Eski ev / Yeni ev / Paketleme */
.cf-card-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(26,175,160,0.04) 0%, rgba(45,156,219,0.04) 100%);
  border: 1px dashed rgba(26,175,160,0.18);
  border-radius: 10px;
  margin: 8px 0;
}
.cf-card-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cf-card-detail-item small {
  font-size: 9px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cf-card-detail-item span {
  font-size: 12px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.3;
}

/* Meta chip'ler */
.cf-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cf-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  color: #4B5563;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}
.cf-chip-type {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-color: var(--primary);
}

/* Status row */
.cf-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  background: #F9FAFB;
}
.cf-card-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cf-card-status-pending   { background: #ECFDF5; color: #047857; }
.cf-card-status-offered   { background: #FEF3C7; color: #B45309; }
.cf-card-status-accepted  { background: #DBEAFE; color: #1D4ED8; }
.cf-card-status-completed { background: #D1FAE5; color: #047857; }

.cf-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--primary-soft);
  border-radius: 8px;
}
.cf-card-price-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}
.cf-card-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}

/* Alt: zaman + buton */
.cf-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}
.cf-card-time {
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 500;
}
.cf-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
}
.cf-card-cta:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateX(2px);
}
.cf-card-cta-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
}
.cf-card-cta-secondary:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* ============================================================
   BİZ NE YAPIYORUZ - "Siz bir form, 500+ nakliyeci teklif verir"
   ============================================================ */
.bnyz-card {
  background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
  border: 1px solid #FDBA74;
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 980px) {
  .bnyz-card { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
}

.bnyz-eyebrow {
  display: inline-block;
  background: rgba(240,123,46,0.12);
  color: var(--accent-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.bnyz-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dark);
}
.bnyz-accent {
  color: var(--accent);
}
.bnyz-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark-500);
  margin-bottom: 24px;
}

.bnyz-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bnyz-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bnyz-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bnyz-features li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bnyz-features li strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.bnyz-features li span {
  font-size: 13px;
  color: var(--dark-300);
  line-height: 1.5;
}

/* Network görseli (sağ taraf) */
.bnyz-network {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.bnyz-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bnyz-line {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 5 4;
  opacity: 0.55;
  animation: bnyz-flow 2s linear infinite;
}
@keyframes bnyz-flow {
  to { stroke-dashoffset: -18; }
}

.bnyz-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bnyz-center-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(26,175,160,0.2), 0 8px 24px -4px rgba(26,175,160,0.4);
}
.bnyz-center-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

.bnyz-firma {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
  /* Konumlar class'lara göre */
}

/* ============================================================
   DESKTOP - 6'lı hexagon düzeni
   Merkez (50%, 50%) + çevredeki 6 nokta
   ============================================================ */
.bnyz-firma--top {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.bnyz-firma--right-top {
  top: 30%;
  right: 8%;
}
.bnyz-firma--right-bottom {
  bottom: 30%;
  right: 8%;
}
.bnyz-firma--bottom {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.bnyz-firma--left-bottom {
  bottom: 30%;
  left: 8%;
}
.bnyz-firma--left-top {
  top: 30%;
  left: 8%;
}

.bnyz-firma-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 4px);
  font-size: 10px;
  color: var(--dark-500);
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}
/* Alt sıradaki firmalar (D, C, E) için label'ı ikonun ALTINA al */
.bnyz-firma--bottom .bnyz-firma-label,
.bnyz-firma--right-bottom .bnyz-firma-label,
.bnyz-firma--left-bottom .bnyz-firma-label {
  bottom: auto;
  top: calc(100% + 4px);
}
.bnyz-firma-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1F2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.25);
}

.bnyz-extra {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 12px -2px rgba(240,123,46,0.4);
}

/* ============================================================
   MOBİL DÜZELTMELER (v=8)
   ============================================================ */

/* ---- Body lock when mobile menu is open ---- */
body.nav-locked { overflow: hidden; }

/* ---- Mobil menü backdrop ---- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s var(--ease, ease);
  pointer-events: none;
}
.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 981px) {
  .nav-backdrop { display: none !important; }
}

/* ---- Mobil menü grupları (Kurumsal / Yasal / Auth butonları) ---- */
.nav-mobile-extra { display: none; }

@media (max-width: 980px) {
  /* Mobil menü tam ekran drawer - ekran yüksekliğini doldur, sağda boşluk bırakma */
  .main-nav {
    position: fixed !important;
    top: var(--header-h) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--dark, #0F1923) !important;
    color: #fff !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px !important;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.45);
    transform: translateY(-110%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1) !important;
    z-index: 99;
    height: calc(100vh - var(--header-h));
    height: calc(100svh - var(--header-h));
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.is-open { transform: translateY(0) !important; }

  /* Üstteki ana nav linkleri (Ana Sayfa, Teklif Al, vb.) */
  .main-nav .nav-item {
    display: block;
    padding: 13px 0 !important;
    width: 100%;
    color: #E5EDF2 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 0 !important;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
  }
  .main-nav .nav-item.is-active {
    color: var(--primary, #1AAFA0) !important;
    font-weight: 700;
  }
  .main-nav .nav-item:hover {
    color: var(--primary, #1AAFA0) !important;
  }

  /* Mobilde altta gösterilen Kurumsal & Yasal grupları */
  .nav-mobile-extra {
    display: block;
    margin-top: 18px;
    padding-top: 8px;
  }
  .nav-mobile-group {
    margin-top: 18px;
  }
  .nav-mobile-group h4 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: 0.2px;
  }
  .nav-mobile-group .nav-item-sm {
    display: block;
    padding: 9px 0;
    color: #B6C4CE;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
  .nav-mobile-group .nav-item-sm:hover {
    color: var(--primary, #1AAFA0);
  }

  /* Mobil Auth butonları (menü içinde) */
  .main-nav .mobile-auth-btns {
    display: flex !important;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav .mobile-auth-btns .btn {
    flex: 1;
    padding: 12px 14px !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    border: 0;
  }
  .main-nav .mobile-auth-btns .btn-mob-login {
    background: var(--primary, #1AAFA0);
    color: #fff !important;
  }
  .main-nav .mobile-auth-btns .btn-mob-firma {
    background: var(--accent, #F07B2E);
    color: #fff !important;
  }
}

/* ---- BNYZ NETWORK MOBİL DÜZELTMESİ ---- */
/* Mobilde 6 firma yuvarlağı üst üste biniyordu. Daha sıkı bir
   konumlama + küçük capsule boyutu + label sığsın diye genişlik
   ile görsel kirliliği temizliyoruz. */
/* ============================================================
   MOBİL - bnyz network düzeni
   Tüm 6 firma ve merkez SİZ, viewport içinde simetrik durur.
   Label'lar her zaman ikonun ALTINDA gösterilir (taşma riski olmasın).
   ============================================================ */
@media (max-width: 600px) {
  .bnyz-network {
    max-width: 320px;
    aspect-ratio: 1 / 1.05;
    margin: 0 auto 40px;
    padding: 18px 14px 0;  /* label/extra rozetinin sığması için iç boşluk */
  }
  .bnyz-firma {
    width: 44px;
    height: 44px;
  }
  .bnyz-firma-icon {
    width: 44px;
    height: 44px;
  }
  .bnyz-firma-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .bnyz-firma-label {
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    /* Mobilde tüm label'lar ikonun ÜSTÜNDE - label alanı taşmayı önlemek için margin */
  }

  /* Üst ve alt firmalar - merkez ekseninde */
  .bnyz-firma--top {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
  }
  .bnyz-firma--bottom {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Yan firmalar - sol sağ simetrik, içeride
     calc ile hassas konumla; viewport'tan taşma yok. */
  .bnyz-firma--left-top {
    top: 32%;
    left: 4%;
  }
  .bnyz-firma--left-bottom {
    bottom: 32%;
    left: 4%;
  }
  .bnyz-firma--right-top {
    top: 32%;
    right: 4%;
  }
  .bnyz-firma--right-bottom {
    bottom: 32%;
    right: 4%;
  }

  /* Mobilde tüm yan firmaların label'ı ikonun ÜSTÜNDE
     (alt sıradaki yan firmalar dahil, sol-sağ %4 dar alanda
     altta gösterirsen +500 rozeti veya overflow ile çakışır) */
  .bnyz-firma--left-top .bnyz-firma-label,
  .bnyz-firma--right-top .bnyz-firma-label {
    bottom: calc(100% + 4px);
    top: auto;
  }
  .bnyz-firma--left-bottom .bnyz-firma-label,
  .bnyz-firma--right-bottom .bnyz-firma-label {
    bottom: auto;
    top: calc(100% + 4px);
  }

  /* Merkez biraz küçülsün */
  .bnyz-center-icon { width: 60px; height: 60px; }
  .bnyz-center-icon svg { width: 24px !important; height: 24px !important; }
  .bnyz-center-label { font-size: 11px; }

  /* SVG çizgileri */
  .bnyz-line { stroke-width: 1.5; }

  /* +500 rozeti */
  .bnyz-extra {
    bottom: -22px;
    font-size: 11px;
    padding: 5px 14px;
  }
}

/* Çok dar ekranlar (≤360px) - daha sıkı konumlama */
@media (max-width: 360px) {
  .bnyz-network {
    max-width: 290px;
    padding: 16px 8px 0;
  }
  .bnyz-firma { width: 40px; height: 40px; }
  .bnyz-firma-icon { width: 40px; height: 40px; }
  .bnyz-firma-label { font-size: 9.5px; }
  /* Yan firmaları biraz daha içeri çek (label dışa taşmasın) */
  .bnyz-firma--left-top, .bnyz-firma--left-bottom { left: 2%; }
  .bnyz-firma--right-top, .bnyz-firma--right-bottom { right: 2%; }
}

/* ============================================================
   SECTION'LAR ARASI BOŞLUKLARI SIFIRLA
   Tüm sayfalarda section'lar arasındaki dikey padding'leri kaldırır.
   İç başlık/alt boşlukları korunur ki içerik hâlâ okunaklı kalsın.
   ============================================================ */
.section,
.section.section-light,
section.section,
.cta-section,
.about-section,
.about-why-section,
.about-closing-section,
.about-seo-section,
.turkey-map-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Üst üste binen iki section arasında en az minik bir görsel ayırıcı kalsın
   diye section içindeki ilk header/heading'in üst margin'ini koruyoruz */
.section > .container > .section-header,
.section > .container > h2:first-child {
  padding-top: 24px;
}
.section > .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Mobilde de aynı */
@media (max-width: 768px) {
  .section,
  .section.section-light,
  section.section,
  .cta-section,
  .about-section,
  .about-why-section,
  .about-closing-section,
  .about-seo-section,
  .turkey-map-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ============================================================
   FOOTER - MOBİL ORTALAMA & DÜZGÜN HİZALAMA (≤768px)
   Tüm sütun ve kolonlar tek sütun, ortalanmış, eşit nefesli
   ============================================================ */
@media (max-width: 768px) {
  .site-footer {
    padding: 36px 0 20px;
    text-align: center;
  }

  .site-footer .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  /* Tek sütun, ortalı */
  .footer-top {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
    padding-bottom: 28px !important;
    text-align: center !important;
  }

  .footer-col {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Brand kolonu */
  .footer-brand-col {
    align-items: center !important;
  }
  .footer-logo {
    margin: 0 auto 14px !important;
    display: inline-block !important;
  }
  .footer-tagline {
    text-align: center !important;
    margin: 0 auto 16px !important;
    max-width: 300px !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }
  .footer-badges {
    justify-content: center !important;
    gap: 6px !important;
  }
  .footer-badge {
    font-size: 11.5px !important;
    padding: 5px 10px !important;
  }

  /* Kolon başlıkları */
  .footer-col h4 {
    font-size: 14px !important;
    margin-bottom: 14px !important;
    text-align: center !important;
    width: 100%;
  }

  /* Linkler */
  .footer-col ul {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .footer-col ul li {
    margin-bottom: 9px !important;
    text-align: center !important;
  }
  .footer-col ul a {
    font-size: 14px !important;
    display: inline-block;
  }

  /* Alt çubuk - copyright + ödeme */
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 14px !important;
    padding-top: 20px !important;
  }
  .footer-copy {
    font-size: 12px !important;
    line-height: 1.55;
    max-width: 320px;
    margin: 0 auto;
  }
  .footer-payment {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 8px !important;
  }
  .footer-pay-label {
    width: 100%;
    text-align: center;
    font-size: 11px !important;
    margin: 0 !important;
  }
}

/* Çok dar ekranlar (≤360px) - kompakt */
@media (max-width: 360px) {
  .site-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-top { gap: 24px !important; }
  .footer-tagline { font-size: 13px !important; }
  .footer-col ul a { font-size: 13.5px !important; }
}

/* ============================================================
   /teklif-al SAYFASI - aşamalı form standalone görünümü
   Hero formunun aynısı ama hero arka planı olmadan,
   açık zemin üzerinde duracak şekilde
   ============================================================ */
.quote-page-section {
  background: linear-gradient(180deg, #F0FBF8 0%, #FFFFFF 100%);
  padding: 40px 0 56px;
}
.quote-page-section .hero-form-card {
  /* Hero'da daha güçlü gölge, burada biraz daha yumuşak */
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.18), 0 8px 20px -8px rgba(0,0,0,0.10);
}
@media (max-width: 768px) {
  .quote-page-section { padding: 24px 0 40px; }
}
