/* Hurdaciniz.net — Cloudflare-inspired design system */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --accent: #2b8fd4;
  --accent-hover: #1d5fbf;
  --accent-light: #38bdf8;
  --accent-dark: #1d5fbf;
  --accent-soft: rgba(43, 143, 212, 0.12);
  --accent-glow: rgba(56, 189, 248, 0.28);
  --gradient-primary: linear-gradient(135deg, #1d5fbf 0%, #2b8fd4 55%, #38bdf8 100%);
  --gradient-hero: linear-gradient(135deg, #0a3260 0%, #0f4a7a 38%, #15608f 72%, #1a6aad 100%);
  --navy: #0c1518;
  --navy-mid: #111f23;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --green: #2b8fd4;
  --green-soft: rgba(43, 143, 212, 0.1);
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1180px;
  --bg-page: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --text-body: #475569;
  --text-heading: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --header-bg: rgba(255, 255, 255, 0.85);
  --primary: var(--accent);
  --on-primary: #ffffff;
}

[data-theme="dark"] {
  --bg-page: #0f1117;
  --bg-surface: #171a22;
  --bg-card: #1c2029;
  --bg-elevated: #232833;
  --text-body: #b8c5d6;
  --text-heading: #f1f5f9;
  --text-muted: #8b9cb3;
  --border-color: rgba(255, 255, 255, 0.1);
  --header-bg: rgba(15, 17, 23, 0.94);
  --slate-50: #171a22;
  --slate-100: #1c2029;
  --slate-200: rgba(255, 255, 255, 0.1);
  --slate-300: rgba(255, 255, 255, 0.16);
  --slate-400: #8b9cb3;
  --slate-500: #8b9cb3;
  --slate-600: #b8c5d6;
  --slate-700: #d1dae6;
  --slate-800: #e8edf4;
  --slate-900: #f8fafc;
  --accent-soft: rgba(43, 143, 212, 0.18);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.25s ease, color 0.25s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1 0 auto;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Remix Icon helpers */
i[class^="ri-"], i[class*=" ri-"] {
  line-height: 1;
  vertical-align: middle;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; }
h2 { font-size: clamp(1.375rem, 2.75vw, 1.875rem); }
h3 { font-size: clamp(1rem, 1.75vw, 1.125rem); }

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-title h2 { margin-bottom: 0.625rem; font-size: clamp(1.25rem, 2.5vw, 1.625rem); color: var(--text-heading); }
.section-title p { color: var(--text-muted); font-size: 0.9375rem; }
.section-title .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(43, 143, 212, 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow var(--transition), background-color 0.25s ease, border-color 0.25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo:hover { opacity: 0.92; }
.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.logo-img-light { display: none; }
[data-theme="dark"] .header .logo-img-dark { display: none; }
[data-theme="dark"] .header .logo-img-light { display: block; }

/* Eski metin logo (yedek) */
.logo-icon {
  width: 30px; height: 30px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(29, 95, 191, 0.35);
}
.logo span { color: var(--accent-light); }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav > li { list-style: none; position: relative; }
.nav > li > a {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.35rem 0.4rem;
  color: var(--text-body);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all var(--transition);
  min-height: 30px;
  white-space: nowrap;
}
.nav > li > a:hover,
.nav > li > a.active {
  color: var(--text-heading);
  background: var(--bg-surface);
}
.nav > li > a.active { color: var(--accent-hover); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 200ms ease;
  border: 1px solid var(--border-color);
}
.nav > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.35rem 0.6rem;
  color: var(--text-body);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--bg-surface);
  color: var(--accent);
}

/* Mega menü — tam genişlik panel, container içerik */
.nav > li.has-mega { position: static; }
.has-mega > a { position: relative; }
.mega-menu {
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  top: 100%;
  transform: translateY(4px);
  padding: 1.25rem 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border-color);
}
.nav > li.has-mega:hover .mega-menu {
  transform: translateY(0);
}
.mega-menu-container {
  padding-top: 0;
  padding-bottom: 0;
}
.mega-menu-inner.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0;
  border-bottom: none;
}
.mega-menu a.mega-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-body);
  font-size: inherit;
  font-weight: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.mega-menu a.mega-item:hover {
  background: var(--bg-card);
  border-color: rgba(43, 143, 212, 0.45);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  color: var(--text-body);
}
.mega-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  color: #4a5568;
  font-size: 1.25rem;
}
.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.mega-item-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
}
.mega-menu a.mega-item:hover .mega-item-text strong { color: var(--accent); }
.mega-item-text small {
  font-size: 0.75rem;
  color: #718096;
  line-height: 1.35;
  font-weight: 400;
}
.mega-menu-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 0 0;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border-color);
  background: transparent;
}
.mega-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}
.mega-footer-link:hover { color: var(--accent-hover); }

