/* Akhan Boya Badana Ustası — ana stil dosyası */

:root {
  --navy: #0b3355;
  --navy-2: #0d3f68;
  --navy-dark: #082238;
  --teal: #0e9488;
  --teal-2: #12a89b;
  --teal-light: #e6f7f5;
  --amber: #f5a623;
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --text: #1e2a36;
  --muted: #5c6b78;
  --border: #e5ebf0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px -12px rgba(11, 51, 85, 0.18);
  --shadow-lg: 0 24px 56px -20px rgba(8, 34, 56, 0.28);
  --container: 1180px;
  --font-head: "Plus Jakarta Sans", "Manrope", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.22; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }
.wrap, .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.ic { width: 1em; height: 1em; fill: currentColor; }
.section { padding: 76px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--teal); display: inline-block; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--teal-2), var(--teal)); color: #fff; box-shadow: 0 12px 26px -10px rgba(14,148,136,.55); }
.btn-primary:hover { box-shadow: 0 16px 32px -10px rgba(14,148,136,.65); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 12px 26px -12px rgba(11,51,85,.55); }
.btn-navy:hover { background: var(--navy-2); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* Topbar */
.topbar { background: var(--navy-dark); color: #cfe0ec; font-size: .8rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar .btn-sm { padding: 6px 16px; font-size: .78rem; }
.hide-sm { }

/* Header / Nav */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.site-header > .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; position: relative; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; line-height: 1.05; }
.logo svg { flex: none; }
.logo > span { display: flex; flex-direction: column; }
.logo-text-a { display: block; color: var(--navy); font-size: 1.05rem; letter-spacing: .01em; }
.logo-text-a-light { color: #fff; }
.logo-text-b { display: block; color: var(--teal); font-size: .78rem; letter-spacing: .06em; font-weight: 700; }
.nav-main { display: flex; align-items: center; gap: 22px; }
.nav-main a { font-weight: 600; font-size: .92rem; color: var(--text); position: relative; padding: 4px 0; }
.nav-main a:hover { color: var(--teal); }
.nav-main a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--teal); border-radius: 2px; transition: right .18s ease; }
.nav-main a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* Mobil soldan açılır menü (drawer) */
.nav-drawer-overlay {
  position: fixed; inset: 0; background: rgba(8,20,34,.55); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 90;
}
.nav-drawer-overlay.open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 86vw); background: #fff; z-index: 91;
  transform: translateX(-100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; box-shadow: 24px 0 60px -20px rgba(8,34,56,.4);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 18px 16px; border-bottom: 1px solid var(--border); }
.nav-drawer-head .logo { gap: 8px; }
.nav-drawer-close { background: var(--bg-soft); border: none; width: 34px; height: 34px; border-radius: 10px; font-size: 1.4rem; line-height: 1; color: var(--navy); cursor: pointer; flex: none; }
.nav-drawer-links { display: flex; flex-direction: column; padding: 10px 10px; overflow-y: auto; flex: 1; }
.nav-drawer-links a { display: flex; align-items: center; gap: 12px; padding: 13px 12px; border-radius: 10px; font-weight: 700; font-size: .95rem; color: var(--text); }
.nav-drawer-links a .ic { color: var(--teal); flex: none; }
.nav-drawer-links a:hover, .nav-drawer-links a:active { background: var(--teal-light); color: var(--teal); }
.nav-drawer-cta { display: flex; flex-direction: column; gap: 10px; padding: 16px 18px 22px; border-top: 1px solid var(--border); }
body.drawer-open { overflow: hidden; }

/* Hero */
.hero { position: relative; background: linear-gradient(180deg, #eef6f8 0%, #ffffff 62%); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(14,148,136,.16), rgba(14,148,136,0) 70%); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -220px; left: -160px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(11,51,85,.08), rgba(11,51,85,0) 70%); pointer-events: none;
}
.hero .wrap, .hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 60px; padding-bottom: 60px; position: relative; z-index: 1; }
.hero-eyebrow { color: var(--navy); font-weight: 700; font-size: 1.05rem; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 4.2vw, 3.3rem); margin-bottom: 8px; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--teal); display: block; }
.hero-lead { font-size: 1.08rem; max-width: 46ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0 28px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: var(--navy); }
.hero-badge .ic { color: var(--teal); font-size: 1.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media {
  position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--navy);
  isolation: isolate;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(8,34,56,0) 45%, rgba(8,34,56,.38) 100%); pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-frame { position: relative; }
