/* Limova — özel CSS (framework yok) */
:root {
  --bg: #ffffff;
  --bg-soft: #faf8f6;
  --bg-alt: #f3f0ec;
  --text: #1a2433;
  --text-muted: #5a6178;
  --accent: #9cb82a;
  --accent-hover: #7a961f;
  --accent-soft: rgba(156, 184, 42, 0.12);
  --accent-gold: #b2d235;
  --cta: #c0392b;
  --cta-hover: #962d22;
  --border: #e8e4df;
  --radius: 12px;
  --radius-lg: 16px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --header-h: 72px;
  --site-header-total: var(--header-h);
  --container: min(1140px, 100% - 2rem);
  --footer-bg: #0b1222;
  --footer-panel: rgba(15, 23, 42, 0.65);
  --whatsapp-green: #1a6d3a;
  --whatsapp-green-hover: #155a30;
  --phone-blue: #2563eb;
  --phone-blue-hover: #1d4ed8;
  --mobile-bar-h: 56px;
  --logo-ratio: 200 / 107;
  --logo-nav-h: calc(var(--header-h) - 10px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-total) - 8px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.mobile-drawer-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img {
  max-width: 100%;
  display: block;
  height: auto;
}

.hero-bg img,
.hero-img,
.district-hero__bg img,
.service-hero__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.nav-logo,
.footer-logo {
  max-width: none;
}

.nav-logo {
  width: auto;
  height: var(--logo-nav-h);
  aspect-ratio: var(--logo-ratio);
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: auto;
  height: 44px;
  aspect-ratio: var(--logo-ratio);
  object-fit: contain;
}
button { font: inherit; cursor: pointer; border: none; background: none; }

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo.logo-nav {
  padding: 0;
  line-height: 0;
}

.logo-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--site-header-total);
}

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

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-picture,
.hero-img {
  width: 100%;
  height: 100%;
}

.hero-img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.35) 0%, rgba(10, 8, 6, 0.48) 55%, rgba(10, 8, 6, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 1rem 5rem;
  color: #fff;
  max-width: 820px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  display: block;
  color: var(--accent-gold);
}

.hero-desc {
  margin: 0 auto 1.75rem;
  max-width: 38rem;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.35);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.btn-hero-cta {
  gap: 0.85rem;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  text-align: left;
  border-radius: 999px;
}

.btn-hero-cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.btn-hero-cta-icon {
  width: 20px;
  height: 20px;
}

.btn-hero-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1.2;
}

.btn-hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