/* Homepage — modern bileşenler */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-whatsapp:hover {
  background: #1fb855;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  border-color: var(--border-color);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.hero-trust i { color: #7dd3fc; font-size: 1rem; }

.trust-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 0.875rem 0;
  margin-top: -1px;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
}
.trust-strip-item i {
  font-size: 1.125rem;
  color: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 3;
  background: var(--bg-surface);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual.is-fallback {
  background: var(--gradient-primary);
  min-height: 280px;
}
.about-visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
  box-shadow: var(--shadow-md);
}
.about-visual-badge i { color: var(--accent); }
.about-content .badge { margin-bottom: 1rem; }
.about-content h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  margin-bottom: 1rem;
  text-align: left;
}
.about-lead {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.625rem;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}
.about-checklist i { color: var(--accent); font-size: 1.125rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Hakkımızda sayfası — editoryal düzen */
.about-page section { padding: 4.5rem 0; }
.about-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}
.about-intro-media {
  margin: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.about-intro-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-intro-media.is-fallback {
  min-height: 280px;
  background: var(--gradient-primary);
}
.about-intro-media figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
}
.about-intro-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}
.about-intro-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.about-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  list-style: none;
}
.about-intro-meta span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid var(--border-color);
}
.about-intro-meta span:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.about-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.about-section-head--left {
  text-align: left;
  margin-left: 0;
  max-width: none;
}
.about-section-head .badge { margin-bottom: 0.75rem; }
.about-section-head h2 {
  font-size: clamp(1.25rem, 2.25vw, 1.625rem);
  margin: 0;
}

.about-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  position: relative;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--border-color) 100%);
  border-radius: 2px;
}
.about-timeline li {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}
.about-timeline li:last-child { padding-bottom: 0; }
.about-timeline li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.about-timeline-year {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.about-timeline-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}
.about-timeline-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

.about-prose-wrap { max-width: 720px; margin: 0 auto; }
.about-prose h2 {
  font-size: 1.375rem;
  margin: 2.5rem 0 0.875rem;
  color: var(--text-heading);
}
.about-prose h2:first-child { margin-top: 0; }
.about-prose h3 {
  font-size: 1.0625rem;
  margin: 1.75rem 0 0.625rem;
  color: var(--text-heading);
}
.about-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.125rem;
}
.about-prose a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-prose a:hover { color: var(--accent-hover); }

.about-pullquote {
  margin: 2rem 0;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid var(--accent);
}
.about-pullquote p {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
  margin: 0;
}

.about-values-list {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0;
}
.about-values-list div {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}
.about-values-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-values-list dt {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}
.about-values-list dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
}

