/* =========================================
   Fiber Optik Arıza Servis — Ana Stil
   ========================================= */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --renk-ana: #0057b7;
  --renk-vurgu: #ff6b00;
  --renk-metin: #1a1a2e;
  --renk-acik: #f4f7fc;
  --renk-beyaz: #ffffff;
  --renk-sinir: #d1dde8;
  --font-ana: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --golge: 0 2px 12px rgba(0,0,0,.08);
  --radius: 8px;
}

body {
  font-family: var(--font-ana);
  color: var(--renk-metin);
  line-height: 1.6;
  background: var(--renk-beyaz);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main-content {
  flex: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--renk-ana); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Header ---- */
.site-header {
  background: var(--renk-ana);
  color: #fff;
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--golge);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.site-logo { color: #fff; font-size: 1.15rem; display: flex; align-items: center; }
.site-logo:hover { text-decoration: none; opacity: .9; }
.site-logo-img { height: 40px; width: auto; display: block; }

.main-nav ul { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.main-nav a { color: rgba(255,255,255,.9); font-size: .95rem; }
.main-nav a:hover { color: #fff; text-decoration: none; }
.main-nav .cta-btn {
  background: var(--renk-vurgu);
  color: #fff;
  padding: .35rem .9rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.personel-link {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  margin-left: 1rem;
  white-space: nowrap;
}

.personel-link:hover { color: rgba(255,255,255,.85); text-decoration: none; }

/* ---- Butonlar ---- */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-primary { background: var(--renk-vurgu); color: #fff; }
.btn-secondary { background: transparent; color: var(--renk-ana); border: 2px solid var(--renk-ana); }
.btn-link { padding: 0; color: var(--renk-ana); font-weight: 600; }
.btn-primary:hover, .btn-secondary:hover { opacity: .85; text-decoration: none; }
.btn-large { font-size: 1.1rem; padding: .9rem 2rem; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--renk-ana) 0%, #003d82 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.hero-slogan {
  font-family: 'Dancing Script', cursive;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .9;
  margin: 0 auto .5rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  max-width: 750px;
  margin: 0 auto 1rem;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: .9;
}

.hero .btn-primary, .hero .btn-secondary {
  margin: .4rem;
  color: #fff;
}

.hero .btn-secondary { border-color: rgba(255,255,255,.6); }

/* ---- Page Hero ---- */
.page-hero {
  background: var(--renk-acik);
  padding: 3rem 0;
  border-bottom: 1px solid var(--renk-sinir);
}

.page-hero h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; }

/* ---- Sections ---- */
section { padding: 4rem 0; }
.hizmetler-section, .blog-liste { background: var(--renk-acik); }

h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 1rem; }
.section-desc { color: #555; margin-bottom: 2rem; max-width: 600px; }

/* ---- Kartlar ---- */
.hizmet-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.hizmet-kart, .blog-kart {
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--golge);
  transition: transform .15s;
}

.blog-kart-resim-link { display: block; }
.blog-kart-resim {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.blog-kart-resim-link:hover .blog-kart-resim { opacity: .9; }
.blog-kart-govde { padding: 1.5rem; }
.hizmet-kart { padding: 1.5rem; }

.hizmet-kart:hover, .blog-kart:hover { transform: translateY(-3px); }
.hizmet-kart h2, .hizmet-kart h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.hizmet-kart img { border-radius: var(--radius); margin-bottom: 1rem; width: 100%; object-fit: cover; }

/* ---- Hizmet Slider ---- */
.hizmet-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hizmet-slider-viewport {
  overflow: hidden;
  flex: 1;
}

.hizmet-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.hizmet-slider-kart {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--golge);
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}

.hizmet-slider-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.hizmet-slider-kart img,
.hizmet-slider-no-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hizmet-slider-no-img {
  background: linear-gradient(135deg, var(--renk-acik) 0%, #dde8f5 100%);
}

.hizmet-slider-kart-govde {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hizmet-slider-kart-govde h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.hizmet-slider-kart-govde h3 a {
  color: inherit;
  text-decoration: none;
}

.hizmet-slider-kart-govde h3 a:hover { color: var(--renk-vurgu); }

.hizmet-slider-kart-govde p {
  color: #555;
  font-size: .9rem;
  flex: 1;
  margin-bottom: 1rem;
}

/* Prev / Next butonlar */
.hizmet-slider-btn {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid var(--renk-sinir);
  background: var(--renk-beyaz);
  color: var(--renk-koyu);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
  padding: 0;
}

.hizmet-slider-btn:hover {
  background: var(--renk-vurgu);
  border-color: var(--renk-vurgu);
  color: #fff;
}

/* Nokta göstergeleri */
.hizmet-slider-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}

.hizmet-slider-dot {
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  border: none;
  background: var(--renk-sinir);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.hizmet-slider-dot.aktif {
  background: var(--renk-vurgu);
  transform: scale(1.3);
}

/* Tablet */
@media (max-width: 1023px) {
  .hizmet-slider-kart { flex-basis: calc((100% - 1.5rem) / 2); }
}

/* Mobil */
@media (max-width: 639px) {
  .hizmet-slider-kart { flex-basis: 100%; }
  .hizmet-slider-btn  { width: 2rem; height: 2rem; font-size: 1.2rem; }
}

/* ---- Neden Biz ---- */
.ozellik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.ozellik {
  padding: 1.5rem;
  border-left: 4px solid var(--renk-vurgu);
  background: var(--renk-acik);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.ozellik h3 { margin-bottom: .5rem; font-size: 1rem; }

/* ---- SSS ---- */
.sss-section { background: var(--renk-acik); }
.sss-liste { max-width: 760px; }

details {
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--renk-beyaz);
}

summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
}

summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  font-size: 1.2rem;
  color: var(--renk-ana);
}

details[open] summary::after { content: '−'; }

details p {
  padding: 0 1.25rem 1rem;
  color: #444;
}

/* ---- Misyon & Vizyon ---- */
.misyon-section {
  padding: 4rem 0;
  background: #fff;
}

.misyon-ic {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}

.misyon-etiket {
  display: inline-block;
  background: #ede9fe;
  color: #6d28d9;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 2rem;
  margin-bottom: .75rem;
}

.misyon-metin h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.misyon-metin p {
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .85rem;
}

.misyon-liste {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.misyon-liste li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.misyon-ikon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: .15rem;
  flex-shrink: 0;
}

.misyon-liste li div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.misyon-liste li strong {
  font-size: .9rem;
  color: #111827;
}

.misyon-liste li span {
  font-size: .83rem;
  color: #6b7280;
}

.misyon-istatistik {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.misyon-stat {
  background: linear-gradient(135deg, #6d28d9 0%, #4f46e5 100%);
  border-radius: .75rem;
  padding: 1.5rem 1.75rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.misyon-stat-rakam {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}

.misyon-stat-label {
  font-size: .82rem;
  opacity: .85;
}

@media (max-width: 900px) {
  .misyon-ic {
    grid-template-columns: 1fr;
  }
  .misyon-istatistik {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .misyon-stat {
    flex: 1 1 140px;
  }
}

/* ---- Hizmet Bölgesi SEO Bloğu ---- */
.bolge-seo-blok {
  margin-top: 2.5rem;
  padding: 2rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  border-left: 4px solid var(--renk-ana);
}

.bolge-seo-blok h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}

.bolge-seo-blok p {
  color: #374151;
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: .85rem;
}

.bolge-seo-hizmetler {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .85rem;
  margin: 1.25rem 0;
}

.bolge-seo-hizmetler div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.bolge-seo-hizmetler strong {
  font-size: .88rem;
  color: #111827;
}

.bolge-seo-hizmetler span {
  font-size: .8rem;
  color: #6b7280;
}

/* ---- Hakkımızda & Çalışma Modeli ---- */
@media (max-width: 768px) {
  .hk-grid-2   { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .hk-grid-model { grid-template-columns: 1fr !important; }
}

/* ---- Anasayfa Referanslar ---- */
.anasayfa-ref-section {
  padding: 4rem 0;
  background: var(--renk-acik);
}

.anasayfa-ref-ust {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.anasayfa-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.anasayfa-logo-kart {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .6rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: box-shadow .2s;
}

.anasayfa-logo-kart:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.anasayfa-logo-kart a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.anasayfa-logo-kart img {
  max-width: 120px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter .2s;
}

.anasayfa-logo-kart:hover img {
  filter: grayscale(0%);
}

.anasayfa-yorum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.anasayfa-yorum-kart {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  padding: 1.25rem 1.5rem;
}

.anasayfa-yorum-kart blockquote {
  margin: 0 0 .75rem;
  font-size: .9rem;
  color: #374151;
  line-height: 1.65;
  font-style: italic;
}

.anasayfa-yorum-kart footer {
  font-size: .8rem;
  color: #6b7280;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--renk-ana);
  color: #fff;
  text-align: center;
  padding: 3.5rem 0;
}

.cta-section h2 { margin-bottom: .75rem; }
.cta-section p { opacity: .9; margin-bottom: 1.5rem; }

.cta-kutu {
  background: var(--renk-acik);
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  text-align: center;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: .875rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--renk-ana); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- Hizmet Detay ---- */
.hizmet-detay { padding: 3rem 0; }
.hizmet-gorsel { border-radius: var(--radius); margin: 1.5rem 0; width: 100%; max-height: 400px; object-fit: cover; }
.hizmet-icerik { max-width: 760px; line-height: 1.8; }
.hizmet-icerik p { margin-bottom: 1rem; }

/* ---- Blog Detay ---- */
.blog-detay { padding: 3rem 0; }
.blog-header { margin-bottom: 1.5rem; }
.blog-tarih { color: #666; font-size: .875rem; }
.blog-kapak { margin: 0 0 2rem; }
.blog-kapak-resim { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); display: block; }
.blog-kapak figcaption { font-size: .8rem; color: #888; text-align: center; margin-top: .4rem; }
.blog-icerik { max-width: 760px; line-height: 1.8; }
.blog-icerik p { margin-bottom: 1rem; }
.otomatik-link { font-weight: 700; }
.blog-footer { margin-top: 2rem; }

/* Renkli Çerçeve Kutuları */
.cerceve {
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-left: 4px solid;
}
.cerceve-bilgi    { background: #e8f4fd; border-color: #2196F3; }
.cerceve-uyari    { background: #fff8e1; border-color: #FFC107; }
.cerceve-ipucu    { background: #e8f5e9; border-color: #4CAF50; }
.cerceve-dikkat   { background: #fdecea; border-color: #F44336; }
.cerceve-not      { background: #f5f5f5; border-color: #9E9E9E; }
.cerceve-mor      { background: #f3e5f5; border-color: #9C27B0; }
.cerceve-turuncu  { background: #fff3e0; border-color: #FF9800; }
.cerceve-pembe    { background: #fce4ec; border-color: #E91E63; }
.cerceve-lacivert { background: #e8eaf6; border-color: #1a237e; }

/* İlgili Yazılar */
.ilgili-yazilar { margin-top: 2.5rem; padding: 1.5rem; background: #f8f9fa; border-radius: var(--radius); border-left: 4px solid var(--renk-ana); }
.ilgili-yazilar-baslik { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--renk-metin); }
.ilgili-yazilar-liste { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.ilgili-yazilar-liste li::before { content: '→ '; color: var(--renk-ana); font-weight: 700; }
.ilgili-yazilar-liste a { color: var(--renk-metin); font-weight: 600; text-decoration: none; }
.ilgili-yazilar-liste a:hover { color: var(--renk-ana); text-decoration: underline; }
.blog-kart time { color: #666; font-size: .85rem; display: block; margin-bottom: .4rem; }

/* ---- Hizmet Bölgeleri ---- */
.bolge-liste-wrap { padding: 3rem 0; }
.bolge-filtre { margin-bottom: 2.5rem; }
.bolge-ara-input {
  width: 100%;
  max-width: 520px;
  display: block;
  padding: .85rem 1.25rem .85rem 3rem;
  font-size: 1.05rem;
  font-family: inherit;
  border: 2px solid var(--renk-sinir);
  border-radius: 2rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230057b7' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat .9rem center;
  transition: border-color .2s, box-shadow .2s;
}
.bolge-ara-input:focus {
  outline: none;
  border-color: var(--renk-ana);
  box-shadow: 0 0 0 3px rgba(0, 87, 183, .12);
}
.bolge-ara-input::placeholder { color: #aaa; }
.bolge-sonuc-yok { color: #888; margin-top: 1.5rem; font-size: 1rem; }
/* --- Harita --- */
.harita-sayfa { padding: 2rem 0 3rem; }

.harita-ic-antet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--renk-acik);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.harita-ic-antet-metin h1 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: .25rem;
}

.harita-ic-antet-metin p {
  color: #555;
  font-size: .9rem;
  margin: 0;
}

.harita-istat-grup {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.harita-istat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  min-width: 90px;
  text-align: center;
}

.harita-istat-deger {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--renk-ana);
  line-height: 1.1;
}

.harita-istat-baslik {
  font-size: .75rem;
  color: #666;
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

@media (max-width: 640px) {
  .harita-ic-antet { flex-direction: column; align-items: flex-start; }
  .harita-istat-grup { gap: .75rem; }
  .harita-istat { min-width: 75px; padding: .5rem 1rem; }
}
.harita-kapsayici {
  position: relative;
  background: #e8f4f8;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.harita-svg-alan { width: 100%; line-height: 0; }
.harita-svg-alan svg { width: 100%; height: auto; max-height: 70vh; display: block; }
.harita-kapsayici--il { max-width: 720px; margin: 0 auto 2rem; }
.harita-yukleniyor { padding: 3rem; text-align: center; color: #888; font-size: .95rem; }
.harita-hata { padding: 2rem; text-align: center; color: #c00; }

/* Path stilleri */
.harita-il-aktif {
  fill-opacity: .82 !important;
  cursor: pointer;
  transition: fill-opacity .15s;
}
.harita-il-aktif:hover, .harita-il-aktif:focus {
  fill-opacity: 1 !important;
  outline: none;
}
.harita-il-yari {
  fill-opacity: .6 !important;
  cursor: default;
  stroke-dasharray: 4 2;
}
.harita-il-pasif {
  fill: #c8d8e4 !important;
  fill-opacity: 1 !important;
}

/* Tooltip */
.harita-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(0,0,0,.82);
  color: #fff;
  border-radius: 6px;
  padding: .45rem .75rem;
  font-size: .85rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  z-index: 10;
  white-space: nowrap;
}
.harita-tooltip strong { font-size: .95rem; }

/* Açıklama */
.harita-aciklama {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .85rem;
  color: #666;
  margin-bottom: 2rem;
}
.harita-renk-aktif, .harita-renk-yari, .harita-renk-pasif {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  margin-right: .35rem;
  vertical-align: middle;
}
.harita-renk-aktif { background: var(--renk-ana); }
.harita-renk-yari  { background: #f0a0a0; opacity: .7; }
.harita-renk-pasif { background: #c8d8e4; }

/* Bölge kartları */
.bolge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.bolge-grid-alt { margin-top: 2rem; }
.bolge-kart {
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--golge);
  transition: border-color .15s, transform .15s;
}
.bolge-kart-link { display: block; text-decoration: none; color: inherit; }
.bolge-kart-link:hover, .bolge-kart.vurgulu {
  border-color: var(--renk-ana);
  transform: translateY(-2px);
}
.bolge-kart-ust { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.bolge-kart-baslik { font-weight: 600; font-size: 1rem; }
.bolge-ilce-sayisi { font-size: .8rem; color: #888; margin-top: .3rem; }
.bolge-ekip-rozet {
  background: var(--renk-ana);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  border-radius: 20px;
  padding: .15rem .5rem;
  white-space: nowrap;
}
.bolge-ekip-rozet--buyuk { font-size: .85rem; padding: .3rem .75rem; }
.bolge-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.bolge-icerik { line-height: 1.8; margin-bottom: 2rem; }
.alt-bolgeler { margin: 2rem 0; }
.alt-bolgeler h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.ilce-liste { list-style: none; padding: 0; margin: 0 0 1rem; }
.ilce-liste li { padding: .25rem 0; border-bottom: 1px solid var(--renk-sinir); }
.ilce-liste li:last-child { border-bottom: none; }
.ilce-liste a { color: var(--renk-metin); text-decoration: none; }
.ilce-liste a:hover { color: var(--renk-vurgu); }
.ilce-liste--detay li { border: 1px solid var(--renk-sinir); border-radius: var(--radius); padding: .5rem .75rem; }
.bolge-footer { margin-top: 2rem; }

/* ---- İletişim ---- */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.iletisim-liste li { margin-bottom: 1rem; }
.iletisim-liste strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #666; }

.bolge-liste { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.bolge-liste li {
  background: var(--renk-acik);
  border: 1px solid var(--renk-sinir);
  padding: .25rem .75rem;
  border-radius: 99px;
  font-size: .875rem;
}

.form-grup { margin-bottom: 1.25rem; }
.form-grup label { display: block; margin-bottom: .4rem; font-weight: 600; font-size: .9rem; }
.form-grup input, .form-grup textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s;
}
.form-grup input:focus, .form-grup textarea:focus {
  outline: none;
  border-color: var(--renk-ana);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--renk-metin);
  color: rgba(255,255,255,.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: .75rem; }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: #fff; }
.site-footer ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; font-size: .85rem; }

/* ---- Blog Layout ---- */
.blog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  align-items: start;
}

/* Sidebar */
.blog-sidebar { position: sticky; top: 80px; }

.sidebar-blok {
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.sidebar-baslik {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--renk-sinir);
}

/* Arama */
.arama-kutu {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.arama-input { flex: 1; padding: .55rem .9rem; }

.arama-btn {
  flex-shrink: 0;
  background: var(--renk-ana);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .55rem .75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s;
}

.arama-btn:hover { opacity: .85; }

/* Kategoriler */
.kategori-liste { display: flex; flex-direction: column; gap: .25rem; }

.kategori-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem .75rem;
  border-radius: var(--radius);
  color: var(--renk-metin);
  font-size: .9rem;
  transition: background .12s;
}

.kategori-link:hover { background: var(--renk-acik); text-decoration: none; }
.kategori-link.aktif { background: var(--renk-ana); color: #fff; }
.kategori-link.aktif:hover { background: var(--renk-ana); }

.kategori-sayi {
  font-size: .75rem;
  background: rgba(0,0,0,.08);
  padding: .1rem .45rem;
  border-radius: 99px;
  font-weight: 600;
}

.kategori-link.aktif .kategori-sayi { background: rgba(255,255,255,.25); }

/* Son Yazılar */
.son-yazilar-liste { display: flex; flex-direction: column; gap: .85rem; }

.son-yazilar-liste li { border-bottom: 1px solid var(--renk-sinir); padding-bottom: .75rem; }
.son-yazilar-liste li:last-child { border: none; padding: 0; }
.son-yazilar-liste a { font-size: .88rem; font-weight: 600; color: var(--renk-metin); line-height: 1.4; display: block; margin-bottom: .2rem; }
.son-yazilar-liste a:hover { color: var(--renk-ana); text-decoration: none; }
.son-yazilar-liste small { font-size: .78rem; color: #999; }

/* Blog İçerik Alanı */
.blog-icerik { min-width: 0; }

/* Filtre Durum Çubuğu */
.filtre-durum {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: .75rem 1rem;
  background: var(--renk-acik);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  font-size: .875rem;
}

.filtre-etiket {
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  padding: .25rem .65rem;
  border-radius: 99px;
}

.filtre-temizle {
  color: #dc2626;
  font-weight: 600;
  margin-left: auto;
}

.sonuc-sayisi { color: #888; margin-left: .5rem; }

/* Blog Kart Üst */
.blog-kart-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}

.blog-kart-ust time { font-size: .8rem; color: #888; }

.blog-kategori-rozet {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  background: #dbeafe;
  color: #1e40af;
  padding: .15rem .6rem;
  border-radius: 99px;
  text-decoration: none;
}

.blog-kategori-rozet:hover { background: #bfdbfe; text-decoration: none; }

/* Boş Sonuç */
.bos-sonuc {
  grid-column: 1 / -1;
  padding: 3rem;
  text-align: center;
  background: var(--renk-acik);
  border: 1px dashed var(--renk-sinir);
  border-radius: var(--radius);
}

.bos-sonuc p { margin-bottom: 1rem; color: #666; }

/* =========================================
   Referanslar Sayfası
   ========================================= */
.ref-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  align-items: start;
}

.ref-ayirici {
  background: var(--renk-sinir);
  align-self: stretch;
  margin: 1rem 0;
}

.ref-bolum-baslik {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--renk-sinir);
}

.ref-bolum-ikon { font-size: 1.2rem; }

/* ---- Yorum Kartları ---- */
.yorum-liste {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.yorum-kart {
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-left: 4px solid var(--renk-ana);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--golge);
}

.yorum-yildiz {
  margin-bottom: .6rem;
  font-size: 1.1rem;
  letter-spacing: .05em;
}

.yildiz-dolu { color: #f59e0b; }
.yildiz-bos  { color: #d1d5db; }

.yorum-metin {
  font-size: .95rem;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 1rem;
  font-style: italic;
}

.yorum-imza {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.yorum-ad   { font-weight: 700; font-size: .9rem; color: var(--renk-metin); }
.yorum-unvan { font-size: .8rem; color: #6b7280; }

/* ---- Logo Grid ---- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.logo-kart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.logo-kart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 100px;
  padding: 1rem;
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  box-shadow: var(--golge);
  transition: transform .15s, box-shadow .15s;
  overflow: hidden;
}

.logo-kart:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.logo-kart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.logo-kart img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .2s;
}

.logo-kart:hover img { filter: grayscale(0%); }

.logo-firma-adi {
  font-size: .78rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

/* =========================================
   Hamburger Menü
   ========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

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

/* Mobilde nav açılır panel */
.personel-link-mobile { display: none; }

/* ---- Blog Sidebar Toggle (mobil) ---- */
.sidebar-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  margin-bottom: .75rem;
  color: var(--renk-metin);
}

.sidebar-toggle-ok { font-size: 1rem; }

/* =========================================
   İşlem Detay — Aksiyonlar
   ========================================= */
.islem-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.islem-aksiyonlar {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1ebe5d; text-decoration: none; color: #fff; }

.btn-yorum-yapildi {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid #a5d6a7;
}

/* =========================================
   Yorum Ekleme Sayfası
   ========================================= */
.yorum-kap {
  max-width: 680px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.yorum-form-kart {
  background: var(--renk-beyaz);
  border: 1px solid var(--renk-sinir);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--golge);
}

.yorum-hizmet-bilgi {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--renk-sinir);
}

.yorum-hizmet-etiketi {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #6b7280;
}

.yorum-tarih {
  font-size: .85rem;
  color: #6b7280;
}

.yildiz-grup { margin-bottom: 1rem; }

.yildiz-butonlar {
  display: flex;
  gap: .3rem;
  margin-top: .5rem;
}

.yildiz-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .15s, transform .1s;
}
.yildiz-btn:hover,
.yildiz-btn.aktif { color: #f59e0b; }
.yildiz-btn:active { transform: scale(.9); }

.yorum-not {
  font-size: .82rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* =========================================
   Yorum Durum Sayfası (teşekkür / kullanıldı)
   ========================================= */
.durum-kap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.durum-kart {
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--golge);
}

.durum-basari {
  background: #f0fdf4;
  border: 1px solid #86efac;
}

.durum-bilgi {
  background: #eff6ff;
  border: 1px solid #93c5fd;
}

.durum-ikon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: inherit;
}

.durum-basari .durum-ikon { color: #16a34a; }
.durum-bilgi  .durum-ikon { color: #2563eb; }

.durum-kart h1 { font-size: 1.5rem; margin-bottom: .75rem; }
.durum-kart p  { color: #4b5563; margin-bottom: 1.5rem; }

/* =========================================
   Responsive Breakpoints
   ========================================= */

/* Tablet — 900px */
@media (max-width: 900px) {
  .ref-layout {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
  .ref-ayirici {
    height: 1px;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    order: -1; /* Sidebar üstte kalır, toggle ile açılır */
  }
  .sidebar-toggle { display: flex; }
}

/* Mobil — 768px */
@media (max-width: 768px) {
  /* Header */
  .hamburger { display: flex; }
  .personel-link { display: none; }
  .personel-link-mobile { display: block !important; }

  .site-header .container {
    flex-wrap: nowrap;
    position: relative;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--renk-metin);
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }

  .main-nav.acik { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: .5rem 0;
  }

  .main-nav ul li a {
    display: block;
    padding: .8rem 1.5rem;
    color: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .main-nav ul li a:hover { background: rgba(255,255,255,.08); text-decoration: none; }

  .main-nav .cta-btn {
    border-radius: 0;
    background: var(--renk-vurgu);
  }

  /* Layout */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .iletisim-grid { grid-template-columns: 1fr; }
  .hero { padding: 2.5rem 0; }

  /* Hizmet ve blog grid */
  .hizmet-grid, .blog-grid { grid-template-columns: 1fr; }

  /* SSS */
  .ozellik-grid { grid-template-columns: 1fr; }
}

/* Küçük Mobil — 480px */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-desc { font-size: 1rem; }
  .hero .btn-primary, .hero .btn-secondary { display: block; width: 100%; text-align: center; margin: .4rem 0; }

  .adim-grid { flex-direction: column; }
  .adim-ok { transform: rotate(90deg); }

  .ozet-aksiyonlar, .form-aksiyonlar { flex-direction: column; }
  .takip-form, .takip-form-buyuk { flex-direction: column; }

  .islem-baslik { flex-direction: column; align-items: flex-start; }
  .islem-aksiyonlar { width: 100%; }

  .yorum-form-kart { padding: 1.25rem; }
  .yildiz-btn { font-size: 1.6rem; }

  .hafta-nav { flex-wrap: wrap; font-size: .85rem; }
}

/* ── Son Tamamlanan İşlemler ─────────────────────────────── */
.son-isler { margin-top: 2rem; }
.son-isler h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--renk-ana); }

.son-is-kart {
  display: flex;
  gap: 1rem;
  border: 2px solid #111;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: #fff;
}

.son-is-sol {
  flex: 1;
  min-width: 0;
}

.son-is-ust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem;
  margin-bottom: .4rem;
}

.son-is-baslik {
  font-weight: 600;
  font-size: .95rem;
}

.son-is-tarih {
  font-size: .85rem;
  color: #555;
}

.son-is-cizgi {
  border: none;
  border-top: 1.5px solid #111;
  margin: .4rem 0 .6rem;
}

.son-is-aciklama {
  font-size: .9rem;
  color: #333;
  line-height: 1.5;
}

.son-is-sag {
  width: 200px;
  flex-shrink: 0;
  border: 2px solid #111;
  border-radius: 8px;
  padding: .75rem;
  font-size: .85rem;
  background: #fafafa;
}

.son-is-yorum-ad {
  font-weight: 600;
  margin-bottom: .2rem;
}

.son-is-yildiz {
  color: #f4a800;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: .35rem;
}

.son-is-yorum-metin {
  color: #333;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .son-is-kart { flex-direction: column; }
  .son-is-sag { width: 100%; }
}
