/* ═══════════════════════════════════════════════════
   COMPONENTS.CSS — Paylaşılan bileşenler
   Kural: Her bileşen kendi selector'ı altında.
   Sayfa-özgü layout buraya girmez → page CSS'e.
═══════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────
   1. CUSTOM CURSOR
   ──────────────────────────────────────────────── */
.cursor {
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor-r);
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
  opacity: 0.5;
}

/* ────────────────────────────────────────────────
   2. TOUCH RIPPLE (mobil)
   ──────────────────────────────────────────────── */
.touch-ripple {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-ripple);
  touch-action: manipulation;
}
.touch-ripple-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245,197,0,.6) 0%,
    rgba(245,197,0,.15) 55%,
    transparent 72%);
  animation: rippleOut .65s cubic-bezier(.22,.61,.36,1) forwards;
}
.touch-ripple-ring {
  position: absolute; inset: 16%;
  border-radius: 50%;
  border: 1.5px solid rgba(245,197,0,.5);
  animation: rippleRing .65s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes rippleOut {
  0%   { transform: scale(0);   opacity: 1; }
  65%  { opacity: .3; }
  100% { transform: scale(1.2); opacity: 0; }
}
@keyframes rippleRing {
  0%   { transform: scale(.3);  opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ────────────────────────────────────────────────
   3. NAVIGATION
   ──────────────────────────────────────────────── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--space-xl); height: 68px;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.4s, border-color 0.4s;
}

/* Ana sayfada başlangıçta şeffaf */
nav#navbar.nav-home {
  background: transparent;
  border-bottom-color: transparent;
}
nav#navbar.nav-home.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: var(--border-dim);
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--white); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; height: 100%;
}
.nav-links > li {
  position: relative; height: 100%;
  display: flex; align-items: center;
}
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 0 18px; height: 100%;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; color: #ccc;
  transition: color var(--t-base); white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--yellow); }
.nav-links > li > a .arrow {
  font-size: 0.6rem; opacity: 0.6;
  transition: transform 0.2s;
}
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }

/* Hizmetler dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #0f0f0f;
  border: 1px solid #222;
  border-top: 2px solid var(--yellow);
  min-width: 220px; display: none; flex-direction: column;
  z-index: var(--z-dropdown);
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.nav-links > li:not(.nav-dd-wrap):hover .dropdown { display: flex; }
.dropdown a {
  display: block; padding: 10px 20px;
  font-size: 0.8rem; color: #bbb;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.dropdown a:hover { background: #1a1a1a; color: var(--yellow); }
.dropdown-sep { height: 1px; background: #1e1e1e; margin: 6px 0; }
.dropdown-label {
  padding: 8px 20px 4px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: #444;
}

/* Hizmet Bölgeleri scrollable dropdown */
.nav-dd-wrap { position: relative; }
.nav-dd-trigger { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.nav-arr { font-size: 0.6rem; opacity: 0.6; transition: transform 0.25s; }
.nav-dd-wrap.open .nav-arr { transform: rotate(180deg); }

.nav-scroll-dd {
  position: fixed;
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-top: 2px solid var(--yellow);
  width: 220px; max-height: 70vh;
  overflow-y: auto; overflow-x: hidden;
  display: none; z-index: 9999;
  scrollbar-width: thin; scrollbar-color: #333 #0d0d0d;
  box-shadow: 0 20px 48px rgba(0,0,0,0.7);
}
.nav-scroll-dd::-webkit-scrollbar { width: 4px; }
.nav-scroll-dd::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
.nav-dd-wrap.open .nav-scroll-dd { display: block; }

.nav-scroll-dd .dd-bolge-label {
  padding: 10px 16px 5px;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  position: sticky; top: 0; z-index: 1;
}
.nav-scroll-dd .dd-bolge-label:first-child { border-top: none; }
.nav-scroll-dd a {
  display: block; padding: 9px 16px;
  font-size: 0.8rem; color: #999;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-scroll-dd a:hover { background: #161616; color: var(--white); }

/* Bölge arama */
.dd-search-wrap {
  position: sticky; top: 0; z-index: 2;
  padding: 10px 12px;
  background: #0d0d0d;
  border-bottom: 1px solid #1e1e1e;
}
.dd-search-input {
  width: 100%; box-sizing: border-box;
  background: #111; border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: var(--white); font-size: 0.78rem;
  padding: 7px 10px;
  outline: none; font-family: inherit;
  transition: border-color 0.2s;
}
.dd-search-input::placeholder { color: #555; }
.dd-search-input:focus { border-color: var(--yellow); }
.dd-search-results { display: none; }
.dd-search-results a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  font-size: 0.8rem; color: #999;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--t-fast), color var(--t-fast);
}
.dd-search-results a:hover { background: #161616; color: var(--white); }
.dd-search-results .sr-type {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--yellow); margin-left: auto;
}

/* Nav CTA butonu */
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  padding: 10px 22px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  clip-path: var(--clip-btn-sm);
  transition: background var(--t-base);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--yellow-hover); }

