/* ===== ORTAK DOSYALAR BURAYA GELECEK ===== */
    :root {
      --renk-ana:       #d62828;   /* kırmızı — ana marka rengi */
      --renk-koyu:      #1a1a2e;   /* koyu lacivert — başlık/footer zemin */
      --renk-ikon:      #f4a261;   /* turuncu — ikon vurgu */
      --renk-acik:      #f8f9fa;   /* açık gri — arka plan */
      --renk-metin:     #343a40;
      --ff-baslik:      'Montserrat', sans-serif;
      --ff-metin:       'Open Sans', sans-serif;
    }

/* ===== Page Hero / Breadcrumb (iç sayfalar) ===== */
.page-hero {
  background:
    linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(45,45,68,.92) 100%),
    url('https://placehold.co/1600x400/1a1a2e/2d2d44') center/cover no-repeat;
  color: #fff;
  padding: 48px 0 40px;
}
.page-hero h1 {
  font-family: var(--ff-baslik);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}
.page-hero p {
  color: #d0d0d0;
  font-size: 1rem;
  max-width: 700px;
  margin-bottom: 0;
}
.page-hero-breadcrumb {
  margin-top: 14px;
  --bs-breadcrumb-divider-color: var(--renk-ana);
}
.page-hero-breadcrumb .breadcrumb { margin-bottom: 0; }
.page-hero-breadcrumb a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: .88rem;
}
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb .active {
  color: var(--renk-ana);
  font-weight: 600;
  font-size: .88rem;
}
.page-hero .makale-meta {
  font-size: .85rem;
  color: #b0b8c8;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ===== Sidebar Widget'ları (detay / yazı sayfaları) ===== */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 22px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: var(--ff-baslik);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--renk-koyu);
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.sidebar-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 3px;
  background: var(--renk-ana);
  border-radius: 2px;
}
.sidebar-widget-list { list-style: none; padding: 0; margin: 0; }
.sidebar-widget-list li { border-bottom: 1px solid #f2f2f2; }
.sidebar-widget-list li:last-child { border-bottom: none; }
.sidebar-widget-list li a {
  display: block;
  padding: 10px 2px;
  color: var(--renk-metin);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s, padding-left .2s;
}
.sidebar-widget-list li a:hover {
  color: var(--renk-ana);
  padding-left: 6px;
}
.sidebar-widget-list li a i { color: var(--renk-ana); margin-right: 8px; font-size: .85rem; }
.sidebar-widget-contact p {
  font-size: .88rem;
  color: #666;
  margin-bottom: 16px;
}
.sidebar-widget-contact .btn { margin-bottom: 10px; }
.sidebar-sticky { position: sticky; top: 100px; }

/* ===== Açık Zeminli CTA Kutusu (detay/yazı sayfalarında ortak) ===== */
.cta-box .btn { margin: 4px; }

/* .btn-tel (style.css) koyu hero zemini için beyaz/şeffaf tasarlanmış; açık zeminlerde (sidebar, cta-box) burada override edilir */
.sidebar-widget-contact .btn-tel,
.cta-box .btn-tel {
  background: transparent;
  border: 2px solid var(--renk-koyu);
  color: var(--renk-koyu);
}
.sidebar-widget-contact .btn-tel:hover,
.cta-box .btn-tel:hover {
  background: var(--renk-koyu);
  color: #fff;
}

/* ===== Breadcrumb (genel sayfa içi, sidebar üstü ana içerik için) ===== */
.content-breadcrumb { font-size: .85rem; color: #888; margin-bottom: 18px; }
.content-breadcrumb a { color: var(--renk-ana); text-decoration: none; }
.content-breadcrumb a:hover { text-decoration: underline; }

/* ===== Süreç Adımları (detay sayfalarında ortak) ===== */
.surec-adim {
  background: var(--renk-acik);
  border-radius: 10px;
  padding: 18px;
  height: 100%;
}
.surec-adim .surec-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--renk-ana);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===== Avantaj / Liste Bloğu (detay sayfalarında ortak) ===== */
.hizmet-avantaj-list { list-style: none; padding: 0; margin: 0; }
.hizmet-avantaj-list li { padding: 8px 0; color: var(--renk-metin); }
.hizmet-avantaj-list li i { color: var(--renk-ana); margin-right: 10px; }
.hizmet-avantaj-list li a { color: var(--renk-metin); text-decoration: none; font-weight: 600; }
.hizmet-avantaj-list li a:hover { color: var(--renk-ana); }

/* ===== Makale / Sayfa İçeriği (blog-oku.php ve sayfa.php ortak) ===== */
.makale-icerik h2 {
  font-family: var(--ff-baslik);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--renk-koyu);
  margin-top: 34px;
  margin-bottom: 14px;
}
.makale-icerik h3 {
  font-family: var(--ff-baslik);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--renk-koyu);
  margin-top: 22px;
  margin-bottom: 10px;
}
.makale-icerik p { color: var(--renk-metin); line-height: 1.7; }
