/* =========================================================
   BURSA OTO LASTİKCİM — style.css
   Tema: Kırmızı & Siyah & Beyaz | Mobile-first
   ========================================================= */

/* ── CSS Değişkenleri ──────────────────────────────────── */
:root {
  --red:        #DC2626;
  --red-dark:   #B91C1C;
  --red-light:  #FEE2E2;
  --black:      #111827;
  --dark:       #1F2937;
  --gray:       #6B7280;
  --gray-light: #9CA3AF;
  --border:     #E5E7EB;
  --bg:         #F9FAFB;
  --white:      #FFFFFF;
  --shadow:     0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: .25s ease;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1200px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font); }

/* ── Tipografi ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--gray); }
p:last-child { margin-bottom: 0; }

/* ── Yardımcı Sınıflar ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 4rem 0; }
.section--gray { background: var(--bg); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header h2 { margin-bottom: .5rem; }
.section__header p { max-width: 600px; margin: 0 auto; }
.section__header .line {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.text-red   { color: var(--red); }
.text-center{ text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(min-width:640px)  { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media(min-width:768px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media(min-width:900px)  { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── Butonlar ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--red  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover  { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--dark:hover { background: var(--dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: var(--white); }
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { background: var(--bg); color: var(--black); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #128C7E; border-color: #128C7E; color: var(--white); }
.btn--sm { padding: .5rem 1rem; font-size: .875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Topbar ────────────────────────────────────────────── */
.topbar {
  background: var(--black);
  color: var(--gray-light);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar__link { color: var(--gray-light); display: flex; align-items: center; gap: .35rem; }
.topbar__link:hover { color: var(--white); }
.topbar__hours { display: none; }
.topbar__social { display: flex; gap: .75rem; }
.topbar__social a { color: var(--gray-light); }
.topbar__social a:hover { color: var(--white); }
@media(min-width:640px) { .topbar__hours { display: block; } }

/* ── Site Header ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: background var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--black);
  flex-shrink: 0;
}
.logo:hover { color: var(--red); }
.logo__icon { font-size: 1.8rem; color: var(--red); }
.logo__name {
  font-size: 1rem;
  font-weight: 800;
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.logo__tagline { font-size: .7rem; color: var(--gray); display: block; }

/* Nav */
.main-nav { display: none; }
.nav__list { display: flex; gap: .25rem; }
.nav__list > li > a {
  display: block;
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__list > li.active > a,
.nav__list > li > a:hover { color: var(--red); background: var(--red-light); }
/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: .5rem 0;
}
.dropdown li a {
  display: block;
  padding: .5rem 1rem;
  font-size: .875rem;
  color: var(--dark);
}
.dropdown li a:hover { background: var(--bg); color: var(--red); }
.has-dropdown:hover .dropdown { display: block; }
.arrow { font-size: .7rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__cta { display: none; }

@media(min-width:900px) {
  .main-nav    { display: flex; align-items: center; }
  .hamburger   { display: none; }
  .header__cta { display: inline-flex; }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .875rem 1rem;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .sub { padding-left: 1.5rem; font-size: .9rem; color: var(--gray); }

/* ── Flash Mesaj ───────────────────────────────────────── */
.flash {
  padding: .875rem 0;
  font-weight: 500;
}
.flash > .container { display: flex; align-items: center; justify-content: space-between; }
.flash--success { background: #D1FAE5; color: #065F46; }
.flash--error   { background: #FEE2E2; color: #991B1B; }
.flash--info    { background: #DBEAFE; color: #1E40AF; }
.flash__close   { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: inherit; }

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 60%, #3B0000 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media(min-width:768px) { .hero__inner { grid-template-columns: 1fr 1fr; } }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--red); }
.hero__desc { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero__stat-num { font-size: 2rem; font-weight: 800; color: var(--red); display: block; }
.hero__stat-lbl { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }
.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__wheel {
  width: 280px;
  height: 280px;
  border: 3px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  animation: spin 20s linear infinite;
  background: rgba(255,255,255,.03);
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ── Hizmet Kartları ───────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon { background: var(--red); }
.service-card__icon svg { transition: fill var(--transition); }
.service-card:hover .service-card__icon .icon-em { filter: brightness(100); }
.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p { font-size: .9rem; margin-bottom: 1rem; }
.service-card__price {
  font-size: .8rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.service-card__price span { color: var(--red); font-weight: 700; }
.service-card__link {
  color: var(--red);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.service-card__link:hover { gap: .6rem; }

/* ── Neden Biz ─────────────────────────────────────────── */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}
.feature-item__icon {
  width: 72px; height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(220,38,38,.3);
}
.feature-item h3 { margin-bottom: .5rem; }

/* ── Yorumlar ──────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-card__stars { color: #F59E0B; font-size: 1.15rem; margin-bottom: .75rem; }
.review-card p { font-size: .9rem; font-style: italic; margin-bottom: 1rem; }
.review-card__author { display: flex; align-items: center; gap: .75rem; }
.review-card__avatar {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: .9rem; }
.review-card__date { font-size: .78rem; color: var(--gray); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  background: var(--white);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--red); transition: transform var(--transition); }
.faq-item[open] summary { background: var(--bg); }
.faq-item[open] summary::after { content: '−'; }
.faq-item__body { padding: 1rem 1.25rem; font-size: .9rem; background: var(--bg); }

/* ── Blog Kartları ─────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--bg);
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 1.25rem; }
.blog-card__meta {
  display: flex;
  gap: .75rem;
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: .75rem;
  align-items: center;
  flex-wrap: wrap;
}
.blog-card__cat {
  background: var(--red-light);
  color: var(--red);
  padding: .2rem .6rem;
  border-radius: 4px;
  font-weight: 600;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-card h3 a { color: var(--black); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: .875rem; }

/* ── Galeri ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media(min-width:640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  loading: lazy;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Breadcrumb ────────────────────────────────────────── */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  font-size: .85rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.breadcrumb li a { color: var(--gray); }
.breadcrumb li a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--gray-light); }
.breadcrumb li:last-child { color: var(--black); font-weight: 500; }

/* ── Pagination ────────────────────────────────────────── */
.pagination { text-align: center; padding: 2rem 0; }
.pagination ul { display: inline-flex; gap: .25rem; }
.pagination li a, .pagination li.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--dark);
  transition: all var(--transition);
}
.pagination li a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.pagination li.active { background: var(--red); color: var(--white); border-color: var(--red); font-weight: 700; }

/* ── Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .4rem;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ── İletişim Sayfası ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }
.contact-info { background: var(--black); color: var(--white); padding: 2rem; border-radius: var(--radius-lg); }
.contact-info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item__icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__text span { display: block; font-size: .8rem; color: rgba(255,255,255,.6); }
.contact-info-item__text strong { color: var(--white); }
.contact-form { background: var(--white); border: 1px solid var(--border); padding: 2rem; border-radius: var(--radius-lg); }

/* ── Maps ──────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 350px; border: none; }

/* ── İlçe Sayfası ──────────────────────────────────────── */
.district-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
}
.district-hero h1 { color: var(--white); margin-bottom: .75rem; }
.district-hero p { color: rgba(255,255,255,.8); }

/* ── WhatsApp Float ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,.5); }
.whatsapp-float svg { fill: var(--white); }
.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--black);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,.7); }
.footer__top { padding: 3.5rem 0 2.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width:640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer__logo .logo__icon { color: var(--red); font-size: 1.5rem; }
.footer__col p { font-size: .875rem; line-height: 1.7; }
.footer__social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer__social a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__social a:hover { color: var(--red); }
.footer__heading {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__links li { margin-bottom: .5rem; }
.footer__links a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--red); }
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .875rem;
}
.footer__contact-list svg { flex-shrink: 0; fill: var(--red); margin-top: .15rem; }
.footer__contact-list a { color: rgba(255,255,255,.7); }
.footer__contact-list a:hover { color: var(--red); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
}
.footer__bottom nav { display: flex; gap: 1rem; }
.footer__bottom nav a { color: rgba(255,255,255,.5); }
.footer__bottom nav a:hover { color: var(--white); }

/* ── Page Hero (İç Sayfalar) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.75); }

/* ── Stats Section ─────────────────────────────────────── */
.stats { background: var(--red); color: var(--white); padding: 3rem 0; }
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media(min-width:640px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-size: 2.5rem; font-weight: 800; display: block; }
.stat__lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; opacity: .85; }

/* ── Admin Panel ───────────────────────────────────────── */
.admin-body { background: #F3F4F6; min-height: 100vh; }
.admin-topbar {
  background: var(--black);
  color: var(--white);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-topbar a { color: rgba(255,255,255,.7); font-size: .875rem; }
.admin-topbar a:hover { color: var(--white); }
.admin-topbar__brand { font-weight: 700; color: var(--white); font-size: 1rem; }
.admin-topbar__brand span { color: var(--red); }
.admin-layout { display: flex; min-height: calc(100vh - 48px); }
.admin-sidebar {
  width: 240px;
  background: var(--dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar nav { padding: 1rem 0; flex: 1; }
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
  border-left-color: var(--red);
}
.admin-sidebar nav .nav-sep {
  padding: 1.25rem 1.25rem .5rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}
.admin-main { flex: 1; padding: 2rem; overflow-x: auto; }
.admin-page-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--black); }
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.admin-card__header h2 { font-size: 1.05rem; margin: 0; }
/* Tablo */
.admin-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.admin-table th {
  background: var(--bg);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.admin-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: #FAFAFA; }
.admin-table .actions { display: flex; gap: .5rem; }
/* Badges */
.badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
}
.badge--green  { background: #D1FAE5; color: #065F46; }
.badge--red    { background: #FEE2E2; color: #991B1B; }
.badge--yellow { background: #FEF3C7; color: #92400E; }
.badge--gray   { background: var(--bg); color: var(--gray); }
/* Dashboard stat cards */
.dash-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media(min-width:900px) { .dash-stats { grid-template-columns: repeat(4,1fr); } }
.dash-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dash-stat__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.dash-stat__icon--red  { background: #FEE2E2; }
.dash-stat__icon--blue { background: #DBEAFE; }
.dash-stat__icon--green{ background: #D1FAE5; }
.dash-stat__icon--yel  { background: #FEF3C7; }
.dash-stat__num  { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.dash-stat__label{ font-size: .78rem; color: var(--gray); margin-top: .2rem; }

/* Responsive admin sidebar on mobile */
@media(max-width:768px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; overflow-x: auto; }
  .admin-sidebar nav { display: flex; flex-direction: row; padding: 0; }
  .admin-sidebar nav a { padding: .75rem 1rem; flex-direction: column; font-size: .75rem; gap: .3rem; border-left: none; border-bottom: 3px solid transparent; }
  .admin-sidebar nav a.active, .admin-sidebar nav a:hover { border-bottom-color: var(--red); border-left: none; }
  .admin-sidebar nav .nav-sep { display: none; }
  .admin-main { padding: 1rem; }
}

/* ── Yardımcı ──────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 4px;
}
.text-muted { color: var(--gray); }
.fs-sm { font-size: .85rem; }
.d-flex { display: flex; }
.gap-1  { gap: .5rem; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* ── Yazı (Blog Detay) ─────────────────────────────────── */
.post-content h2, .post-content h3 { margin: 1.75rem 0 .75rem; }
.post-content p { margin-bottom: 1rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.post-content li { margin-bottom: .4rem; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Lazy Load ─────────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity .4s; }
img[loading="lazy"].loaded { opacity: 1; }