.about-region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
}
.about-region-links a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
}
.about-region-links a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.about-cta-strip {
  padding: 3.5rem 0 5rem;
  background: var(--navy);
  color: #fff;
}
.about-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.about-cta-text h2 {
  color: #fff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
}
.about-cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-cta-strip .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.about-cta-strip .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section-cta { text-align: center; margin-top: 2rem; }

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.price-card {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 200ms ease;
}
.price-card:hover {
  border-color: rgba(43, 143, 212, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.price-card--featured {
  border-color: rgba(43, 143, 212, 0.35);
  background: linear-gradient(180deg, rgba(43, 143, 212, 0.06) 0%, var(--bg-card) 100%);
}
.price-card-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 9999px;
}
.price-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.price-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.price-card-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.price-card-value small { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.price-card-desc { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }

.process-timeline {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-timeline .process-step::before { display: none; }
.process-timeline .process-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
}
.process-step-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.375rem;
  box-shadow: 0 4px 14px rgba(29, 95, 191, 0.25);
}

.featured-districts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.district-feature-card {
  display: block;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 200ms ease;
  color: var(--text-body);
}
.district-feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--text-body);
}
.district-feature-card > i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.district-feature-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
  color: var(--text-heading);
}
.district-feature-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  color: #f59e0b;
  font-size: 0.9375rem;
}
.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card footer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}
.testimonial-card footer strong { color: var(--text-heading); }

.home-seo-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.home-seo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.home-seo-content .badge { margin-bottom: 1rem; }
.home-seo-content h2 {
  font-size: clamp(1.25rem, 2.25vw, 1.625rem);
  margin-bottom: 1rem;
  text-align: left;
}
.home-seo-content h3 {
  font-size: 1.0625rem;
  margin: 1.25rem 0 0.5rem;
}
.home-seo-content p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.home-seo-aside { display: grid; gap: 1rem; }
.info-card {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}
.info-card > i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.info-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.info-card p { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.875rem; line-height: 1.5; }

.home-cta-section { padding: 0 0 5.5rem; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cta-banner .btn-whatsapp {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Mahalle listesi — ilçe sayfaları */
.mahalle-list-section { margin-top: 2rem; }
.mahalle-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}
.mahalle-link {
  display: block;
  padding: 0.625rem 0.875rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
  transition: all 150ms ease;
}
.mahalle-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-surface);
}
.mahalle-link-all {
  border-style: dashed;
  color: var(--accent);
}
.mahalle-district-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.mahalle-district-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.mahalle-district-block h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
}
.mahalle-district-block h3 a {
  color: var(--text-heading);
}
.mahalle-district-block h3 a:hover {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all var(--transition);
  flex-shrink: 0;
  border: none;
  box-shadow: 0 1px 2px rgba(29, 95, 191, 0.35);
  min-height: 30px;
  line-height: 1;
}
.header-cta:hover {
  background: linear-gradient(135deg, #1a56a8 0%, #2680c4 55%, #32b0ee 100%);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(29, 95, 191, 0.4);
  transform: translateY(-1px);
}

/* Tema değiştirici */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  font-size: 1.05rem;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.theme-icon-to-light { display: none; }
[data-theme="dark"] .theme-icon-to-dark { display: none; }
[data-theme="dark"] .theme-icon-to-light { display: inline; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--text-heading);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  transition: all var(--transition);
}
.menu-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-surface);
}

/* Hero — modern gradient panel */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  padding: 7rem 0 4.5rem;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: hero-orb-float 18s ease-in-out infinite;
}
.hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(56, 189, 248, 0.35);
}
.hero-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: 10%;
  background: rgba(29, 95, 191, 0.4);
  animation-delay: -6s;
}
.hero-orb-3 {
  width: 280px;
  height: 280px;
  top: 40%;
  right: -60px;
  background: rgba(125, 211, 252, 0.25);
  animation-delay: -12s;
}

@keyframes hero-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -16px) scale(1.05); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(56, 189, 248, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, black 15%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; width: 100%; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-main { min-width: 0; }
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  aspect-ratio: 4 / 3;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 50, 96, 0.05) 0%, rgba(10, 50, 96, 0.45) 100%);
  pointer-events: none;
}
.hero-visual.is-empty { display: none; }