.btn-hero-phone {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-stat {
  min-width: 7.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-scroll-wrap {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
}

.hero-scroll {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroBounce 2s ease-in-out infinite;
}

.hero-scroll-arrow { width: 22px; height: 22px; }

@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Desktop hero CTA: tek satır + geniş pill */
@media (min-width: 768px) {
  .hero-title-accent { display: inline; }
  .hero-content { padding-bottom: 4rem; }

  .btn-hero-cta {
    min-width: 22rem;
    padding: 0.95rem 2.5rem 0.95rem 1rem;
    gap: 1.1rem;
  }

  .btn-hero-cta-icon-wrap {
    width: 52px;
    height: 52px;
  }

  .btn-hero-cta-icon {
    width: 22px;
    height: 22px;
  }

  .btn-hero-label {
    font-size: 0.78rem;
  }

  .btn-hero-phone {
    font-size: 1.28rem;
  }
}

/* Mobile hero CTA */
@media (max-width: 767px) {
  .btn-hero-cta {
    width: min(100%, 280px);
    margin: 0 auto;
  }
  .btn-hero-cta-icon-wrap {
    width: 40px;
    height: 40px;
  }
  .btn-hero-phone { font-size: 1.05rem; }
  .hero-stats { gap: 0.5rem; }
  .hero-stat { min-width: calc(33.33% - 0.5rem); flex: 1 1 30%; padding: 0.65rem 0.5rem; }
  .hero-stat-value { font-size: 1.15rem; }
  .hero-stat-label { font-size: 0.62rem; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.section-soft { background: var(--bg-soft); }
.section-alt { background: var(--bg-alt); }

.section-head {
  margin-bottom: 2.25rem;
  max-width: 42rem;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ===== HİZMETLER ===== */
.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.hizmet-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hizmet-card--link {
  display: block;
  color: inherit;
}

.hizmet-card--link:hover .hizmet-card__title {
  color: var(--accent);
}

.hizmet-card:hover,
.hizmet-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 29, 46, 0.1);
}

.hizmet-card__media {
  aspect-ratio: 400 / 320;
  overflow: hidden;
  background: #eee;
}

.hizmet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.hizmet-card:hover .hizmet-card__media img { transform: scale(1.04); }

.hizmet-card__body { padding: 1.1rem 1.15rem 1.25rem; }

.hizmet-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.hizmet-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ===== NEDEN ===== */
.neden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.neden-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.neden-card:hover {
  border-color: rgba(156, 184, 42, 0.25);
  box-shadow: 0 8px 24px rgba(156, 184, 42, 0.08);
}

.neden-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.neden-card__icon svg { width: 24px; height: 24px; }

.neden-card__icon--currency {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.neden-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.neden-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== MÜŞTERİ YORUMLARI (yatay kaydırma) ===== */
.district-musteri-yorum {
  background: linear-gradient(180deg, #faf8f6 0%, #fff 55%, #f3f0ec 100%);
  border-top: 1px solid rgba(26, 29, 46, 0.06);
}

.district-musteri-yorum__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.district-musteri-yorum__eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.district-musteri-yorum__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.district-musteri-yorum__intro {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.district-musteri-yorum__intro--second { margin-top: 0.45rem; }
.district-musteri-yorum__intro strong { color: var(--text); font-weight: 800; }

.district-musteri-yorum__track {
  display: flex;
  gap: 1rem;
  margin: 0 -1rem;
  padding: 0.25rem 1rem 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 184, 42, 0.35) transparent;
}

.district-musteri-yorum__track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 12px;
}

.district-musteri-yorum__card {
  flex: 0 0 min(88vw, 20rem);
  scroll-snap-align: center;
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(26, 29, 46, 0.06);
  display: flex;
  flex-direction: column;
}

.district-musteri-yorum__quote {
  margin: 0;
  padding: 1.1rem 1.15rem 0.85rem;
  flex: 1;
}

.district-musteri-yorum__quote p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: #334155;
}

.district-musteri-yorum__quote p::before {
  content: '\201C';
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(156, 184, 42, 0.35);
  margin-right: 0.08em;
}

.district-musteri-yorum__meta {
  margin: 0;
  padding: 0.75rem 1.15rem 1.05rem;
  border-top: 1px solid #f1f5f9;
  display: grid;
  gap: 0.25rem;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  border-radius: 0 0 15px 15px;
}

.district-musteri-yorum__stars {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #d97706;
}

.district-musteri-yorum__ctx {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.district-musteri-yorum__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 0;
  text-align: center;
}

.district-musteri-yorum__foot-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 28rem;
}

.district-musteri-yorum__foot-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.25);
  transition: background 0.2s, transform 0.2s;
}

.district-musteri-yorum__foot-call:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.district-musteri-yorum__foot-call-num { font-size: 1rem; }

/* ===== ÖRNEK ÇALIŞMALAR ===== */
.calismalar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .calismalar-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.calismalar-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.calismalar-item:hover {
  border-color: var(--accent);
  transform: scale(1.02);
}

.calismalar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.marka-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.marka-item:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06); }

.marka-item img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: filter 0.2s, opacity 0.2s;
}

.marka-item:hover img {
  filter: none;
  opacity: 1;
}

