@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface2: #eaf0f8;
  --text: #101828;
  --text-muted: #4b5568;
  --primary: #1d4ed8;
  --primary-hover: #1e3a8a;
  --primary-soft: rgba(29, 78, 216, 0.1);
  --accent: #25d366;
  --accent-hover: #1da851;
  --border: #dbe3ef;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(16, 24, 40, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

/* Top bar */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.top-bar a { color: #fff; font-weight: 600; }
.top-bar a:hover { opacity: 0.9; }
.top-phones { display: flex; flex-wrap: wrap; gap: 0.35rem 0.75rem; align-items: center; }
.top-sep { opacity: 0.5; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo span { color: var(--primary); display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; }
.main-nav { display: flex; align-items: center; gap: 1.15rem; }
.main-nav a { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; }
.main-nav a:hover { color: var(--primary); }
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.85rem !important;
}
.nav-wa:hover { background: var(--accent-hover); color: #fff !important; }
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 1.2rem;
  cursor: pointer;
}

main { padding: 2rem 0 4rem; }
h1 { font-size: clamp(1.65rem, 4vw, 2.35rem); line-height: 1.2; margin-bottom: 0.85rem; font-weight: 800; }
h2 { font-size: 1.3rem; margin: 2rem 0 0.85rem; font-weight: 700; }
h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; font-weight: 700; }
.lead { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.prose { color: var(--text-muted); margin-bottom: 0.85rem; line-height: 1.75; }

.breadcrumbs { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #fff 50%, #dbeafe 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-wa { background: var(--accent); color: #fff; }
.btn-wa:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary-soft); }
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.hero-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card strong { display: block; font-size: 1.65rem; color: var(--primary); font-weight: 800; }
.stat-card span { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

/* Cards & grids */
.content-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}
.content-block h2:first-child { margin-top: 0; }

.mahalle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}
.mahalle-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  box-shadow: var(--shadow);
}
.mahalle-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.14);
  color: var(--text);
}
.mahalle-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--surface2); }
.mahalle-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mahalle-card-name {
  padding: 0.55rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.15s, transform 0.15s;
  box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.service-card h3 { margin-top: 0; color: var(--text); }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.link-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }
.link-chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted) !important;
}
.link-chip:hover { border-color: var(--primary); color: var(--primary) !important; }

/* Marka rozetleri */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.15s, transform 0.15s;
}
.brand-card:hover { border-color: var(--primary); transform: translateY(-2px); color: var(--text); }
.brand-card .brand-icon { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }

/* Page banner */
.page-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  max-height: 220px;
}
.page-banner img,
.page-banner-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,24,40,0.88) 0%, rgba(16,24,40,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.25rem;
  color: #fff;
}
.page-banner-tag { font-size: 0.78rem; font-weight: 600; opacity: 0.9; }
.page-banner-title { font-size: 1.15rem; font-weight: 800; margin: 0.15rem 0 0; }

/* Lists */
.check-list { list-style: none; margin: 0.5rem 0; }
.check-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.process-steps { list-style: none; margin: 0.75rem 0; }
.process-steps li {
  display: flex;
  gap: 0.85rem;
  padding: 0.65rem 0;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
}
.process-steps p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.75rem;
  margin: 0.75rem 0;
}
.symptom-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  background: var(--surface2);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1.1rem 0.9rem; color: var(--text-muted); font-size: 0.92rem; }

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid rgba(29, 78, 216, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.cta-box h2 { margin-top: 0; }
.cta-box p { color: var(--text-muted); margin-bottom: 1rem; }
.cta-phones { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: center; margin-top: 0.75rem; }
.cta-phones a { font-weight: 700; font-size: 0.95rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-top: 0; font-size: 0.95rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-card a { display: block; font-weight: 700; font-size: 1.05rem; padding: 0.25rem 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5.5rem;
}
.sidebar-card h3 { margin-top: 0; font-size: 0.95rem; }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 0.3rem 0; font-size: 0.85rem; }
.sidebar-list a { color: var(--text-muted); font-weight: 600; }
.sidebar-list a:hover { color: var(--primary); }

.brand-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.75rem 0; }
.brand-tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-grid h4 { color: #f1f5f9; font-size: 0.9rem; margin-bottom: 0.65rem; }
.footer-grid p { font-size: 0.85rem; line-height: 1.6; }
.footer-grid a { display: block; color: #94a3b8; font-size: 0.85rem; padding: 0.2rem 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
}
.brand-disclaimer {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #1e293b;
  font-size: 0.68rem;
  line-height: 1.55;
  color: #64748b;
  text-transform: lowercase;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Kare usta + metin satırı */
.prose-poster-row {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin: 0 0 1.5rem;
}
.poster-square {
  flex-shrink: 0;
  width: 160px;
  margin: 0;
  text-align: center;
}
.poster-square .poster-img,
.poster-square img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
}
.poster-square figcaption {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 600;
  line-height: 1.3;
}
.poster-text {
  flex: 1;
  min-width: 0;
  margin: 0 !important;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.sidebar-usta-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  display: block;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { max-height: 240px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  .mobile-toggle { display: block; }
  .site-header .container { position: relative; }
  .page-banner img,
  .page-banner-img { height: 140px; }
  .page-banner { max-height: 140px; }
  .poster-square { width: 110px; }
  .poster-square .poster-img,
  .poster-square img { width: 110px; height: 110px; }
}
