/* ============================================================
   NetTaksi — Ana CSS Dosyası
   Tema: Sarı (#FFD600) + Siyah (#0D0D0D)
   2026 Google SEO & Core Web Vitals Uyumlu
   ============================================================ */

/* ─── RESET & CUSTOM PROPERTIES ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow:        #FFD600;
  --yellow-dark:   #E6C000;
  --yellow-light:  #FFF176;
  --yellow-bg:     #FFFDE7;
  --black:         #0D0D0D;
  --black2:        #1A1A1A;
  --black3:        #2a2a2a;
  --gray-dark:     #444;
  --gray:          #666;
  --gray-light:    #999;
  --border:        #E0E0E0;
  --white:         #FFFFFF;
  --bg-light:      #F9F9F9;
  --wa-green:      #1a7a3c;
  --wa-green-dark: #155f2f;
  --font-display:  'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;
  --section-gap:   80px;
  --r-sm:   4px;
  --r:      8px;
  --r-lg:   14px;
  --r-xl:   24px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --shadow-y:   0 4px 20px rgba(255,214,0,.30);
  --t: .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover { color: var(--yellow-dark); }

ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--black);
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section         { padding: var(--section-gap) 0; }
.section-sm      { padding: 48px 0; }
.section-lg      { padding: 100px 0; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-title em {
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
  font-style: normal;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--gray-dark);
  max-width: 580px;
  line-height: 1.75;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--yellow);
  color: var(--black);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 0;
  position: relative;
  z-index: 200;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  font-weight: 800;
  font-size: .9rem;
  font-family: var(--font-display);
  letter-spacing: .03em;
}

.topbar-phone:hover { color: var(--black3); }

.topbar-badge {
  background: var(--black);
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 30px;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
  transition: box-shadow var(--t);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  height: 68px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
}

.logo-wordmark span { color: var(--yellow); }

/* ─── NAV ─── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.main-nav > li { position: relative; }

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: all var(--t);
  white-space: nowrap;
}

.main-nav > li > a:hover,
.main-nav > li > a[aria-current="page"] {
  background: var(--yellow);
  color: var(--black);
}

.main-nav > li > a .caret {
  font-size: .65rem;
  margin-left: 2px;
  transition: transform var(--t);
}

.main-nav > li:hover > a .caret { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--black2);
  border: 2px solid var(--yellow);
  border-radius: var(--r);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--t);
  box-shadow: var(--shadow-lg);
  z-index: 500;
  overflow: hidden;
}

.main-nav > li:hover .dropdown,
.main-nav > li:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--t);
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: var(--yellow);
  color: var(--black);
}

.dropdown a .ddot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.dropdown a:hover .ddot { background: var(--black); }

.dropdown-group-header {
  padding: 10px 18px 6px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid rgba(255,214,0,.2);
  margin-top: 4px;
}

.dropdown-group-header:first-child { margin-top: 0; }

.dropdown-wide {
  min-width: 680px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.main-nav > li:hover .dropdown-wide,
.main-nav > li:focus-within .dropdown-wide {
  transform: translateX(-50%) translateY(0);
}

.dropdown-col { border-right: 1px solid rgba(255,255,255,.07); }
.dropdown-col:last-child { border-right: none; }

.dropdown-col-title {
  padding: 12px 18px 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid rgba(255,214,0,.2);
}

.dropdown-col a {
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .83rem;
}

/* HEADER CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  transition: all var(--t);
  flex-shrink: 0;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-y);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  transition: all .3s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: var(--black2);
  border-top: 2px solid var(--yellow);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.mobile-menu.open {
  display: block;
  max-height: 90vh;
  overflow-y: auto;
}

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .93rem;
  font-weight: 600;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all var(--t);
}

.mobile-menu a:hover {
  background: var(--yellow);
  color: var(--black);
  padding-left: 32px;
}

.mobile-menu .mob-group-title {
  padding: 10px 24px 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid rgba(255,214,0,.2);
  margin-top: 6px;
}

.mobile-menu .mob-sub {
  padding-left: 36px !important;
  font-size: .86rem !important;
  color: rgba(255,255,255,.65) !important;
}

.mobile-cta {
  display: block;
  background: var(--yellow);
  color: var(--black) !important;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 24px !important;
  margin: 12px 16px 16px;
  border-radius: var(--r);
  border-bottom: none !important;
}

.mobile-cta:hover {
  background: var(--yellow-dark) !important;
  color: var(--black) !important;
  padding-left: 24px !important;
}

/* ─── STICKY PHONE ─── */
.sticky-phone {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9001;
  display: none;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  border-top: 3px solid var(--black);
  text-decoration: none;
  transition: background var(--t);
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}