/* ===== BÖLGELER ===== */
.bolgeler-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bolge-chip {
  padding: 0.55rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.bolge-chip:hover {
  background: var(--accent-soft);
  border-color: rgba(156, 184, 42, 0.3);
  color: var(--accent);
}

.bolgeler-note {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer.is-open { grid-template-rows: 1fr; }

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== İLETİŞİM ===== */
.iletisim-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.iletisim-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.iletisim-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.iletisim-card--wa:hover { border-color: rgba(26, 109, 58, 0.3); }

.iletisim-card__icon { font-size: 1.75rem; }
.iletisim-card__label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.iletisim-card__value { font-size: 1rem; font-weight: 800; color: var(--text); }

/* ===== FOOTER ===== */
.footer-site {
  position: relative;
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 2rem;
  overflow: hidden;
}

.footer-deco {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

.footer-site .container { position: relative; z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-logo-link .logo-text { color: #fff; }

.footer-intro {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}

.footer-channels {
  display: flex;
  gap: 0.65rem;
}

.footer-channel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}

.footer-channel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-channel--wa:hover { background: var(--whatsapp-green); border-color: var(--whatsapp-green); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1.25rem;
}

.footer-panel {
  padding: 1.35rem;
  background: var(--footer-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.footer-phone-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  color: var(--accent-gold);
}

.footer-phone-num {
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-lead-text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.footer-lead-text strong { color: #fff; }

.footer-pill-cta {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-gold);
  color: #1a1208;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.footer-pill-cta:hover {
  background: #fcd34d;
  transform: translateY(-1px);
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-heading span {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.footer-links, .footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li { margin-bottom: 0.45rem; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.footer-links a::before {
  content: '\203A';
  color: rgba(251, 191, 36, 0.7);
  font-weight: 700;
}

.footer-links a:hover { color: #fff; }

.footer-links-all { color: var(--accent-gold) !important; }
.footer-links-all::before { color: var(--accent-gold) !important; }

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a { color: var(--accent-gold); }
.footer-contact a:hover { text-decoration: underline; }

.footer-cicon { color: var(--accent-gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox__box {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 800px);
  max-height: 90vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.85;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav--prev { left: -3rem; }
.lightbox__nav--next { right: -3rem; }

.lightbox__counter {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
}

@media (max-width: 767px) {
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}

/* ===== FLOAT ACTIONS (desktop) ===== */
.float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 24px; height: 24px; }
.float-btn-phone { background: var(--phone-blue); }
.float-btn-phone:hover { background: var(--phone-blue-hover); }
.float-btn-whatsapp { background: var(--whatsapp-green); }

/* ===== MOBILE BAR ===== */
.mobile-bar {
  display: none;
}

/* ===== MOBILE DRAWER ===== */
#mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}

#mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s;
}

#mobile-drawer.is-open .mobile-drawer__scrim { opacity: 1; }

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(85vw, 320px);
  height: 100%;
  background: #0f172a;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__brand {
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(135deg, #1a2433 0%, #9cb82a 100%);
}

.mobile-drawer__kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}

.mobile-drawer__title {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.mobile-drawer__nav { flex: 1; padding: 0.5rem 0; }

.mobile-drawer__link {
  display: block;
  padding: 0.95rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-drawer__link:hover { background: rgba(255, 255, 255, 0.05); }

.mobile-drawer__block { padding: 0.5rem 0; }

.mobile-drawer__block-title {
  display: block;
  padding: 0.65rem 1.25rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.mobile-drawer__sublink {
  display: block;
  padding: 0.55rem 1.25rem 0.55rem 1.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.mobile-drawer__sublink::before {
  content: '\203A';
  position: absolute;
  left: 1.15rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.mobile-drawer__sublink--accent { color: var(--accent-gold); font-weight: 600; }

.mobile-drawer__cta {
  margin: auto 1rem 1.25rem;
  padding: 1rem;
  border-top: 2px solid var(--accent-gold);
  text-align: center;
  color: #fff;
}

.mobile-drawer__cta-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.mobile-drawer__cta-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-panel--lead { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-channels { justify-content: center; }
  .footer-logo-link { justify-content: center; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  :root { --logo-nav-h: calc(var(--header-h) - 12px); }
  .footer-logo { height: 36px; }

  body.page-home { padding-bottom: var(--mobile-bar-h); }

  .float-actions { display: none; }

  .mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    height: var(--mobile-bar-h);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  }

  .mobile-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
  }

  .mobile-bar__btn svg { width: 20px; height: 20px; }
  .mobile-bar__btn--phone { background: var(--phone-blue); }
  .mobile-bar__btn--phone:active { background: var(--phone-blue-hover); }
  .mobile-bar__btn--wa { background: var(--whatsapp-green); }

  .hero { min-height: calc(100dvh - var(--mobile-bar-h)); }
  .hero-img { object-position: center 35%; }
  .hero-scroll-wrap { bottom: 1rem; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .mobile-bar { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== HİZMET SAYFALARI ===== */
body.page-service {
  padding-top: var(--site-header-total);
}

body.page-service .hero { display: none; }

.service-hero {
  position: relative;
  color: #fff;
  padding: 2.75rem 0 3rem;
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.58) 0%, rgba(10, 8, 6, 0.76) 55%, rgba(10, 8, 6, 0.84) 100%);
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: start;
}

.service-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
}

.service-hero__lead {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  opacity: 0.5;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb li[aria-current="page"] { color: rgba(255, 255, 255, 0.95); }

.service-hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  min-width: min(100%, 280px);
}

.service-hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, transform 0.2s;
}

.service-hero__cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.service-hero__price-jump {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.service-hero__price-jump:hover { text-decoration: underline; }

.service-content {
  padding: 2.5rem 0 3.5rem;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.service-article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.service-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.service-body h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-body h2:first-child { margin-top: 0; }

.service-body p {
  margin: 0 0 1rem;
  color: #4a5568;
  line-height: 1.75;
  font-size: 0.96rem;
}

.service-body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: #4a5568;
  line-height: 1.7;
}

.service-body ul li { margin-bottom: 0.35rem; }

.service-body strong { color: var(--text); }

.price-teaser {
  margin: 1.5rem 0;
  padding: 1.1rem 1.15rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #a6611c 0%, #c17a2e 52%, #8c4f14 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(166, 97, 28, 0.28);
}

.price-teaser__head { margin-bottom: 0.85rem; }

.price-teaser__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}

.price-teaser__title {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffd27a;
}

.price-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.price-teaser__item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.65rem 0.4rem;
  text-align: center;
}

.price-teaser__item--highlight {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffd27a;
  box-shadow: 0 0 0 1px rgba(255, 210, 122, 0.35);
}

.price-teaser__type {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.price-teaser__price {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.price-teaser__note {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #fff3d6;
  font-weight: 500;
}

/* .service-body p rengi fiyat kutusunu ezmesin */
.service-body .price-teaser {
  color: #fff;
}

.service-body .price-teaser p.price-teaser__note {
  color: #fff3d6;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.55;
}

.service-body .price-teaser__eyebrow,
.service-body .price-teaser__type,
.service-body .price-teaser__price,
.service-body .price-teaser__price small {
  color: #fff;
}

.service-body .price-teaser__title {
  color: #ffd27a;
}

.work-gallery-block {
  margin: 1.75rem 0;
}

.work-gallery-block .section-label { margin-bottom: 0.65rem; }

.work-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f3f0ec;
}

.work-slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.work-slider__slide {
  flex: 0 0 100%;
  padding: 0;
}

.work-slider__slide button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
}

.work-slider__slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.work-slider__btn--prev { left: 8px; }
.work-slider__btn--next { right: 8px; }
.work-slider__btn:disabled { opacity: 0.35; cursor: default; }

.sub-type-links {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(156, 184, 42, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fffaf5 0%, #fff 55%, #faf8f6 100%);
}

.sub-type-links h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.sub-type-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.sub-type-links__grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.sub-type-links__grid a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.service-sidebar {
  position: sticky;
  top: calc(var(--site-header-total) + 1rem);
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.sidebar-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-card li { margin-bottom: 0.45rem; }

.sidebar-card a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.sidebar-card a:hover { text-decoration: underline; }

.service-faq {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-faq h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .sub-type-links__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .service-hero__grid { grid-template-columns: 1fr; }
  .price-teaser__grid { grid-template-columns: repeat(2, 1fr); }
  body.page-service { padding-bottom: var(--mobile-bar-h); }
}

/* ===== İLÇE SAYFALARI ===== */
body.page-district { padding-bottom: 0; }

.district-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.district-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.district-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.district-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.35) 0%, rgba(10, 8, 6, 0.55) 100%);
}

.district-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 6.75rem;
  padding-bottom: 2.25rem;
}

.district-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}

.district-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
}

.district-hero .breadcrumb {
  margin: 0;
}

.district-hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.district-hero__price-jump {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.55);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.district-hero__price-jump:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

.district-hero__price-jump-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.2);
  animation: heroBounce 2s ease-in-out infinite;
}

.district-hero__price-jump-arrow svg {
  width: 12px;
  height: 12px;
}

.district-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.district-hero__cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.district-intro {
  padding: 2.5rem 0 1rem;
}

.district-intro__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.district-eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.district-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.district-lead {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.district-intro .price-teaser { margin-bottom: 0; }

.district-contact-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.district-contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.district-contact-card p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.district-contact-card a {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.district-highlight-box {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.district-highlight-box h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.district-highlight-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.district-highlight-box li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.district-highlight-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.district-block { padding: 3rem 0; }
.district-block--soft { background: var(--bg-soft); }

.district-rich-text p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.district-rich-text h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.district-rich-text h2:first-child { margin-top: 0; }

.district-local-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.district-neighborhood-box {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.district-neighborhood-box h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 800;
}

.district-neighborhood-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.district-neighborhood-box li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.district-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.district-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.district-steps li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.district-steps h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.district-steps p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.district-process-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.district-cta-band {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #1a1512 0%, #2d2218 100%);
  color: #fff;
}

.district-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.district-cta-band__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.district-cta-band h2 {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800;
  max-width: 32rem;
}

.district-cta-band .btn-primary { flex-shrink: 0; }

.district-hizmet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.district-hizmet-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.district-hizmet-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.district-hizmet-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.district-hizmet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.district-hizmet-card__body {
  padding: 0.85rem 1rem 1rem;
}

.district-hizmet-card__title {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.district-hizmet-card__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.bolge-chip a {
  color: inherit;
  text-decoration: none;
}

.bolge-chip a:hover { color: var(--accent); }

@media (max-width: 991px) {
  .district-intro__grid,
  .district-local-grid,
  .district-process-grid { grid-template-columns: 1fr; }
  .district-hero__grid { grid-template-columns: 1fr; }
  .district-hero__cta-stack { align-items: flex-start; }
}

@media (max-width: 767px) {
  body.page-district { padding-bottom: var(--mobile-bar-h); }
  .district-hero { min-height: 280px; }
  .district-hero__inner {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
  .district-hero__grid { gap: 1.25rem; }
  .district-hero h1 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
  .district-hero__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
