/* Kurtköy Televizyon Tamircisi - ana stil dosyası */
:root {
  --primary: #123c7a;
  --primary-dark: #0a2650;
  --primary-light: #1e56ad;
  --accent: #ff7a1a;
  --accent-dark: #e0630a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebc59;
  --bg: #f5f8fc;
  --card: #ffffff;
  --text: #1b2430;
  --muted: #5b6472;
  --border: #e6ecf5;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(18, 60, 122, 0.10);
  --shadow-sm: 0 4px 14px rgba(18, 60, 122, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.25;
  margin: 0 0 .6em;
  color: var(--primary-dark);
}
p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  background: #fff1e6;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.section-head p { font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,122,26,.35); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { background: #fff; color: var(--primary); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary-light); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

/* Top bar */
.topbar {
  background: var(--primary-dark);
  color: #dbe6f7;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-phones { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar-phones a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: #fff; }
.topbar-phones svg { width: 14px; height: 14px; }
.topbar-note { opacity: .85; }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
header.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--primary-dark); }
.logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.logo .logo-icon svg { width: 24px; height: 24px; }
.logo small { display: block; font-weight: 500; font-size: .68rem; color: var(--muted); letter-spacing: .03em; }

nav.main-nav { display: flex; gap: 28px; }
nav.main-nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--primary); }
nav.main-nav a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; border-radius: 3px; background: var(--accent);
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
}
.menu-toggle svg { width: 26px; height: 26px; color: var(--primary-dark); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 0 18px;
}
.mobile-nav a {
  padding: 12px 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .header-cta { padding: 14px 20px 0; flex-direction: column; align-items: stretch; }

body.nav-open .mobile-nav { display: flex; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,26,.25), transparent 70%);
  top: -200px; right: -150px;
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  padding: 72px 0 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.hero h1 span { color: #ffd8b0; }
.hero p.lead { color: #dbe6f7; font-size: 1.12rem; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px 28px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: #eef4ff; }
.trust-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.hero-art { display: flex; justify-content: center; align-items: center; }
.hero-art svg { width: 100%; max-width: 380px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }

/* Breadcrumb */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--muted);
}
.breadcrumb .container { padding-top: 14px; padding-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-weight: 600; color: var(--primary); }
.breadcrumb span.sep { color: #b7c1d1; }
.breadcrumb span.current { color: var(--muted); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 46px 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 10px; }
.page-hero p { color: #dbe6f7; max-width: 640px; margin-bottom: 0; }
.page-hero .hero-cta { margin: 22px 0 0; }

/* Cards / grids */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.card .icon-badge svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { font-size: .95rem; margin-bottom: 0; }

.bg-alt { background: #fff; }

/* Why us */
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-item { display: flex; gap: 16px; }
.why-item .icon-badge {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: #fff1e6;
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.why-item .icon-badge svg { width: 24px; height: 24px; }
.why-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.why-item p { font-size: .93rem; margin-bottom: 0; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 24px; }
.step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.02rem; }
.step p { font-size: .92rem; margin-bottom: 0; }

/* Area / mahalle pills */
.area-panel {
  background: linear-gradient(135deg, #eef4ff, #f7f0ff);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.pill:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.pill.pill-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding-bottom: 16px; margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; font-size: 1.5rem; }
.cta-banner p { color: #fff0e4; margin-bottom: 0; }
.cta-banner .hero-cta { margin: 0; }
.cta-banner .btn-accent { background: #fff; color: var(--accent-dark); box-shadow: none; }
.cta-banner .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }

/* Footer */
footer.site-footer { background: var(--primary-dark); color: #c9d6ea; padding: 56px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.6fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid p { color: #a9b8d1; font-size: .9rem; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: #c9d6ea; font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-areas { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.footer-areas a { font-size: .84rem; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: .82rem;
  color: #90a1c0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--whatsapp);
  color: #fff;
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  animation: pulse-wa 2.4s infinite;
}
.float-whatsapp svg { width: 30px; height: 30px; }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Intro / content blocks */
.content-block { max-width: 820px; }
.content-block h2 { font-size: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.badge-strip { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0; }
.badge-strip .badge {
  display: flex; align-items: center; gap: 8px;
  background: #eef4ff; color: var(--primary-dark);
  padding: 10px 16px; border-radius: 999px;
  font-size: .85rem; font-weight: 700;
}
.badge-strip .badge svg { width: 16px; height: 16px; color: var(--primary); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 260px; }
  .grid-3, .grid-4, .why-list, .steps, .two-col { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  nav.main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .topbar-note { display: none; }
  .grid-3, .grid-4, .grid-2, .why-list, .steps, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .area-panel { padding: 26px; }
  .section { padding: 46px 0; }
  .float-whatsapp { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}