.sticky-phone:hover { background: var(--yellow-dark); color: var(--black); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  contain: layout style;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,13,13,.92) 45%, rgba(255,214,0,.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}

.hero h1 .highlight { color: var(--yellow); display: block; }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--yellow); display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--r-sm);
  border: 2px solid var(--yellow);
  transition: all var(--t);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-y);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 2px solid rgba(255,255,255,.35);
  transition: all var(--t);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,214,0,.08);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 2px solid rgba(255,214,0,.25);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
}

.hero-stat {
  flex: 1;
  min-width: 110px;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,214,0,.15);
}

.hero-stat:last-child { border-right: none; }

.hero-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  font-weight: 500;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--yellow);
  padding: 14px 0;
  border-bottom: 3px solid var(--black);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--black);
  border-right: 2px solid rgba(0,0,0,.15);
}

.trust-item:last-child { border-right: none; }

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
  background: var(--yellow-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  /* FIX: overflow hidden + tam genişlik */
  width: 100%;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  color: var(--gray);
  flex-wrap: wrap;          /* FIX: wrap eklendi — taşma önlenir */
  overflow: hidden;
  max-width: 100%;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;             /* FIX: flex child'ın shrink olmasına izin ver */
}

.breadcrumb a {
  color: var(--gray);
  font-weight: 500;
  transition: color var(--t);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;         /* FIX: uzun metinler ellipsis olur */
}

.breadcrumb a:hover { color: var(--black); }
.breadcrumb .sep { color: var(--gray-light); flex-shrink: 0; }

/* ─── INTRO / ABOUT ─── */
.intro-section {
  background: var(--white);
  padding: var(--section-gap) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-img-wrap { position: relative; }

.intro-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 3px solid var(--black);
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 640/480;
  background: #1a1a1a;
  display: block;
}

.intro-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: var(--r);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.intro-img-badge .big { font-family: var(--font-display); font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.intro-img-badge .sm  { font-size: .8rem; font-weight: 700; }

.intro-points { margin: 24px 0 36px; }

.intro-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.intro-point:last-child { border-bottom: none; }

.ip-icon {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.ip-text h4 { font-family: var(--font-body); font-size: .97rem; font-weight: 700; margin-bottom: 2px; color: var(--black); }
.ip-text p { font-size: .87rem; color: var(--gray-dark); margin: 0; line-height: 1.55; }

/* ─── SERVICES ─── */
.services-section {
  background: var(--black);
  padding: var(--section-gap) 0;
}

.services-section .section-label { color: var(--yellow); }
.services-section .section-title { color: var(--white); }
.services-section .section-title em { -webkit-text-stroke: 2px var(--yellow); }
.services-section .section-desc { color: rgba(255,255,255,.65); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--black2);
  border: 2px solid rgba(255,214,0,.2);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,214,0,.15);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ─── CONTENT + SIDEBAR ─── */
.content-section { padding: var(--section-gap) 0; }

/* ================================================================
   FIX: content-grid — mobilde sidebar ekran dışına taşıyordu
   
   Sorun: grid-template-columns: 1fr 340px → sidebar 340px sabit
   genişlikte kalıyor, ekranı aşıyor. 
   
   Çözüm: Desktop'ta 1fr minmax(280px,340px), tablet'te tek sütun.
   Sidebar tam genişliğe geçiyor, taşma yok.
================================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 56px;
  align-items: start;
}

/* ─── ARTICLE META ─── */
.article-meta {
  display: flex;
  flex-wrap: wrap;      /* FIX: wrap — dar ekranda alt satıra geçer */
  gap: 12px 20px;       /* FIX: row-gap eklendi */
  font-size: .82rem;
  color: var(--gray);
  padding: 14px 0 28px;
  border-bottom: 3px solid var(--black);
  margin-bottom: 36px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;  /* FIX: kırılma önlenir */
}

/* ─── ARTICLE CONTENT ─── */
.content-body h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem); /* FIX: clamp ile daha küçük min */
  text-transform: uppercase;
  margin: 56px 0 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--yellow);
  word-break: break-word;                 /* FIX: uzun kelimeler kırılır */
}

.content-body h2:first-child { margin-top: 0; }

.content-body h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem); /* FIX: clamp */
  font-weight: 800;
  margin: 32px 0 12px;
  color: var(--black);
  word-break: break-word;
}

.content-body p {
  margin-bottom: 18px;
  font-size: .97rem;
  line-height: 1.82;
  color: var(--gray-dark);
}