.hero-float-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.hero-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: #0f4a7a;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-float-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.15rem;
}
.hero-float-value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.hero-badge i { color: #7dd3fc; font-size: 1rem; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 45%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  max-width: 520px;
}
.hero-lead strong { color: rgba(255, 255, 255, 0.98); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition), gap var(--transition);
}
.hero-link-secondary:hover {
  color: var(--white);
  gap: 0.55rem;
}
.hero-link-secondary .ri-arrow-right-line { font-size: 1rem; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}
.hero-chip i {
  color: #7dd3fc;
  font-size: 0.9375rem;
}

.hero-buttons .btn {
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  min-height: 48px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-buttons .btn-primary {
  background: var(--white);
  color: #0f4a7a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero-buttons .btn-primary:hover {
  background: #f0f9ff;
  color: #0a3260;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.hero-buttons .btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.hero-buttons .btn-whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.48);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
.stat-item {
  padding: 0.875rem 0.625rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.stat-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #7dd3fc;
  font-size: 1rem;
}
.stat-number {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-top: 0.2rem;
  line-height: 1.3;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none; }
  .hero-badge-dot { animation: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  line-height: 1.3;
  min-height: 34px;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(29, 95, 191, 0.4), 0 0 0 0 rgba(29, 95, 191, 0);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1a56a8 0%, #2680c4 55%, #32b0ee 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(29, 95, 191, 0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-heading);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: var(--bg-surface);
  color: var(--text-heading);
  border-color: var(--slate-300);
}

/* Sections */
section { padding: 5.5rem 0; }
section.section-alt { background: var(--bg-surface); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 0;
  border: 1px solid var(--border-color);
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-thumb {
  position: relative;
  height: 160px;
  background: var(--bg-surface);
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.card:hover .card-thumb img { transform: scale(1.04); }
.card-thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 2.25rem;
}
.card-thumb:has(img:not([hidden])) .card-thumb-fallback { display: none; }
.card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border: 1px solid rgba(43, 143, 212, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.0625rem; color: var(--text-heading); }
.card p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.6; }
.card-link {
  font-weight: 600;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent);
}
.card-link:hover { gap: 0.5rem; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-item {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 200ms ease;
}
.feature-item:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--white);
}
.feature-item h3 { margin-bottom: 0.5rem; font-size: 1rem; color: var(--text-heading); }
.feature-item p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.process-step {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.process-steps { counter-reset: step; }
.process-step h3 { margin-bottom: 0.375rem; font-size: 0.9375rem; color: var(--text-heading); }
.process-step p { color: var(--text-muted); font-size: 0.8125rem; line-height: 1.6; }

/* Price Table */
.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
.price-table th, .price-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-body);
}
.price-table th {
  background: var(--bg-surface);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg-surface); }
.price-table .price { font-weight: 700; color: var(--accent); white-space: nowrap; }

/* Hurda fiyatları sayfası */
.price-page-intro {
  max-width: 820px;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.price-page-intro-lead {
  font-size: 1rem !important;
  color: var(--text-body) !important;
  line-height: 1.75 !important;
}
.price-page-intro p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.price-page-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem !important;
  color: var(--text-body) !important;
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
}
.price-page-updated i { color: var(--accent); }
.price-quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.price-quick-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.price-quick-nav-item:hover {
  color: var(--accent);
  border-color: var(--accent-soft);
  background: var(--accent-soft);
}
.price-quick-nav-item i { font-size: 1rem; opacity: 0.85; }
.price-page-guide {
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}
.price-page-guide h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: 1rem;
}
.price-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.price-info-card {
  padding: 1.25rem;
  background: var(--bg-base);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}