/* Mobil hamburger */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: 0.3s;
}

/* ────────────────────────────────────────────────
   4. BREADCRUMB
   ──────────────────────────────────────────────── */
.breadcrumb {
  position: relative; z-index: 1;
  font-size: 0.73rem; color: var(--gray);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--yellow); text-decoration: none;
  transition: opacity var(--t-base);
}
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.4; }
.breadcrumb .current { color: #666; }

/* ────────────────────────────────────────────────
   5. BUTTONS
   ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--black);
  padding: 16px 36px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  clip-path: var(--clip-btn-lg);
  transition: background var(--t-base), transform var(--t-base);
}
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-2px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: #fff;
  padding: 16px 30px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  clip-path: var(--clip-btn-lg);
  transition: background var(--t-base), transform var(--t-base);
}
.btn-wa:hover { background: var(--green-wa-hover); transform: translateY(-2px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  padding: 16px 40px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  clip-path: var(--clip-btn-lg);
  transition: background var(--t-base), transform var(--t-base);
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

.btn-wa-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: #fff;
  padding: 16px 30px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  clip-path: var(--clip-btn-lg);
  transition: background var(--t-base), transform var(--t-base);
}
.btn-wa-dark:hover { background: var(--green-wa-hover); transform: translateY(-2px); }

/* ────────────────────────────────────────────────
   6. STATS BAR
   ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--yellow);
  padding: 20px var(--space-xl);
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--black);
  letter-spacing: 0.04em; line-height: 1;
}
.stat-label {
  font-size: 0.72rem; font-weight: 700;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 2px;
}
.stat-sep { width: 1px; height: 40px; background: rgba(0,0,0,0.15); }

/* ────────────────────────────────────────────────
   7. TRUST BAND (ana sayfa versiyonu)
   ──────────────────────────────────────────────── */
.trust-band {
  background: var(--yellow);
  padding: 18px var(--space-xl);
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--black);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-check { font-size: 1.1rem; color: var(--black); }
.trust-sep { width: 1px; height: 24px; background: rgba(0,0,0,0.2); }

/* ────────────────────────────────────────────────
   8. CTA SECTION
   ──────────────────────────────────────────────── */
.cta-section {
  background: var(--yellow);
  padding: 60px var(--space-xl);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'BAŞLA';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18rem; color: rgba(0,0,0,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none;
}
.cta-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(0,0,0,0.5); margin-bottom: 14px;
  display: block;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--black); line-height: 0.95;
  margin-bottom: 16px; position: relative;
}
.cta-sub {
  font-size: 1rem; color: rgba(0,0,0,0.65);
  max-width: 440px; margin: 0 auto 36px;
  font-weight: 300; line-height: 1.75;
}
.cta-btns {
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap; position: relative;
}

/* ────────────────────────────────────────────────
   9. FOOTER
   ──────────────────────────────────────────────── */
footer {
  background: #050505;
  padding: 56px var(--space-xl) 32px;
  border-top: 1px solid var(--border-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.1em;
  color: var(--yellow); display: block; margin-bottom: 14px;
}
.footer-brand .footer-logo span { color: var(--white); }
.footer-brand p {
  font-size: 0.82rem; color: #444;
  line-height: 1.75; max-width: 240px;
}
.footer-brand .footer-tel {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; color: var(--yellow);
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
}
.footer-brand .footer-tel:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.18em;
  color: #444; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 0.82rem;
  color: var(--gray4); text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--t-base);
  letter-spacing: 0.02em;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid #111;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p {
  font-size: 0.72rem; color: var(--gray4); letter-spacing: 0.06em;
  margin: 0;
}

/* Footer il link grid (tüm illeri gösteren bant) */
.footer-iller {
  background: var(--dark5);
  padding: 40px var(--space-xl);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.footer-iller-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.footer-iller-header h4 {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.18em;
  color: #333; text-transform: uppercase;
}
.footer-il-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}
.footer-il-col h5 {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #444; margin-bottom: 10px;
}
.footer-il-col a {
  display: block; font-size: 0.78rem;
  color: var(--gray3); text-decoration: none;
  margin-bottom: 5px;
  transition: color var(--t-base);
  letter-spacing: 0.02em;
}
.footer-il-col a:hover { color: var(--yellow); }