.content-body a { color: var(--black); font-weight: 700; text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 3px; }
.content-body a:hover { color: var(--black3); }

.content-body ul { margin: 16px 0 22px; }

.content-body ul li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: .95rem;
  color: var(--gray-dark);
  border-bottom: 1px solid #f2f2f2;
  line-height: 1.6;
}

.content-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230D0D0D' stroke-width='2'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── ARTICLE IMAGE — CLS FIX ─── */
.article-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 860/484;
  border-radius: var(--r);
  border: 2px solid var(--border);
  margin: 24px 0;
  object-fit: cover;
  background: #1a1a1a;  /* yer tutucu */
}

/* ─── INFO BOXES ─── */
.info-box {
  padding: 20px 24px;
  border-radius: var(--r);
  margin: 24px 0;
  font-size: .95rem;
  line-height: 1.7;
}

.info-box-yellow {
  background: var(--yellow-bg);
  border-left: 5px solid var(--yellow);
  border: 2px solid var(--yellow);
}

.info-box-black {
  background: var(--black);
  border-left: 5px solid var(--yellow);
  color: rgba(255,255,255,.85);
}

.info-box-black a { color: var(--yellow); }
.info-box-green { background: #eef7ee; border-left: 5px solid #28a745; border: 2px solid #c3e6cb; }
.info-box strong { font-weight: 700; }

/* ─── TABLES ─── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* FIX: iOS smooth scroll */
  margin: 24px 0;
  border-radius: var(--r);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-sm);
}

.ntk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  /* FIX: minimum genişlik — dar ekranda scroll görünür */
  min-width: 480px;
}

.ntk-table thead { background: var(--black); color: var(--yellow); }

.ntk-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 800;
  font-size: .83rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ntk-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--gray-dark);
}

.ntk-table tbody tr:hover { background: var(--yellow-bg); }
.ntk-table tbody tr:last-child td { border-bottom: none; }

.ntk-table td a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
}

.compare-nt { background: var(--yellow-bg) !important; font-weight: 700; }
.check { color: #1a7a2a; font-weight: 700; }
.cross { color: var(--gray-light); }

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
  counter-reset: steps;
}

.step-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-lg);
  padding: 28px 18px;
  text-align: center;
  position: relative;
  transition: all var(--t);
}

.step-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-bg);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-card::after {
  content: '›';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--gray-light);
  font-family: var(--font-display);
  font-weight: 900;
}

.step-card:last-child::after { display: none; }

.step-num {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 14px;
}

.step-card h3 { font-family: var(--font-body); font-size: .97rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.step-card p { font-size: .85rem; color: var(--gray); margin: 0; line-height: 1.55; }

/* ─── ADVANTAGES ─── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.adv-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: all var(--t);
}

.adv-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-bg);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.adv-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.adv-card h3 { font-family: var(--font-body); font-size: .97rem; font-weight: 700; margin-bottom: 6px; color: var(--black); }
.adv-card p { font-size: .87rem; color: var(--gray-dark); margin: 0; line-height: 1.6; }

/* ─── SIDEBAR ─── */
.content-sidebar { position: sticky; top: 88px; }

.sidebar-cta-box {
  background: var(--black);
  border: 3px solid var(--yellow);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
  /* FIX: max-width ve overflow — dar ekranda taşmayı önler */
  max-width: 100%;
  overflow: hidden;
}

.sidebar-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sidebar-cta-box p {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}

.sb-phone {
  display: block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .03em;
  padding: 16px;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  transition: background var(--t);
  text-decoration: none;
  /* FIX: uzun telefon numarası taşmasın */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sb-phone:hover { background: var(--yellow-dark); color: var(--black); }

.sb-wa {
  display: block;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--r-sm);
  border: 2px solid var(--wa-green);
  transition: background var(--t);
  text-decoration: none;
}

.sb-wa:hover {
  background: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
  color: var(--white);
}

.sidebar-cities {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.sc-title {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 20px;
}

.city-links { display: flex; flex-direction: column; }

.city-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  color: var(--black);
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  transition: all var(--t);
  text-decoration: none;
}

.city-links a:last-child { border-bottom: none; }

.city-links a::before {
  content: '›';
  color: var(--yellow-dark);
  font-weight: 900;
  font-size: 1.1rem;
}

.city-links a:hover {
  background: var(--yellow);
  color: var(--black);
  padding-left: 24px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.cta-banner::before {
  content: 'NET TAKSİ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 900;
  color: rgba(0,0,0,.05);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .08em;
}

.cta-inner { text-align: center; position: relative; z-index: 1; }

.cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-inner p {
  color: rgba(0,0,0,.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-btn-black {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: var(--r-sm);
  transition: all var(--t);
  text-decoration: none;
}

.cta-btn-black:hover {
  background: var(--black3);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  border: 2px solid var(--wa-green);
  transition: all var(--t);
  text-decoration: none;
}

.cta-btn-wa:hover {
  background: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── COVERAGE ─── */
.coverage-section {
  background: var(--bg-light);
  padding: var(--section-gap) 0;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.region-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.rc-title {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 22px;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 18px 22px;
}

.region-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  font-size: .82rem;
  color: var(--black);
  padding: 5px 13px;
  border-radius: 30px;
  font-weight: 600;
  transition: all var(--t);
  text-decoration: none;
}

.region-tag:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.region-tag.featured {
  background: var(--yellow-bg);
  border-color: var(--yellow);
  color: var(--black);
  font-weight: 700;
}

.region-tag.featured:hover { background: var(--yellow); }

/* ─── FAQ ─── */
.faq-section {
  background: var(--white);
  padding: var(--section-gap) 0;
}

.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-item:hover { border-color: var(--yellow); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 58px 20px 22px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--black);
  font-weight: 300;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform var(--t);
}

.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a.open { max-height: 500px; }

.faq-a-inner {
  padding: 0 22px 22px;
  font-size: .95rem;
  color: var(--gray-dark);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0 22px;
}

.faq-a-inner a { color: var(--black); font-weight: 700; text-decoration: underline; text-decoration-color: var(--yellow); }

/* ─── STATS STRIP ─── */
.stats-section {
  background: var(--black);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,214,0,.15);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}

.stat-lbl { font-size: .83rem; color: rgba(255,255,255,.55); margin-top: 6px; }

/* ─── BLOG ─── */
.blog-section {
  background: var(--bg-light);
  padding: var(--section-gap) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.blog-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

/* FIX: blog-card-img — CLS + mobil uyum */
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black2);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 22px; }

.blog-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.blog-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); line-height: 1.4; }
.blog-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }

.blog-card-meta {
  font-size: .78rem;
  color: #595959;
  display: flex;
  align-items: center;
  flex-wrap: wrap;   /* FIX: dar ekranda sarılabilir */
  gap: 8px 12px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
}

.read-more:hover { color: var(--black3); }

/* ─── FLOAT BUTONLAR ─── */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--t);
  text-decoration: none;
  will-change: transform;
}

.wa-float:hover { transform: scale(1.12); }

.call-float {
  position: fixed;
  bottom: 160px;
  right: 24px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform var(--t);
  text-decoration: none;
  will-change: transform;
}

.call-float:hover { transform: scale(1.1); }
.call-float svg { width: 26px; height: 26px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
  border-top: 4px solid var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-brand-name span { color: var(--yellow); }

.footer-tagline {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #d4d4d4;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
  color: #c8c8c8;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: color var(--t);
  text-decoration: none;
}

.footer-phone-link:hover { color: var(--white); }

.social-links { display: flex; gap: 10px; margin-top: 18px; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--t);
  text-decoration: none;
}

.social-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,214,0,.3);
}

.footer-col a {
  display: block;
  color: #e0e0e0;
  font-size: .87rem;
  padding: 5px 0;
  transition: color var(--t), padding-left var(--t);
  text-decoration: none;
}

.footer-col a:hover { color: var(--yellow); padding-left: 6px; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: #c8c8c8;
}