.hero-float-badge {
  position: absolute; left: -22px; bottom: 26px; z-index: 2; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
}
.hero-float-badge .hero-float-icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero-float-badge b { display: block; color: var(--navy); font-size: 1.05rem; line-height: 1.1; }
.hero-float-badge span { display: block; font-size: .74rem; color: var(--muted); }

.stats-strip { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); margin-top: -46px; position: relative; z-index: 5; }
.stats-strip .wrap, .stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 30px; padding-bottom: 30px; }
.stat { display: flex; align-items: center; gap: 14px; padding: 0 14px; text-align: left; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -5px; top: 4px; bottom: 4px; width: 1px; background: var(--border); }
.stat-icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.stat b { display: block; color: var(--navy); font-size: 1.35rem; font-family: var(--font-head); }
.stat span { font-size: .8rem; color: var(--muted); }

/* Service cards */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Anasayfa — "Fiyatı Belirleyen Faktörler" editoryal bölüm */
.factor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 32px; margin-top: 8px; }
.factor-item { border-left: 3px solid var(--teal); padding-left: 18px; }
.factor-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.factor-item p { font-size: .92rem; margin-bottom: 0; }

/* Anasayfa — "Usta Seçerken" rehber listesi */
.guide-list { counter-reset: guide; display: grid; gap: 16px; margin-top: 8px; }
.guide-item { display: flex; gap: 16px; align-items: flex-start; }
.guide-item::before {
  counter-increment: guide; content: counter(guide);
  width: 32px; height: 32px; border-radius: 50%; background: var(--teal-light); color: var(--teal);
  font-weight: 800; font-family: var(--font-head); display: flex; align-items: center; justify-content: center; flex: none;
}
.guide-item h4 { font-size: .98rem; margin-bottom: 3px; }
.guide-item p { font-size: .88rem; margin-bottom: 0; color: var(--muted); }

/* Anasayfa — "Boya Badana Haritası" ilçe grupları */
.ilce-grup { margin-bottom: 30px; }
.ilce-grup:last-child { margin-bottom: 0; }
.ilce-grup-head { margin-bottom: 14px; }
.ilce-grup-head h3 { font-size: 1.05rem; margin-bottom: 4px; }
.ilce-grup-head p { font-size: .87rem; color: var(--muted); margin-bottom: 0; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 58px; height: 58px; border-radius: 15px; background: linear-gradient(150deg, var(--teal-light), #d9f2ef);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--teal); font-size: 1.6rem;
}
.card h3 { font-size: 1.04rem; margin-bottom: 8px; }
.card p { font-size: .88rem; margin-bottom: 0; }
.card a.card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; font-weight: 700; color: var(--teal); font-size: .85rem; transition: gap .15s ease; }
.card a.card-link:hover { gap: 8px; }

/* Fotoğraflı hizmet kartı */
.card-photo { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: left; transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column; }
.card-photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-photo-media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.card-photo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card-photo:hover .card-photo-media img { transform: scale(1.06); }
.card-photo-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-photo-body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card-photo-body p { font-size: .89rem; }
.card-photo-body .info-list { margin-bottom: 6px; }
.card-photo-body .card-link { margin-top: auto; padding-top: 6px; }

