/* Talep Oluştur - Beyaz Eşya Servis - Tema CSS */
:root {
  --primary: #0d4a8c;
  --primary-dark: #08305c;
  --primary-light: #1e6fb8;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 12px rgba(13, 74, 140, 0.08);
  --shadow-md: 0 10px 30px rgba(13, 74, 140, 0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary-light); }

/* Top bar */
.topbar {
  background: var(--primary-dark);
  color: #cfe2ff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar-info { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.topbar-info i { margin-right: 6px; opacity: .9; }

/* Container */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(13,74,140,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff; font-size: 20px;
  box-shadow: var(--shadow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 18px; color: var(--primary-dark); font-weight: 800; letter-spacing: -.3px; }
.logo-text span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

nav.main-nav ul { list-style: none; display: flex; gap: 6px; align-items: center; }
nav.main-nav a {
  color: var(--text);
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 8px;
  transition: all .15s ease;
}
nav.main-nav a:hover { background: var(--bg-soft); color: var(--primary); }
nav.main-nav a.cta {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
nav.main-nav a.cta:hover { background: var(--accent-dark); color: #fff; }

.menu-toggle { display: none; background: none; border: 0; font-size: 24px; color: var(--primary); cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0d4a8c 0%, #1e6fb8 60%, #2589d6 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(245,158,11,.15), transparent 45%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 18px; max-width: 800px; }
.hero p.lead { font-size: clamp(15px, 1.6vw, 19px); max-width: 720px; margin-bottom: 32px; opacity: .94; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(245,158,11,.35); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-wp { background: #25d366; color: #fff; }
.btn-wp:hover { background: #1ebe5a; color: #fff; }

/* Section */
section { padding: 64px 0; }
section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-head p { color: var(--text-soft); font-size: 16px; }

/* Grids */
.grid { display: grid; gap: 22px; }
.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(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .2s ease;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.card .icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.card h3 { font-size: 18px; color: var(--primary-dark); margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--text-soft); font-size: 14.5px; margin-bottom: 16px; }
.card .arrow { color: var(--primary); font-weight: 700; font-size: 14px; }

/* Brand chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: all .15s ease;
}
.chip:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  text-align: center;
  padding: 28px 20px;
}
.feature .icon-circle {
  width: 64px; height: 64px;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px;
  margin: 0 auto 16px;
  border: 1px solid var(--border);
}
.feature h4 { font-size: 16px; color: var(--primary-dark); margin-bottom: 8px; font-weight: 700; }
.feature p { font-size: 14px; color: var(--text-muted); }

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.breadcrumb ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.breadcrumb li { color: var(--text-muted); }
.breadcrumb li::after { content: '/'; margin-left: 8px; color: var(--text-muted); opacity: .5; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--primary); font-weight: 600; }

/* Content article */
.content-section { padding: 56px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
article.content h1 { font-size: clamp(26px, 3vw, 36px); color: var(--primary-dark); margin-bottom: 16px; line-height: 1.2; letter-spacing: -.4px; }
article.content h2 { font-size: 24px; color: var(--primary-dark); margin: 36px 0 14px; font-weight: 700; }
article.content h3 { font-size: 19px; color: var(--primary-dark); margin: 24px 0 10px; font-weight: 700; }
article.content p { margin-bottom: 14px; color: var(--text); line-height: 1.75; }
article.content ul, article.content ol { margin: 12px 0 18px 22px; }
article.content li { margin-bottom: 8px; color: var(--text); }
article.content a { font-weight: 600; }
article.content strong { color: var(--primary-dark); }
article.content .lead-p { font-size: 17px; color: var(--text-soft); margin-bottom: 24px; }
article.content blockquote {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 22px 0;
  color: var(--text);
}

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.side-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
}
.side-card h4 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.side-card p { font-size: 14px; opacity: .92; margin-bottom: 16px; }
.side-card .phone-big {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.side-card .phone-big:hover { background: rgba(255,255,255,.24); color: #fff; }
.side-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.side-card .btn:last-child { margin-bottom: 0; }

.side-list { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.side-list h4 { font-size: 16px; margin-bottom: 14px; color: var(--primary-dark); font-weight: 700; }
.side-list ul { list-style: none; }
.side-list li { border-bottom: 1px solid var(--border); }
.side-list li:last-child { border-bottom: 0; }
.side-list a {
  padding: 10px 0;
  display: block;
  font-size: 14px;
  color: var(--text);
}
.side-list a::before { content: '→ '; color: var(--primary); font-weight: 700; }
.side-list a:hover { color: var(--primary); padding-left: 4px; }

/* Fault list */
.fault-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.fault-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.fault-item i { color: var(--accent-dark); margin-right: 10px; }

/* District grid */
.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.district-grid a {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: all .15s ease;
  text-align: center;
  font-weight: 500;
}
.district-grid a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* CTA section */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; font-weight: 800; }
.cta-band p { font-size: 16px; opacity: .92; margin-bottom: 24px; }
.cta-band .hero-cta { justify-content: center; }

/* Footer */
footer.site-footer {
  background: #0a2543;
  color: #cbd5e1;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
footer h5 { color: #fff; font-size: 15px; margin-bottom: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #cbd5e1; font-size: 14px; transition: color .15s ease; }
footer a:hover { color: #fff; }
footer .footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
footer .footer-about .contact-line { font-size: 14px; margin-bottom: 6px; }
footer .footer-about i { width: 18px; color: var(--accent); margin-right: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

/* Floating WhatsApp */
.float-wp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  z-index: 50;
  animation: pulseWp 2s infinite;
}
.float-wp:hover { color: #fff; transform: scale(1.08); }
@keyframes pulseWp {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.8); }
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-dark);
  list-style: none;
  position: relative;
  font-size: 15.5px;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  font-size: 22px;
  color: var(--primary);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-soft); line-height: 1.7; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,74,140,.15); }
label { display: block; font-weight: 600; color: var(--text); margin-bottom: 6px; font-size: 14px; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }
.stat-item { text-align: center; padding: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.stat-item .num { font-size: 32px; font-weight: 800; color: var(--primary); display: block; line-height: 1; margin-bottom: 6px; letter-spacing: -.5px; }
.stat-item .lbl { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .district-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 12px 20px; box-shadow: 0 10px 24px rgba(0,0,0,.06); }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav.main-nav a { padding: 12px 14px; display: block; border-radius: 6px; }
  .menu-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .fault-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-info { font-size: 12px; gap: 12px; }
  section { padding: 48px 0; }
  .hero { padding: 56px 0 64px; }
}