.price-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}
.price-info-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
  color: var(--text-heading);
}
.price-info-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.price-category {
  margin-bottom: 3rem;
  scroll-margin-top: 5rem;
}
.price-category h2 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
  color: var(--text-heading);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-soft);
}
.price-table--tiered th:not(:first-child),
.price-table--tiered td:not(:first-child) {
  text-align: right;
}
.price-table--tiered td:first-child {
  font-weight: 500;
  color: var(--text-heading);
  min-width: 180px;
}
.price-category-link {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.price-category-link a {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.price-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 1.25rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.price-disclaimer a { color: var(--accent); font-weight: 600; }
.price-page-article { margin-top: 0; margin-bottom: 2.5rem; }
.price-page-faq {
  margin-bottom: 2rem;
  padding-top: 1rem;
}
.price-page-faq .section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.price-page-faq .section-title p {
  max-width: 520px;
  margin: 0.5rem auto 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.price-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 2rem;
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(29, 95, 191, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.625rem; font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 200ms ease;
}
.blog-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.blog-card-image {
  height: 160px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-light);
  position: relative;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.blog-card-image:has(img) i { display: none; }
.blog-card-body { padding: 1.25rem; }
.blog-card-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 500; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card h3 a { color: var(--text-heading); }
.blog-card h3 a:hover { color: var(--accent-light); }
.blog-card p { color: var(--text-muted); font-size: 0.8125rem; margin-bottom: 0.875rem; line-height: 1.6; }

/* Sayfa / hizmet üst görseli */
.page-visual {
  max-width: 720px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 21 / 9;
  background: var(--bg-surface);
}
.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* İlçe landing — üst banner */
.district-hero-banner {
  width: 100%;
  max-height: 440px;
  overflow: hidden;
  background: var(--bg-surface);
}
.district-hero-banner img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
.district-landing-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}
.district-landing-intro .page-visual {
  margin: 0;
  max-width: none;
}
@media (max-width: 768px) {
  .district-landing-intro { grid-template-columns: 1fr; }
  .district-hero-banner { max-height: 240px; }
  .district-hero-banner img { max-height: 240px; }
}

/* İlçe listesi */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.625rem;
}
.district-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 200ms ease;
}
.district-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.district-link i { color: var(--accent); font-size: 1.125rem; }