/* Kompakt fotoğraflı kart — "Diğer Hizmetler" gibi ikincil bağlantı ızgaraları için */
.card-compact-photo { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: left; transition: transform .2s ease, box-shadow .2s ease; }
.card-compact-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-compact-photo-media { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); position: relative; }
.card-compact-photo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card-compact-photo:hover .card-compact-photo-media img { transform: scale(1.07); }
.card-compact-photo-media .card-icon { position: absolute; bottom: -18px; left: 14px; margin: 0; width: 42px; height: 42px; border-radius: 12px; box-shadow: var(--shadow); background: #fff; }
.card-compact-photo-body { padding: 26px 16px 16px; }
.card-compact-photo-body h3 { font-size: .95rem; margin-bottom: 6px; }
.card-compact-photo-body .card-link { font-size: .82rem; }

/* İlçe grid + harita */
.ilce-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.ilce-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ilce-chip {
  display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 10px; font-size: .87rem; font-weight: 600; background: #fff; transition: border-color .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.ilce-chip .ic { color: var(--teal); font-size: 1rem; }
.ilce-chip:hover { border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.ilce-map-box { background: transparent; padding: 20px; }
.ilce-map-box iframe.harita-embed { width: 100%; }

/* Süreç */
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process-row::before {
  content: ""; position: absolute; top: 29px; left: 11%; right: 11%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 18px); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 58px; height: 58px; border-radius: 50%; background: #fff; color: var(--teal); border: 2px solid var(--teal-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: var(--shadow);
}
.process-num .num-badge {
  position: absolute; top: -4px; right: calc(50% - 34px); width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: .68rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: .95rem; margin-bottom: 4px; }
.process-step p { font-size: .82rem; margin-bottom: 0; }

/* Galeri */
.gallery-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.gallery-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-soft); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-tag {
  position: absolute; top: 12px; left: 12px; background: rgba(8,34,56,.82); backdrop-filter: blur(2px); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}

/* CTA banda */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 130%),
    url('/assets/img/cta-brush.webp') center/cover no-repeat;
  background-blend-mode: normal;
  border-radius: var(--radius-lg); color: #fff; padding: 46px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(6,20,34,.72) 0%, rgba(6,20,34,.34) 45%, rgba(6,20,34,.66) 100%);
}
.cta-band h3 { color: #fff; margin-bottom: 6px; font-size: 1.45rem; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 0; }
.cta-band .btn-outline { background: #fff; color: var(--navy); border-color: #fff; }
.cta-band .btn-outline:hover { background: #f0f4f7; }

/* Marka rozetleri */
.brand-chip {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1rem; color: var(--navy);
  padding: 6px 4px;
}
.brand-chip::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--brand-color, var(--teal)); flex: none; box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-color, var(--teal)) 18%, transparent); }
.brand-card p { margin-top: 10px; }

/* Marka sonsuz döngü şeridi (marquee) */
.brand-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-marquee-track { display: flex; width: max-content; gap: 16px; animation: brandScroll 28s linear infinite; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-marquee-item {
  display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 30px; white-space: nowrap; box-shadow: var(--shadow); height: 92px; transition: transform .2s ease, box-shadow .2s ease;
}
.brand-marquee-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.brand-marquee-item img { max-height: 56px; max-width: 150px; width: auto; height: auto; object-fit: contain; }
@keyframes brandScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brand-marquee-track { animation: none; } }

