/* ===== BLOG DARK THEME — index.html ile tutarlı ===== */
:root {
  --orange: #F5A623;
  --orange-dark: #E0941A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--dark) !important;
  color: var(--text) !important;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 70px;
  margin: 0;
}
@media(min-width:992px){ body { padding-bottom: 0; } }

a { text-decoration: none; }
section { padding: 0 !important; overflow: visible !important; }

/* ===== NAVBAR ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px; display: flex; align-items: center;
}
.header-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo img { height: 42px; width: auto; }
.nav-call-btn {
  background: var(--orange); color: #000;
  font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 8px;
  transition: background 0.2s; text-decoration: none;
}
.nav-call-btn:hover { background: var(--orange-dark); color: #000; }
.nav-menu-toggle {
  background: none; border: none; color: var(--text); font-size: 26px; cursor: pointer; padding: 4px;
}
.desktop-nav { display: none; align-items: center; gap: 28px; }
.desktop-nav a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.desktop-nav a:hover { color: var(--text); }
.desktop-nav .dropdown { position: relative; }
.desktop-nav .dropdown-menu-dark {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 0; min-width: 220px; z-index: 100;
  margin-top: 8px;
}
.desktop-nav .dropdown:hover .dropdown-menu-dark { display: block; }
.desktop-nav .dropdown-menu-dark a {
  display: block; padding: 10px 18px; font-size: 13px;
  color: var(--text-muted); transition: color 0.2s, background 0.2s;
}
.desktop-nav .dropdown-menu-dark a:hover { color: var(--orange); background: rgba(255,255,255,0.04); }
.mobile-nav-overlay {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark-2); z-index: 999;
  padding: 28px 24px; flex-direction: column; gap: 0; overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  color: var(--text); font-size: 17px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--border); text-decoration: none;
}
.mobile-nav-overlay a.sub { font-size: 14px; color: var(--text-muted); padding-left: 16px; }
@media(min-width:992px) {
  .desktop-nav { display: flex; }
  .nav-menu-toggle { display: none; }
}

/* ===== BREADCRUMB ===== */
.blog-breadcrumb {
  padding: 80px 20px 0;
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: var(--text-muted);
}
.blog-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.blog-breadcrumb a:hover { color: var(--orange); }
.blog-breadcrumb span { color: var(--orange); }
.blog-breadcrumb .sep { opacity: 0.4; }

/* ===== ARTICLE LAYOUT ===== */
.blog-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 20px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media(min-width:992px) {
  .blog-wrap { grid-template-columns: 1fr 340px; }
}

/* ===== ARTICLE ===== */
.article-label {
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px; display: block;
}
.article-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900; line-height: 1.1;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-body { color: rgba(255,255,255,0.85); }
.article-body p { margin-bottom: 18px; line-height: 1.8; font-size: 15px; }
.article-body h2 {
  font-size: 22px; font-weight: 800; color: var(--text);
  margin: 36px 0 14px; letter-spacing: -0.3px;
}
.article-body h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.article-body h4 { font-size: 15px; font-weight: 700; color: var(--orange); margin: 20px 0 8px; }
.article-body ul, .article-body ol {
  margin: 0 0 18px 20px; color: rgba(255,255,255,0.75); font-size: 15px;
}
.article-body li { margin-bottom: 6px; line-height: 1.7; }
.article-body strong { color: var(--text); }

/* Info box */
.info-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box h4 { color: var(--orange); font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.info-box p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.75); }

/* CTA box */
.cta-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  margin: 32px 0;
  text-align: center;
}
.cta-box h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.cta-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.cta-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; }
@media(min-width:480px) { .cta-buttons { flex-direction: row; justify-content: center; } }
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #000;
  font-weight: 800; font-size: 14px;
  padding: 14px 24px; border-radius: 10px; text-decoration: none;
  transition: background 0.2s;
}
.cta-btn-primary:hover { background: var(--orange-dark); color: #000; }
.cta-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 14px 24px; border-radius: 10px; text-decoration: none;
  transition: background 0.2s;
}
.cta-btn-whatsapp:hover { background: #20bc5a; color: #fff; }

/* Table */
.article-body table {
  width: 100%; margin: 20px 0; border-collapse: collapse; font-size: 14px;
}
.article-body th {
  background: var(--dark-3); color: var(--orange);
  padding: 12px 16px; text-align: left; font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.article-body td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.75);
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:hover td { background: rgba(255,255,255,0.03); }

/* Regions grid inside article */
.region-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 16px 0; }
@media(max-width:480px) { .region-cols { grid-template-columns: 1fr; } }

/* ===== SIDEBAR ===== */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.sidebar-card-title {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list-item { font-size: 14px; color: var(--text-muted); }
.contact-list-item a { color: var(--text); font-weight: 600; text-decoration: none; }
.contact-list-item a:hover { color: var(--orange); }
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { border-bottom: 1px solid var(--border); }
.related-list li:last-child { border-bottom: none; }
.related-list a {
  display: block; padding: 10px 0; font-size: 14px;
  color: var(--text-muted); transition: color 0.2s;
}
.related-list a::before { content: '→ '; color: var(--orange); font-size: 12px; }
.related-list a:hover { color: var(--orange); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 100px;
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--orange); color: var(--orange); }

/* Sidebar CTA */
.sidebar-cta {
  background: var(--orange);
  border-radius: 14px; padding: 24px; text-align: center;
}
.sidebar-cta h4 { color: #000; font-weight: 900; font-size: 16px; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(0,0,0,0.65); font-size: 13px; margin-bottom: 16px; }
.sidebar-cta a {
  display: block; background: #000; color: #fff;
  font-weight: 800; font-size: 14px;
  padding: 13px; border-radius: 9px; text-decoration: none;
  transition: background 0.2s;
}
.sidebar-cta a:hover { background: #222; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0D0D0D; border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
@media(min-width:640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(min-width:992px) { .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; } }
.footer-brand-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-top: 14px; max-width: 240px; }
.footer-col-title {
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-nav a::before { content: '— '; font-size: 10px; color: var(--orange); opacity: 0.6; }
.footer-nav a:hover { color: #fff; }
.footer-contact-block { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-line { display: flex; align-items: center; gap: 10px; }
.footer-contact-line .fc-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); min-width: 48px; }
.footer-contact-line a, .footer-contact-line span { font-size: 13px; font-weight: 600; color: var(--text); text-decoration: none; }
.footer-contact-line a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 18px 24px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
@media(min-width:768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-copy a { color: rgba(255,255,255,0.4); text-decoration: underline; }

/* ===== SABİT ALT BAR ===== */
.sticky-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  display: flex; height: 62px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-bottom-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  text-decoration: none; font-size: 15px; font-weight: 800; letter-spacing: 0.3px;
}
.sticky-call { background: #F5F5F0; color: #F5A623; border-top: 1px solid #e0e0e0; }
.sticky-call i { font-size: 18px; }
.sticky-whatsapp { background: #25D366; color: #fff; }
@media(min-width:992px) { .sticky-bottom-bar { display: none; } }