/* ────────────────────────────────────────────────
   10. WHATSAPP FLOAT
   ──────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: var(--z-float);
  width: 56px; height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waf 3s ease-in-out infinite;
}
.wa-float:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}
@keyframes waf {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ────────────────────────────────────────────────
   11. BADGES (hero içi küçük rozet)
   ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  padding: 6px 14px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow);
}
.hero-badges {
  position: relative; z-index: 1;
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}

/* ────────────────────────────────────────────────
   12. HIZMET LİNK GRID (iç link kartları)
   ──────────────────────────────────────────────── */
.hizmet-link-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 20px;
}
.hizmet-link-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--dark3);
  border: 1px solid #1a1a1a;
  border-left: 3px solid transparent;
  padding: 16px 18px; text-decoration: none;
  transition: border-color var(--t-slow), background var(--t-slow);
}
.hizmet-link-card:hover,
.hizmet-link-card.active {
  border-left-color: var(--yellow); background: #141414;
}
.hlc-icon { font-size: 1.4rem; flex-shrink: 0; }
.hlc-title {
  font-size: 0.88rem; font-weight: 600;
  color: var(--white); margin-bottom: 3px;
}
.hlc-desc { font-size: 0.75rem; color: var(--gray2); }
.hizmet-link-card.active .hlc-title { color: var(--yellow); }

/* ────────────────────────────────────────────────
   13. İLÇELER SECTION
   ──────────────────────────────────────────────── */
.ilceler-section {
  background: var(--dark);
  padding: 60px var(--space-xl);
}
.ilceler-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--white); margin-bottom: 8px;
}
.ilceler-section .section-sub {
  font-size: 0.85rem; color: #555; margin-bottom: 24px;
}
.ilce-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ilce-link {
  color: #888; text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--t-base);
}
.ilce-link:hover { color: var(--yellow); }
.ilce-link.active { color: var(--yellow); }

/* ────────────────────────────────────────────────
   14. PROCESS LIST
   ──────────────────────────────────────────────── */
.process-list { display: flex; flex-direction: column; gap: 3px; margin-top: 28px; }
.process-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--dark3); padding: 22px 24px;
  border-left: 3px solid transparent;
  transition: border-color var(--t-slow);
}
.process-item:hover { border-left-color: var(--yellow); }
.process-num {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--yellow);
  flex-shrink: 0; line-height: 1; min-width: 36px;
}
.process-content h3 { margin-top: 0; font-size: 1.1rem; margin-bottom: 4px; }
.process-content p  { margin-bottom: 0; font-size: 0.87rem; }
.process-duration {
  display: inline-block; margin-top: 6px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  padding: 3px 10px;
}

/* ────────────────────────────────────────────────
   15. FAQ
   ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.faq-item {
  background: var(--dark3);
  border-left: 3px solid #222;
  overflow: hidden;
  transition: border-color var(--t-slow);
}
.faq-item:hover { border-left-color: var(--yellow); }
.faq-q {
  padding: 20px 24px; cursor: pointer;
  font-size: 0.95rem; font-weight: 600;
  color: var(--white);
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--yellow);
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; margin: 0; }

/* ────────────────────────────────────────────────
   16. ADVANTAGES GRID
   ──────────────────────────────────────────────── */
.advantages-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3px; margin-top: 28px;
}
.adv-card {
  background: var(--dark2); padding: 28px 26px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t-slow), background var(--t-slow);
}
.adv-card:hover { border-bottom-color: var(--yellow); background: #1e1e1e; }
.adv-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.adv-title {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 8px;
}
.adv-desc { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

/* ────────────────────────────────────────────────
   17. COST TABLE
   ──────────────────────────────────────────────── */
.cost-table {
  width: 100%; border-collapse: collapse; margin-top: 24px;
}
.cost-table th {
  background: var(--dark2); color: var(--yellow);
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 14px 20px;
  text-align: left; font-weight: 700;
  border-bottom: 2px solid var(--yellow);
}
.cost-table td {
  padding: 14px 20px;
  font-size: 0.9rem; color: #bbb;
  border-bottom: 1px solid var(--border-dim);
}
.cost-table tr:hover td { background: var(--dark3); color: var(--white); }
.cost-highlight { color: var(--yellow) !important; font-weight: 600; }

/* ────────────────────────────────────────────────
   18. STAR BRAND LINK (hero yıldız)
   ──────────────────────────────────────────────── */
.hero-star-link {
  position: absolute; top: 28%; right: 5%;
  width: 18vw; max-width: 220px; min-width: 120px;
  z-index: 2; display: block; text-decoration: none;
  animation: starPulse 7s ease-in-out infinite;
  cursor: pointer;
}
.hero-star-link:hover {
  animation-play-state: paused;
  opacity: 1 !important;
  transform: scale(1.08);
}
.hero-star-img { width: 100%; height: auto; display: block; }
@keyframes starPulse {
  0%, 100% { opacity: .55; transform: scale(1) rotate(0deg); }
  50%       { opacity: .85; transform: scale(1.04); }
}

/* ────────────────────────────────────────────────
   19. MINI STAT GRID (3'lü sayı kutusu)
   ──────────────────────────────────────────────── */
.mini-stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 28px;
}
.mini-stat-box {
  background: var(--dark3); padding: 24px 20px;
  border-top: 2px solid var(--yellow); text-align: center;
}
.mini-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; color: var(--yellow); line-height: 1;
}
.mini-stat-label {
  font-size: 0.75rem; color: var(--gray);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
}