/* Renk kataloğu */
.color-cat { margin-top: 40px; }
.color-cat:first-child { margin-top: 0; }
.color-cat-title { font-size: 1.15rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.color-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.color-swatch { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.color-swatch-box { width: 100%; aspect-ratio: 1; border-radius: 14px; box-shadow: 0 8px 18px -10px rgba(8,34,56,.3), inset 0 0 0 1px rgba(0,0,0,.06); transition: transform .18s ease; }
.color-swatch:hover .color-swatch-box { transform: translateY(-4px) scale(1.03); }
.color-swatch b { font-size: .82rem; color: var(--navy); margin-top: 4px; }
.color-swatch span { font-size: .72rem; color: var(--muted); letter-spacing: .03em; }
.color-swatch-actions { display: flex; gap: 6px; margin-top: 6px; }
.color-copy-btn, .color-wa-btn {
  width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border); background: #fff; color: var(--muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.color-copy-btn:hover, .color-wa-btn:hover { border-color: var(--teal); color: var(--teal); }
.color-copy-btn.copied { background: var(--teal); border-color: var(--teal); color: #fff; }
.color-copy-btn.copied::after { content: "✓"; }
.color-copy-btn.copied svg { display: none; }

/* Scroll-reveal animasyon */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Hizmet detay banner */
.hizmet-banner { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 21/8; margin-top: 8px; }
.hizmet-banner img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .hizmet-banner { aspect-ratio: 4/3; } }

/* Breadcrumb */
.breadcrumb { font-size: .82rem; color: var(--muted); padding: 16px 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span.sep { margin: 0 6px; }

/* Mahalle listesi (ilçe sayfası içinde) */
.mahalle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mahalle-chip { display: block; padding: 10px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: .85rem; font-weight: 600; background: #fff; }
.mahalle-chip:hover { border-color: var(--teal); color: var(--teal); }

/* SSS accordion */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; color: var(--navy); gap: 12px; }
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--teal); flex: none; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-top: 10px; margin-bottom: 0; font-size: .92rem; }

/* Harita bölümü (footer üstü) */
.harita-section { line-height: 0; }
.harita-embed { width: 100%; height: 260px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #b9c9d6; padding: 44px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 30px; padding-bottom: 30px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-col a { display: block; margin-bottom: 9px; font-size: .87rem; color: #b9c9d6; }
.footer-col a:hover { color: var(--teal-2); }
.footer-brand p { color: #9fb2c1; font-size: .87rem; margin-top: 14px; }
.footer-contact-link { display: flex; align-items: center; gap: 8px; }
.footer-contact-link .ic { color: var(--teal-2); font-size: 1.05rem; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; text-align: center; font-size: .8rem; color: #7f93a3; }
.footer-ilce-map { display: flex; flex-wrap: wrap; gap: 6px 14px; padding: 18px 0 30px; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; }
.footer-ilce-map a { color: #93a8b8; }
.footer-ilce-map a:hover { color: var(--teal-2); }

/* Sticky mobil CTA */
.mobile-cta { display: none; }

/* Sayfa içi hizmet/ilçe içerik blokları */
.content-block { max-width: 880px; }
.content-block h2 { font-size: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: .93rem; color: var(--text); }
.info-list li .ic { color: var(--teal); flex: none; margin-top: 2px; font-size: 1.1rem; }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-pill { background: var(--teal-light); color: var(--teal); font-weight: 700; font-size: .78rem; padding: 6px 14px; border-radius: 999px; }

/* Mahalle sayfası "Pratik Bilgi Notu" kutusu */
.info-callout {
  display: flex; gap: 14px; align-items: flex-start; margin-top: 20px;
  background: var(--teal-light); border: 1px solid rgba(14,148,136,.18); border-radius: var(--radius);
  padding: 16px 18px;
}
.info-callout-icon {
  width: 36px; height: 36px; border-radius: 10px; background: #fff; color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.info-callout strong { display: block; color: var(--navy); font-size: .88rem; margin-bottom: 4px; }
.info-callout p { margin: 0; font-size: .92rem; color: var(--text); }

/* İlçe sayfası "Sık Yapılan Hatalar" — info-callout'un amber tonlu uyarı varyantı */
.info-callout-alert { background: #fff6e8; border-color: rgba(217,142,10,.28); }
.info-callout-alert .info-callout-icon { color: #b3760a; }

/* İlçe sayfası hero altındaki "Hızlı Özet" kutusu — AI/arama özetleri için doğrudan cevap bloğu */
.quick-answer {
  display: flex; gap: 12px; align-items: flex-start; margin: 18px 0;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px;
}
.quick-answer-icon { color: var(--teal); flex: none; margin-top: 2px; }
.quick-answer p { margin: 0; font-size: .92rem; color: var(--navy); font-weight: 600; line-height: 1.55; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .factor-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(3, 1fr); }
  .process-row::before { display: none; }
  .ilce-panel { grid-template-columns: 1fr; }
  .ilce-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .hero-float-badge { left: 16px; }
  .color-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; gap: 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); padding: 8px 20px; z-index: 40; }
  .nav-main.open { display: flex; }
  .nav-main a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-main a:last-child { border-bottom: 0; }
  .nav-main a::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn span { display: none; }
  .hero .wrap, .hero .container { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-media { order: -1; aspect-ratio: 16/10; }
  .hero-float-badge { position: static; margin-top: 14px; display: inline-flex; }
  .stats-strip .wrap, .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat + .stat::before { display: none; }
  .grid-5, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .ilce-grid { grid-template-columns: repeat(2, 1fr); }
  .mahalle-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 34px 26px; }
  .topbar-item.hide-sm { display: none; }
  .mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: #fff; box-shadow: 0 -8px 24px rgba(11,51,85,.15); padding: 10px 12px;
    gap: 10px; border-top: 1px solid var(--border);
  }
  .mobile-cta .btn { flex: 1; }
  body { padding-bottom: 66px; }
}
@media (max-width: 560px) {
  .grid-5, .grid-3, .ilce-grid, .mahalle-grid, .gallery-row { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .wrap, .stats-strip .container { grid-template-columns: 1fr; }
  .color-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-marquee-item { padding: 11px 20px; font-size: .92rem; }

  /* "Nasıl Çalışıyoruz" mobilde dikey zaman çizelgesi (app-tarzı stepper) */
  .process-row { display: block; }
  .process-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; position: relative; padding-bottom: 30px; }
  .process-step:last-child { padding-bottom: 0; }
  .process-step:not(:last-child)::after {
    content: ""; position: absolute; left: 28px; top: 60px; bottom: 2px; width: 2px;
    background: repeating-linear-gradient(180deg, var(--border) 0 8px, transparent 8px 14px);
  }
  .process-num { margin: 0; flex: none; }
  .process-step h4 { font-size: 1rem; margin-top: 4px; }
}