.card-thumb-fallback-only {
  height: 120px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-thumb-fallback-only .card-thumb-fallback {
  position: static;
  width: 100%;
  height: 100%;
  font-size: 2rem;
}

/* Open Graph / sosyal paylaşım görseli head içinde kullanılır */
/* <meta property="og:image" content="https://hurdaciniz.net/images/genel/og-image.webp"> */

.article-content { max-width: 720px; margin: 0 auto; }
.article-content h2 { margin: 2rem 0 0.75rem; font-size: 1.25rem; color: var(--text-heading); }
.article-content h3 { margin: 1.5rem 0 0.5rem; font-size: 1.0625rem; color: var(--text-heading); }
.article-content p { margin-bottom: 1.125rem; color: var(--text-body); line-height: 1.75; }
.article-content ul, .article-content ol { margin: 1rem 0 1.5rem 1.25rem; color: var(--text-body); }
.article-content li { margin-bottom: 0.375rem; line-height: 1.7; color: var(--text-body); }
.article-content strong { color: var(--text-heading); }
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.blog-meta { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Blog article — sticky share */
.blog-article-layout {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.blog-share-sticky {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}
.blog-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1.125rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.blog-share-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.blog-share-btn.is-copied {
  color: #16a34a;
  border-color: #16a34a;
}
.blog-article-main { min-width: 0; }
.blog-article-main .article-content { max-width: none; margin: 0; }
.blog-geo-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  padding: 1.25rem 1.5rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 1.75rem;
}
@media (max-width: 768px) {
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-share-sticky {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
}

/* Page Header */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 5.25rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(29, 95, 191, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.page-header p { color: rgba(255, 255, 255, 0.65); max-width: 520px; margin: 0 auto; font-size: 0.9375rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255, 255, 255, 0.35); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-accordion-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}
.contact-accordion-section .faq-list { max-width: 100%; }
.contact-accordion-section .article-content p { margin-bottom: 1rem; font-size: 0.9375rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-body);
}
.contact-info-item strong { color: var(--text-heading); }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-heading);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-heading);
  background: var(--bg-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 143, 212, 0.12);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form select option {
  background: var(--bg-card);
  color: var(--text-heading);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-checkbox input { margin-top: 0.2rem; accent-color: var(--accent); }

/* Footer — referans tasarım */
.footer {
  background: #0a0b10;
  color: rgba(255, 255, 255, 0.55);
  margin-top: auto;
  padding: 0;
  flex-shrink: 0;
}

/* CTA şeridi */
.footer-cta {
  background: var(--gradient-primary);
  padding: 2rem 0;
  margin-top: 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-cta-text h2 {
  color: var(--white);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.footer-cta-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  margin: 0;
}
.footer-cta-actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-footer-phone,
.btn-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 36px;
}
.btn-footer-phone {
  background: var(--white);
  color: var(--slate-900);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.btn-footer-phone:hover {
  color: var(--slate-900);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn-footer-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.btn-footer-whatsapp:hover {
  color: var(--white);
  background: #1fb855;
  transform: translateY(-1px);
}

.footer-body {
  padding: 2.5rem 0 0;
}

/* Özellik kartları */
.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.footer-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}
.footer-feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.25rem;
}
.footer-feature-card strong {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.footer-feature-card span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* Ana grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo:hover { color: var(--white); }
.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.footer-logo-img.is-broken { display: none !important; }
.footer-logo-text {
  display: none;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-text span { color: var(--accent-light); }
.footer-logo-text.show { display: inline; }
.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  max-width: 280px;
}
.footer-contact-list {
  list-style: none;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-list i {
  color: var(--accent-light);
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact-list a:hover { color: var(--white); }

.footer-col h4 {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.footer-external-link i {
  font-size: 0.75rem;
  opacity: 0.75;
}
.footer-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-light) !important;
}
.footer-more-link:hover { color: #7dd3fc !important; }

/* İlçe etiketleri */
.footer-districts {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-districts h4 {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
}
.footer-district-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
}
.footer-district-tag:hover {
  background: rgba(56, 189, 248, 0.14);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--accent-light);
}
.footer-district-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-light);
}
.footer-district-more:hover { color: #7dd3fc; }

/* Alt bar */
.footer-bottom {
  padding: 1.125rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-copy { justify-self: start; }
.footer-seo {
  justify-self: end;
  text-align: right;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-self: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  white-space: nowrap;
}
.footer-legal a:hover { color: var(--white); }

/* Eski footer sınıfları (uyumluluk) */
.footer .logo { color: var(--white); }
.footer-contact-item i { color: var(--accent-light); }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  color: var(--text-body);
  padding: 1rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--border-color);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.875rem; flex: 1; min-width: 240px; line-height: 1.5; }
.cookie-inner a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-buttons .btn { padding: 0.35rem 0.75rem; font-size: 0.8125rem; border-radius: 6px; min-height: 30px; }
.btn-cookie-accept { background: var(--gradient-primary); color: var(--white); border: none; }
.btn-cookie-accept:hover { background: linear-gradient(135deg, #1a56a8 0%, #2680c4 55%, #32b0ee 100%); color: var(--white); }
.btn-cookie-settings,
.btn-cookie-reject {
  background: var(--bg-surface);
  color: var(--text-body);
  border: 1px solid var(--border-color);
}
.btn-cookie-settings:hover,
.btn-cookie-reject:hover { background: var(--bg-elevated); border-color: var(--slate-300); }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--slate-300); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent-light);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 1200px; }
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Areas */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.area-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
}
.area-tag:hover {
  background: var(--accent-hover);
  color: var(--white);
  border-color: var(--accent-hover);
}