/* ────────────────────────────────────────────────
   20. BLOG KARTLARI
   ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3px;
}
.blog-card {
  display: block; background: var(--dark3); padding: 28px 24px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t-slow);
}
.blog-card:hover { border-bottom-color: var(--yellow); }
.blog-card-type {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.blog-card-desc { font-size: 0.82rem; color: var(--gray); }

/* ────────────────────────────────────────────────
   21. SCROLLABLE İLÇE GRID (çok ilçeli iller)
   ──────────────────────────────────────────────── */
.ilce-scroll-wrap {
  position: relative;
}
.ilce-scroll-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) #1a1a1a;
  border: 1px solid var(--border-dim);
}
/* İl hub sayfasında 3 kolon */
.ilce-scroll-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.ilce-scroll-grid::-webkit-scrollbar { width: 4px; }
.ilce-scroll-grid::-webkit-scrollbar-track { background: #1a1a1a; }
.ilce-scroll-grid::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

/* Fade alt kenar — scroll devam ediyor sinyali */
.ilce-scroll-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 4px;
  height: 48px;
  background: linear-gradient(transparent, var(--black));
  pointer-events: none;
  border-radius: 0 0 2px 2px;
}
.ilce-scroll-wrap.scrolled-end::after { display: none; }

/* Tüm ilçeleri görme butonu */
.ilce-show-all {
  display: none;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--yellow);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.ilce-scroll-wrap.expanded .ilce-scroll-grid { max-height: none; }
.ilce-scroll-wrap.expanded::after { display: none; }
.ilce-scroll-wrap.expanded .ilce-show-all { color: #555; }

@media (max-width: 900px) {
  .ilce-scroll-grid,
  .ilce-scroll-grid.cols-3 { grid-template-columns: repeat(2, 1fr); max-height: 400px; }
}
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav#navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  nav#navbar.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    padding: 16px 0; height: auto;
  }
  nav#navbar.open .nav-links > li { height: auto; }
  nav#navbar.open .nav-links > li > a { padding: 12px 24px; height: auto; }
  nav#navbar.open .dropdown { position: static; border: none; padding: 0 0 0 20px; }
  nav#navbar.open .nav-links > li:hover .dropdown { display: flex; }

  .stats-bar      { gap: 24px; padding: 16px 20px; }
  .stat-sep       { display: none; }
  .trust-band     { gap: 20px; padding: 16px 24px; }
  .trust-sep      { display: none; }
  .advantages-grid { grid-template-columns: 1fr; }
  .hizmet-link-grid { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-il-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-iller   { padding: 32px 20px; }
  .cta-section    { padding: 48px 20px; }
  .ilceler-section { padding: 48px 20px; }
  .mini-stat-grid { grid-template-columns: 1fr 1fr 1fr; }

  .hero-star-link { top: auto; bottom: 20%; right: 3%; width: 22vw; }
}