.footer-bottom strong { color: #ffffff; }

/* ─── SCROLL REVEAL ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .reveal-left.visible { opacity: 1; transform: translateX(0); }
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
================================================================ */

/* ─── TABLET: 1100px ─── */
@media (max-width: 1100px) {
  .dropdown-wide {
    min-width: 540px;
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── TABLET: 1024px ─── */
@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  /* FIX: Sidebar tek sütuna geç — en kritik düzeltme */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* FIX: Sidebar sticky'i kaldır — tek sütunda anlamsız */
  .content-sidebar {
    position: static;
    top: auto;
  }

  /* FIX: Sidebar tam genişlik, taşma yok */
  .sidebar-cta-box { max-width: 100%; }

  /* FIX: Sidebar CTA kartı yatay düzende daha kullanışlı */
  .city-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── MOBİL: 768px ─── */
@media (max-width: 768px) {
  :root { --section-gap: 56px; }

  /* FIX: Topbar gizle */
  .topbar { display: none; }

  /* FIX: Sticky phone göster */
  .sticky-phone { display: flex !important; }

  /* FIX: Body padding — sticky-phone yüksekliği kadar */
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }

  /* FIX: Float butonlar sticky-phone'un üstüne */
  .wa-float {
    bottom: calc(68px + env(safe-area-inset-bottom));
    right: 16px;
    width: 50px;
    height: 50px;
  }

  /* FIX: call-float gizle — sticky-phone zaten arama CTA'sı */
  .call-float { display: none !important; }

  /* Layout */
  .intro-grid { grid-template-columns: 1fr; }
  .intro-img-badge { right: 12px; bottom: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,214,0,.1); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,214,0,.15); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* FIX: Sidebar şehirler grid → tek sütun */
  .city-links { grid-template-columns: repeat(2, 1fr); }

  /* FIX: trust bar */
  .trust-item { font-size: .82rem; padding: 7px 14px; }

  /* FIX: Breadcrumb padding */
  .breadcrumb-bar { padding: 10px 0; }

  /* FIX: Article meta — alt alta düşer */
  .article-meta { gap: 8px; }

  /* FIX: steps → 2 sütun */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* FIX: adv-grid → 1 sütun */
  .adv-grid { grid-template-columns: 1fr; }

  /* FIX: Avantaj kartları sidebar sonrası göster */
  .content-sidebar { order: -1; } /* FIX: Sidebar'ı içerikten önce göster */
}

/* ─── MOBİL: 480px ─── */
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .trust-bar-inner { flex-direction: column; gap: 4px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.1); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .city-links { grid-template-columns: 1fr; }

  /* FIX: table scroll hint */
  .table-wrap::before {
    content: '← Kaydırın →';
    display: block;
    text-align: center;
    font-size: .72rem;
    color: var(--gray);
    padding: 6px;
    background: var(--yellow-bg);
    border-bottom: 1px solid var(--border);
  }

  /* FIX: 480px'de wa-float daha küçük */
  .wa-float {
    width: 46px;
    height: 46px;
    bottom: calc(64px + env(safe-area-inset-bottom));
    right: 12px;
  }

  /* FIX: sidebar CTA font boyutu */
  .sb-phone { font-size: 1.1rem; }
}

/* ─── PRINT ─── */
@media print {
  .site-header, .topbar, .trust-bar, .wa-float, .call-float, .sticky-phone, .mobile-menu { display: none !important; }
  body { padding: 0; }
  a { color: var(--black) !important; }
  .content-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   MOBİL KAYMA ACİL DÜZELTMESİ
   Sorun: content-grid ve services-grid mobilde yan yana kalıyor,
   overflow-x oluşturuyor ve sayfa sağa kayıyor.
================================================================ */

/* Tüm sayfa taşmasını engelle */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Her element kutu modelini düzelt */
* {
  box-sizing: border-box;
}

/* ── Content Grid — sidebar taşma düzeltmesi ── */
@media (max-width: 1024px) {
  .content-grid {
    display: block !important;      /* grid'i tamamen kapat */
    width: 100% !important;
    overflow: hidden;
  }

  .content-body {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .content-sidebar {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    margin-top: 32px;
  }

  .sidebar-cta-box,
  .sidebar-cities {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}

/* ── Services Grid ── */
@media (max-width: 768px) {
  .services-grid {
    display: block !important;
    width: 100% !important;
  }

  .service-card {
    width: 100% !important;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
}

/* ── Genel grid düzeltmesi — tüm grid'ler ── */
@media (max-width: 768px) {
  .intro-grid,
  .regions-grid,
  .adv-grid,
  .steps-grid,
  .stats-grid,
  .blog-grid,
  .footer-grid {
    display: block !important;
    width: 100% !important;
  }

  .intro-grid > *,
  .regions-grid > *,
  .adv-grid > *,
  .steps-grid > *,
  .stats-grid > *,
  .blog-grid > *,
  .footer-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px;
    box-sizing: border-box;
  }

  /* Tablo yatay kaydırma */
  .table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Breadcrumb kırpma */
  .breadcrumb-bar {
    overflow: hidden;
    width: 100%;
  }

  .breadcrumb {
    flex-wrap: wrap;
    word-break: break-word;
  }

  /* Sidebar şehirler listesi */
  .city-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
  }

  /* Hero stats */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,214,0,.15);
    min-width: unset;
  }
}

/* ── 480px ve altı ── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px !important;
  }

  .city-links {
    grid-template-columns: 1fr !important;
  }

  .hero h1 {
    font-size: 2.2rem !important;
    word-break: break-word;
  }

  .section-title {
    font-size: 1.8rem !important;
    word-break: break-word;
  }

  .cta-btn-black {
    font-size: 1rem !important;
    padding: 14px 20px !important;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .cta-btn-wa {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}