/* Legal */
.legal-content { max-width: 720px; margin: 0 auto; padding: 3rem 0 5rem; }
.legal-content h2 { margin: 1.75rem 0 0.625rem; font-size: 1.125rem; }
.legal-content h3 { margin: 1.25rem 0 0.5rem; font-size: 0.9375rem; }
.legal-content p, .legal-content li { margin-bottom: 0.75rem; font-size: 0.875rem; line-height: 1.75; color: var(--text-body); }
.legal-content ul { margin: 0.75rem 0 1.25rem 1.25rem; }
.legal-content h2, .legal-content h3 { color: var(--text-heading); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.legal-content table th,
.legal-content table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border: 1px solid var(--border-color);
  color: var(--text-body);
}
.legal-content table thead tr,
.legal-content table tr:first-child:has(th) {
  background: var(--gradient-primary);
  color: #fff;
}
.legal-content table thead th,
.legal-content table tr:first-child:has(th) th {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.legal-content table strong { color: var(--text-heading); }
.legal-content code {
  background: var(--bg-surface);
  color: var(--accent-light);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 48px; height: 48px;
  background: #25d366;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

/* Dark mode — bileşenler */
[data-theme="dark"] .nav > li > a {
  color: var(--text-body);
}
[data-theme="dark"] .nav > li > a:hover,
[data-theme="dark"] .nav > li > a.active {
  color: var(--text-heading);
  background: var(--bg-elevated);
}
[data-theme="dark"] .dropdown-menu a {
  color: var(--text-body);
}
[data-theme="dark"] .dropdown-menu a:hover,
[data-theme="dark"] .dropdown-menu a.active {
  color: var(--accent-light);
  background: var(--bg-elevated);
}
[data-theme="dark"] .blog-card,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .contact-info-item,
[data-theme="dark"] .contact-icon,
[data-theme="dark"] .price-table-wrapper,
[data-theme="dark"] .price-table,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .area-tag,
[data-theme="dark"] .dropdown-menu,
[data-theme="dark"] .cookie-banner,
[data-theme="dark"] .page-visual {
  background: var(--bg-card);
  border-color: var(--border-color);
}
[data-theme="dark"] .contact-icon { background: var(--bg-surface); }
[data-theme="dark"] .price-table th { background: var(--bg-surface); color: var(--text-heading); }
[data-theme="dark"] .price-table tr:hover td { background: var(--bg-surface); }
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .contact-form select {
  background: var(--bg-surface);
  border-color: var(--border-color);
  color: var(--text-heading);
}
[data-theme="dark"] .article-content p,
[data-theme="dark"] .article-content li,
[data-theme="dark"] .legal-content p,
[data-theme="dark"] .legal-content li { color: var(--text-body); }
[data-theme="dark"] .section-title p { color: var(--text-muted); }
[data-theme="dark"] .card p,
[data-theme="dark"] .feature-item p,
[data-theme="dark"] .blog-card p { color: var(--text-muted); }
[data-theme="dark"] .card h3,
[data-theme="dark"] .feature-item h3,
[data-theme="dark"] .process-step h3 { color: var(--text-heading); }
[data-theme="dark"] .blog-card h3 a { color: var(--text-heading); }
[data-theme="dark"] .blog-card h3 a:hover { color: var(--accent-light); }
[data-theme="dark"] .faq-question { color: var(--text-heading); }
[data-theme="dark"] .faq-answer-inner { color: var(--text-muted); }
[data-theme="dark"] .contact-form label,
[data-theme="dark"] .form-checkbox { color: var(--text-body); }
[data-theme="dark"] .btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-heading);
  border-color: var(--border-color);
}
[data-theme="dark"] .btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--slate-300);
}
[data-theme="dark"] .area-tag {
  background: var(--bg-card);
  color: var(--text-body);
}
[data-theme="dark"] .area-tag:hover {
  background: var(--accent-hover);
  color: #fff;
}
[data-theme="dark"] .btn-cookie-reject,
[data-theme="dark"] .btn-cookie-settings {
  background: var(--bg-surface);
  color: var(--text-body);
  border-color: var(--border-color);
}
[data-theme="dark"] .btn-cookie-reject:hover,
[data-theme="dark"] .btn-cookie-settings:hover {
  background: var(--bg-elevated);
}
[data-theme="dark"] .legal-content table td {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-body);
}
[data-theme="dark"] .legal-content table th {
  border-color: rgba(255, 255, 255, 0.15);
}
[data-theme="dark"] .card-thumb { background: var(--bg-surface); }
[data-theme="dark"] .theme-toggle {
  background: var(--bg-elevated);
  color: var(--text-heading);
}
[data-theme="dark"] .theme-toggle:hover {
  background: var(--bg-surface);
  color: var(--accent-light);
}
[data-theme="dark"] .menu-toggle {
  background: var(--bg-elevated);
  border-color: var(--border-color);
  color: var(--text-heading);
}
[data-theme="dark"] .menu-toggle:hover {
  background: var(--bg-surface);
  border-color: var(--accent);
  color: var(--accent-light);
}
[data-theme="dark"] .section-title .badge {
  background: rgba(43, 143, 212, 0.15);
  border-color: rgba(56, 189, 248, 0.25);
  color: var(--accent-light);
}
[data-theme="dark"] .article-meta,
[data-theme="dark"] .blog-card-meta,
[data-theme="dark"] .blog-meta { color: var(--text-muted); }
[data-theme="dark"] .mega-item-icon {
  background: var(--bg-elevated);
  border-color: var(--border-color);
  color: var(--text-heading);
}
[data-theme="dark"] .mega-item-text strong { color: var(--text-heading); }
[data-theme="dark"] .mega-item-text small { color: var(--text-muted); }
[data-theme="dark"] .mega-menu a.mega-item:hover { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); }
[data-theme="dark"] .mahalle-link { background: var(--bg-card); }
[data-theme="dark"] .trust-strip { background: var(--bg-card); }
[data-theme="dark"] .about-cta-strip .btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }
[data-theme="dark"] .about-intro-media figcaption { background: var(--bg-surface); }
[data-theme="dark"] .about-visual-badge { background: var(--bg-elevated); color: var(--text-heading); }
[data-theme="dark"] .price-card--featured {
  background: linear-gradient(180deg, rgba(43, 143, 212, 0.1) 0%, var(--bg-card) 100%);
}
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .district-feature-card,
[data-theme="dark"] .info-card { background: var(--bg-card); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-features { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-copy, .footer-seo { justify-self: center; text-align: center; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .featured-districts { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .home-seo-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-intro-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-cta-inner { flex-direction: column; align-items: flex-start; }
  .about-intro-meta span {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .header-inner { justify-content: flex-start; }
  .header-inner .logo { margin-right: auto; }
  .header-actions { order: 9; gap: 0.35rem; }
  .menu-toggle {
    order: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-actions .header-cta { display: none; }
  .nav {
    position: fixed;
    top: 52px; left: 0; right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 200ms ease;
    max-height: calc(100vh - 52px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav > li { width: 100%; }
  .nav > li > a { padding: 0.75rem; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 0.75rem;
    display: none;
    background: var(--bg-surface);
    border-radius: var(--radius);
    margin-top: 0.25rem;
  }
  .nav > li.dropdown-open .dropdown-menu { display: block; }
  .has-mega .mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.75rem 0;
    border-top: none;
    border-radius: var(--radius-lg);
    border: none;
  }
  .has-mega .mega-menu-container {
    padding: 0;
  }
  .mega-menu-inner.mega-menu-grid { grid-template-columns: 1fr; }
  .mega-menu-footer { flex-direction: column; gap: 0.5rem; }
  section { padding: 3.5rem 0; }
  .hero { padding: 5.5rem 0 3rem; min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-aside { order: -1; }
  .hero-visual { max-height: 280px; }
  .hero-visual.is-empty { display: none; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-float-card { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 0.75rem; }
  .hero-float-value { font-size: 0.9375rem; }
  .hero-chips { gap: 0.4rem; }
  .about-intro-layout { grid-template-columns: 1fr; }
  .about-intro-meta span { width: auto; }
  .about-cta-actions { width: 100%; }
  .about-cta-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
  .price-cards { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .featured-districts { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .home-seo-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions a { flex: 1; justify-content: center; }
  .whatsapp-float { bottom: 1.5rem; }
  .cookie-banner.show ~ .whatsapp-float { bottom: 5.5rem; }
}