@media (max-width: 600px) {
  .hizmet-link-grid { grid-template-columns: 1fr; }
  .mini-stat-grid   { grid-template-columns: 1fr; gap: 3px; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────
   İLÇE HUB GRID — ilk 9 görünür + more toggle
   ──────────────────────────────────────────────── */
/* Ana grid: 3 kolon, her zaman görünür */
.ilce-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* "Daha fazla" wrap */
.ilce-more-wrap { margin-top: 3px; }

/* Gizli ilçeler grid */
.ilce-more-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 3px;
}
.ilce-more-wrap.expanded .ilce-more-grid { display: grid; }

/* Toggle butonu */
.ilce-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px;
  background: none;
  border: 1px solid var(--border-dim);
  color: var(--yellow);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 20px; cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base);
}
.ilce-more-btn:hover { border-color: var(--yellow); background: var(--yellow-dim); }
.ilce-more-wrap.expanded .ilce-more-btn { color: #555; border-color: #222; }

@media (max-width: 900px) {
  .ilce-hub-grid, .ilce-more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ilce-hub-grid, .ilce-more-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   BLOG SAYFASI
═══════════════════════════════════════════════ */
.blog-hero {
  padding: 140px 40px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.blog-cat-badge {
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.blog-hero-date {
  font-size: 0.78rem;
  color: var(--gray);
}
.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.blog-hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 660px;
}

.blog-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.blog-content {
  min-width: 0;
}
.blog-content h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-dim);
}
.blog-content h2:first-child { margin-top: 0; }
.blog-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 10px;
}
.blog-content p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #aaa;
  margin-bottom: 16px;
}
.blog-content ul, .blog-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.blog-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #aaa;
  margin-bottom: 8px;
}
.blog-content strong { color: var(--white); }
.blog-content a { color: var(--yellow); text-decoration: none; }
.blog-content a:hover { text-decoration: underline; }

.blog-info-box {
  background: var(--dark2);
  border-left: 3px solid var(--yellow);
  padding: 20px 24px;
  margin: 28px 0;
}
.blog-info-box p { margin-bottom: 0; color: #bbb; }

.blog-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.blog-checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border-dim);
  color: #aaa;
}
.blog-checklist li:last-child { border-bottom: none; }
.blog-checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.85rem;
}

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; align-self: start; }
.blog-sidebar-box {
  background: var(--dark2);
  border: 1px solid var(--border-dim);
  padding: 24px;
  margin-bottom: 20px;
}
.blog-cta-box { border-color: var(--yellow-border); }
.blog-sidebar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.blog-sidebar-link {
  display: block;
  font-size: 0.87rem;
  color: var(--white);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--t-fast);
}
.blog-sidebar-link:last-child { border-bottom: none; }
.blog-sidebar-link:hover { color: var(--yellow); }
.blog-cta-text { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* İlgili yazılar */
.blog-related {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px 80px;
  border-top: 1px solid var(--border-dim);
}
.blog-related-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.blog-related-card {
  background: var(--dark2);
  padding: 24px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: border-color var(--t-slow), background var(--t-slow);
}
.blog-related-card:hover { border-left-color: var(--yellow); background: #1e1e1e; }
.blog-related-cat { font-size: 0.7rem; color: var(--yellow); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.blog-related-title-sm { font-size: 0.92rem; color: var(--white); line-height: 1.5; }

@media (max-width: 900px) {
  .blog-hero { padding: 108px 20px 60px; }
  .blog-body { grid-template-columns: 1fr; padding: 40px 20px 60px; gap: 40px; }
  .blog-sidebar { position: static; }
  .blog-related { padding: 40px 20px 60px; }
  .blog-related-grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────
   BLOG SAYFASI
   ──────────────────────────────────────────────── */
.blog-hero-category {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
  max-width: 800px;
}
.blog-hero-date {
  font-size: 0.75rem; color: #444;
  letter-spacing: 0.08em; margin-top: 20px;
}
.blog-content-wrap { max-width: 780px; }
.blog-body { color: var(--gray2); line-height: 1.85; font-size: 1rem; }
.blog-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  letter-spacing: 0.04em; color: var(--white);
  margin: 48px 0 16px;
}
.blog-body h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin: 32px 0 10px;
}
.blog-body p { margin-bottom: 18px; }
.blog-body ul, .blog-body ol {
  margin: 0 0 18px 24px; display: flex; flex-direction: column; gap: 8px;
}
.blog-body li::marker { color: var(--yellow); }
.blog-body strong { color: var(--white); font-weight: 700; }
.blog-body a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.blog-body blockquote {
  border-left: 3px solid var(--yellow);
  padding: 12px 20px; margin: 24px 0;
  background: var(--dark2); color: var(--white);
  font-style: italic;
}
.blog-body .info-box {
  background: var(--dark2); border-left: 3px solid var(--yellow);
  padding: 20px 24px; margin: 28px 0; border-radius: 0 2px 2px 0;
}
.blog-body .info-box p { margin-bottom: 0; }
.blog-cta-box {
  background: var(--dark2); border: 1px solid var(--border-dim);
  padding: 32px; margin: 48px 0 40px;
}
.blog-cta-tag {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px;
}
.blog-cta-title {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 8px;
}
.blog-cta-desc { font-size: 0.88rem; color: var(--gray); }
.blog-related { margin-top: 40px; }
.blog-related-title {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #444; margin-bottom: 16px;
}
