/* ==========================================================
   esenyurtcilingircim.com — Main CSS (mobile-first, CTA odaklı)
   ========================================================== */
:root {
  --c-primary: #0B5FFF;
  --c-primary-dark: #0848BD;
  --c-cta: #E11D2A;
  --c-cta-dark: #B0121E;
  --c-wa: #0a7c5e;
  --c-wa-dark: #075e44;
  --c-wa-brand: #25D366;
  --c-dark: #0F172A;
  --c-text: #1E293B;
  --c-muted: #64748B;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F8FAFC;
  --c-border: #E2E8F0;
  --c-success: #16A34A;
  --c-error: #DC2626;
  --c-yellow: #FACC15;

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px;
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 40px; --s-9: 56px; --s-10: 80px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .14);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Inter", sans-serif;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-primary-dark); }
h1, h2, h3, h4 { color: var(--c-dark); line-height: 1.25; margin: 0 0 var(--s-4); font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(28px, 4.5vw, 44px); }
h2 { font-size: clamp(24px, 3.5vw, 34px); }
h3 { font-size: clamp(18px, 2.4vw, 22px); }
p { margin: 0 0 var(--s-4); }
ul, ol { padding-left: 1.4em; }
button { font-family: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 12px 20px;
  background: var(--c-dark); color: #fff; z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Container */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }
.container-narrow { max-width: 800px; }
.container-article { max-width: 860px; margin: 0 auto; padding: 0 var(--s-5); }
.text-center { text-align: center; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow-sm); }
.topbar { background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%); color: #fff; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 20px; gap: 12px; flex-wrap: wrap; }
.topbar-inner i { vertical-align: middle; }
.topbar-link { color: #fff; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; transition: color .15s ease; }
.topbar-link:hover { color: var(--c-wa-brand); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right > * { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 640px) {
  .topbar { font-size: 12px; }
  .topbar-inner { padding: 7px 14px; gap: 8px; justify-content: center; text-align: center; }
  .topbar-right .sep, .topbar-right > span:last-child { display: none; }
}
@media (max-width: 380px) { .urgency { font-size: 12px; } }
.sep { opacity: .4; }
.urgency { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)} 70%{box-shadow:0 0 0 10px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }

.header-main { display: flex; align-items: center; justify-content: space-between; padding: var(--s-3) var(--s-5); gap: var(--s-4); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--c-dark); }
.brand-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--c-primary), var(--c-cta)); color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 17px; }
.brand-tagline { color: var(--c-muted); font-size: 13px; }
.brand-light { color: #fff; }
.brand-light strong { color: #fff; }

.primary-nav { display: flex; align-items: center; }
.navlist { display: flex; gap: var(--s-5); list-style: none; margin: 0; padding: 0; }
.navlist a { color: var(--c-text); font-weight: 600; font-size: 15px; padding: 8px 4px; }
.navlist a:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; border-radius: 4px; }
.navlist a.active, .navlist a:hover { color: var(--c-primary); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; color: var(--c-dark); }

.header-cta { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; }
.cta-label { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.cta-small { font-size: 12px; opacity: .95; }
.cta-num { font-size: 16px; font-weight: 800; }

@media (max-width: 900px) {
  .navlist {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; box-shadow: var(--shadow-md); padding: var(--s-4); gap: 0;
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: all .2s ease;
  }
  .navlist a { display: block; padding: 12px 8px; border-bottom: 1px solid var(--c-border); }
  .primary-nav.open .navlist { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: inline-flex; }
  .brand-tagline { display: none; }
}
@media (max-width: 540px) {
  .header-cta .cta-label { display: none; }
  .header-cta { padding: 10px 14px; border-radius: 50%; width: 44px; height: 44px; }
  .header-main { padding: 10px 14px; gap: 10px; }
  .brand-name { font-size: 15px; }
  .brand-icon { width: 38px; height: 38px; }
}
@media (max-width: 380px) {
  .brand-text { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-md); font-weight: 700; font-size: 15px;
  border: 0; cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-dark); color: #fff; }
.btn-cta { background: var(--c-cta); color: #fff; box-shadow: 0 4px 14px rgba(225,29,42,.3); }
.btn-cta:hover { background: var(--c-cta-dark); color: #fff; box-shadow: 0 6px 20px rgba(225,29,42,.4); }
.btn-wa { background: var(--c-wa); color: #fff; box-shadow: 0 4px 14px rgba(10,124,94,.3); }
.btn-wa:hover { background: var(--c-wa-dark); color: #fff; box-shadow: 0 6px 20px rgba(10,124,94,.4); }
.btn-ghost { background: transparent; color: var(--c-dark); border: 1px solid var(--c-border); }
.btn-ghost:hover { background: var(--c-bg-alt); color: var(--c-dark); }
.btn-link { background: transparent; padding: 0; color: var(--c-primary); font-weight: 600; }
.btn-link:hover { background: transparent; transform: none; box-shadow: none; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-xl { padding: 18px 30px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-sub { font-size: 12px; opacity: .92; line-height: 1; }
.btn-num { font-size: 18px; line-height: 1.15; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0B5FFF 100%);
  color: #fff; padding: var(--s-9) 0 var(--s-10);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(225,29,42,.25), transparent 50%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-7); align-items: center; position: relative; }
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 52px); }
.hero .lead { color: #CBD5E1; font-size: 17px; margin-bottom: var(--s-6); max-width: 580px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(225,29,42,.15); color: #FCA5A5; padding: 6px 14px;
  border-radius: 100px; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: var(--s-4);
}
.hero-cta { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-5); }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--s-3); list-style: none; padding: 0; }
.hero-badges li {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 8px 14px; border-radius: 100px; font-size: 14px; color: #fff;
  backdrop-filter: blur(10px);
}

.hero-form { background: #fff; color: var(--c-text); padding: var(--s-6); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-form h2 { color: var(--c-dark); margin-bottom: var(--s-2); font-size: 22px; }
.quick-form label { display: block; margin-bottom: var(--s-3); font-size: 14px; color: var(--c-muted); font-weight: 600; }
.quick-form input, .quick-form select, .quick-form textarea {
  display: block; width: 100%; padding: 12px 14px; margin-top: 6px;
  border: 1px solid var(--c-border); border-radius: var(--r-sm);
  font-size: 15px; font-family: inherit; color: var(--c-text); background: #fff;
}
.quick-form input:focus, .quick-form select:focus, .quick-form textarea:focus {
  outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(11,95,255,.15);
}
.quick-form small { display: block; margin-top: var(--s-3); font-size: 12px; color: var(--c-muted); }
.quick-form small a, .quick-form noscript a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* ============ TRUST BAR ============ */
.trust-bar { background: var(--c-dark); color: #fff; padding: var(--s-5) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-4); text-align: center; }
.trust-item strong { display: block; font-size: 26px; font-weight: 800; color: var(--c-yellow); }
.trust-item span { font-size: 13px; color: #CBD5E1; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ SECTIONS ============ */
.section { padding: var(--s-10) 0; }
.section.bg-light { background: var(--c-bg-alt); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--s-7); }
.section-head .eyebrow { background: rgba(11,95,255,.16); color: var(--c-primary-dark); }

/* ============ CARDS ============ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-5); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.service-card {
  background: #fff; padding: var(--s-6); border-radius: var(--r-lg);
  border: 1px solid var(--c-border); transition: all .2s ease; position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--c-primary); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--c-primary), var(--c-cta));
  color: #fff; display: grid; place-items: center; margin-bottom: var(--s-4);
}
.service-card h2, .service-card h3 { font-size: 20px; margin-bottom: var(--s-2); }
.service-card h2 a, .service-card h3 a { color: var(--c-dark); }
.service-card p { color: #475569; font-size: 15px; line-height: 1.6; flex: 1; }
.price-tag {
  display: inline-block; background: rgba(11,95,255,.08); color: var(--c-primary);
  padding: 4px 10px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: var(--s-3);
}
.service-actions { display: flex; gap: var(--s-3); align-items: center; margin-top: auto; padding-top: var(--s-3); }

/* Process steps */
.process-steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s-4); counter-reset: step; }
.process-steps li {
  background: #fff; padding: var(--s-5); border-radius: var(--r-lg); border: 1px solid var(--c-border);
  position: relative; padding-left: 70px;
}
.step-num {
  position: absolute; left: var(--s-4); top: var(--s-5);
  width: 38px; height: 38px; border-radius: 50%; background: var(--c-cta); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 16px;
}
.process-steps h3 { font-size: 17px; margin-bottom: 6px; }
.process-steps p { font-size: 14px; color: var(--c-muted); margin: 0; }

/* Neighborhoods */
.neighborhood-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: var(--s-3); }
.neighborhood-grid-lg { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.nb-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-md); color: var(--c-dark); transition: all .15s ease;
  font-size: 14px;
}
.nb-card:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateX(2px); box-shadow: var(--shadow-sm); }
.nb-name { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.nb-time { background: var(--c-bg-alt); color: #475569; padding: 3px 8px; border-radius: 100px; font-size: 13px; font-weight: 600; }

/* Price table */
.price-table { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--c-border); }
.price-table th { background: var(--c-dark); color: #fff; font-weight: 700; font-size: 14px; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--c-bg-alt); }
.price-disclaimer { padding: var(--s-4); color: #475569; font-size: 14px; margin: 0; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-4); }
.review-card { background: #fff; padding: var(--s-5); border-radius: var(--r-lg); border: 1px solid var(--c-border); }
.stars { color: var(--c-yellow); display: flex; gap: 2px; margin-bottom: var(--s-3); }
.stars i, .stars svg { color: var(--c-yellow); }
.review-card p { color: var(--c-text); font-size: 15px; line-height: 1.65; }
.review-card footer { color: #475569; font-size: 14px; margin-top: var(--s-3); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--s-3); }
.faq-item { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary {
  padding: 16px 20px; cursor: pointer; font-weight: 700; color: var(--c-dark);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 300; transition: transform .15s; color: var(--c-cta); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 18px; color: var(--c-text); }

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--c-cta), #c2185b);
  color: #fff; padding: var(--s-7); border-radius: var(--r-lg);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-5); flex-wrap: wrap;
  max-width: var(--maxw); margin: var(--s-7) auto; box-shadow: var(--shadow-lg);
}
.inline-cta h3 { color: #fff; margin: 0 0 6px; font-size: 22px; }
.inline-cta p { color: rgba(255,255,255,.9); margin: 0; }
.inline-cta-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.inline-cta .btn-cta { background: #fff; color: var(--c-cta); }
.inline-cta .btn-cta:hover { background: var(--c-bg-alt); color: var(--c-cta); }
.inline-cta .btn-wa { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); }

/* CTA band (footer üstü) */
.cta-band { background: var(--c-dark); color: #fff; padding: var(--s-9) 0; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-6); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #CBD5E1; margin: 0; max-width: 540px; }
.cta-band-buttons { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* Page head */
.page-head { background: linear-gradient(180deg, var(--c-bg-alt) 0%, transparent 100%); padding: var(--s-7) 0 var(--s-5); }
.page-head h1 { margin-bottom: var(--s-3); }
.page-head .lead { color: var(--c-muted); font-size: 17px; max-width: 700px; }

/* Article */
.article { line-height: 1.8; color: var(--c-text); font-size: 16.5px; }
.article h2 { margin-top: var(--s-7); scroll-margin-top: 96px; }
.article h3 { margin-top: var(--s-6); scroll-margin-top: 96px; }
.article ul, .article ol { margin: 0 0 var(--s-4); }
.article p, .article li { margin-bottom: var(--s-3); }
.article a { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.article a:hover { color: var(--c-cta); }
.article table { width: 100%; border-collapse: collapse; margin: var(--s-4) 0; font-size: 14px; }
.article th, .article td { padding: 10px 14px; border: 1px solid var(--c-border); text-align: left; }
.article th { background: var(--c-bg-alt); font-weight: 700; }
.article blockquote { border-left: 4px solid var(--c-cta); padding: 12px 18px; background: var(--c-bg-alt); margin: var(--s-4) 0; border-radius: 0 var(--r-md) var(--r-md) 0; color: var(--c-muted); font-style: italic; }
.article blockquote.tldr { border-left-color: #0B5FFF; background: #EFF6FF; color: #1E3A8A; font-style: normal; font-size: 15px; line-height: 1.55; }
.article blockquote.tldr strong { color: #0B5FFF; margin-right: 4px; }

/* Search */
.search-form { display: flex; gap: 8px; max-width: 640px; margin-top: var(--s-3); }
.search-form input[type=search] { flex: 1; padding: 13px 16px; border: 1.5px solid var(--c-border); border-radius: var(--r-md); font-size: 15px; background: #fff; }
.search-form input[type=search]:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(11,95,255,.15); }
@media (max-width: 540px) { .search-form { flex-direction: column; } }

/* Article meta + TOC */
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: #475569; font-size: 14px; margin: 0 0 var(--s-4); padding-bottom: var(--s-3); border-bottom: 1px solid var(--c-border); }
.toc { background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: var(--s-4) var(--s-5); margin: 0 0 var(--s-5); }
.toc-title { font-weight: 800; color: var(--c-dark); font-size: 14px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.toc ol { list-style: decimal; padding-left: 22px; margin: 0; column-count: 1; }
.toc li { margin-bottom: 5px; font-size: 15px; }
.toc li.toc-sub { margin-left: 14px; list-style: '— '; color: #475569; font-size: 14px; }
.toc a { color: var(--c-primary); }
.toc a:hover { color: var(--c-cta); text-decoration: underline; }
@media (min-width: 900px) { .toc ol { column-count: 2; column-gap: 24px; } }

/* Service detail head */
.service-head { display: flex; gap: var(--s-5); align-items: center; }
.service-head-icon {
  width: 80px; height: 80px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-primary), var(--c-cta)); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
@media (max-width: 600px) { .service-head { flex-direction: column; align-items: flex-start; } }

/* Price callout */
.price-callout {
  background: var(--c-bg-alt); border-left: 4px solid var(--c-cta);
  padding: var(--s-5); margin: var(--s-6) 0; border-radius: var(--r-sm);
}
.price-callout h3 { margin-bottom: var(--s-2); font-size: 18px; }
.price-callout p { margin: 4px 0; }
.price-callout small { color: var(--c-muted); }

/* Related */
.related-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: var(--s-5); background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); color: var(--c-dark); text-align: center; }
.related-card:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* Breadcrumb */
.breadcrumb { padding: var(--s-3) 0; background: var(--c-bg-alt); font-size: 15px; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; color: var(--c-muted); }
.breadcrumb .sep { color: var(--c-border); }

/* Post card */
.post-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--s-5); }
.post-cat { display: inline-block; background: rgba(11,95,255,.12); color: var(--c-primary-dark); padding: 4px 10px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.post-card h2, .post-card h3 { font-size: 19px; margin-bottom: 8px; }
.post-card h2 a, .post-card h3 a { color: var(--c-dark); }
.post-card p { color: #475569; font-size: 15px; line-height: 1.6; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: var(--s-6); }
.pagination a { padding: 9px 14px; border: 1px solid var(--c-border); border-radius: var(--r-sm); color: var(--c-text); font-size: 15px; }
.pagination a.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s-7); }
.contact-info { background: #fff; padding: var(--s-6); border-radius: var(--r-lg); border: 1px solid var(--c-border); height: fit-content; }
.contact-info h2 { margin-bottom: var(--s-4); font-size: 20px; }
.contact-line { display: flex; gap: var(--s-3); align-items: flex-start; padding: var(--s-3) 0; border-bottom: 1px solid var(--c-border); color: var(--c-text); }
.contact-line:last-child { border-bottom: 0; }
.contact-line strong { display: block; font-size: 14px; color: #475569; }
.contact-line span span { color: var(--c-dark); font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: var(--s-3); }
.contact-form-wrap h2 { margin-bottom: var(--s-4); }
.contact-form label { display: block; font-size: 14px; color: var(--c-muted); font-weight: 600; }
.contact-form label span { color: var(--c-cta); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 14px; margin-top: 6px; border: 1px solid var(--c-border);
  border-radius: var(--r-sm); font-size: 15px; font-family: inherit; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(11,95,255,.15);
}
.contact-form .check { display: flex; align-items: flex-start; gap: 8px; font-weight: 500; color: var(--c-text); }
.contact-form .check input { width: auto; margin: 4px 0 0; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* Alerts */
.alert { padding: 14px 18px; border-radius: var(--r-sm); margin-bottom: var(--s-4); font-weight: 600; }
.alert-success { background: #DCFCE7; color: #166534; border-left: 4px solid var(--c-success); }
.alert-error { background: #FEE2E2; color: #991B1B; border-left: 4px solid var(--c-error); }

/* ============ FOOTER ============ */
.site-footer { background: var(--c-dark); color: #CBD5E1; padding: var(--s-9) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: var(--s-7); margin-bottom: var(--s-7); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: var(--s-4); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #CBD5E1; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-col.grid-2 ul, .footer-col ul.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
.footer-about p { color: #94A3B8; font-size: 14px; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: var(--s-4); font-size: 15px; }
.footer-contact a, .footer-contact span { color: #CBD5E1; display: inline-flex; gap: 8px; align-items: center; }
.footer-contact a:hover { color: #fff; }
.more-link { display: inline-block; margin-top: var(--s-3); color: var(--c-cta); font-weight: 600; font-size: 15px; }

.footer-search { padding: var(--s-5) 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-search .search-form { max-width: 720px; margin: 0 auto; }
.footer-search input[type=search] { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
.footer-search input[type=search]::placeholder { color: rgba(255,255,255,.5); }
.footer-search input[type=search]:focus { background: rgba(255,255,255,.12); border-color: var(--c-primary); }
.footer-bottom { background: #060A14; padding: var(--s-4) 0; color: #B6C2D1; font-size: 14px; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); }
.footer-bottom-links a { color: #B6C2D1; }
.footer-bottom-links a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ STICKY CTA (mobile) ============ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; padding: 8px; gap: 8px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-border); box-shadow: 0 -8px 24px rgba(15,23,42,.12);
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.sticky-call, .sticky-wa {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 10px; border-radius: var(--r-md); color: #fff; font-weight: 700; font-size: 14px; text-decoration: none;
  transition: transform .12s ease, filter .12s ease;
}
.sticky-call:active, .sticky-wa:active { transform: scale(.97); }
.sticky-call { background: linear-gradient(135deg, var(--c-cta), #B0121E); flex: 2; box-shadow: 0 4px 14px rgba(225,29,42,.35); }
.sticky-call strong { display: block; font-size: 14px; line-height: 1.1; }
.sticky-call small { display: block; font-size: 12px; opacity: .92; line-height: 1.1; }
.sticky-wa { background: linear-gradient(135deg, var(--c-wa), var(--c-wa-dark)); box-shadow: 0 4px 14px rgba(10,124,94,.35); }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .fab-call { display: none; }
}

/* FAB (desktop) */
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c-cta); color: #fff; box-shadow: 0 12px 32px rgba(225,29,42,.4);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.05); color: #fff; }
.fab-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: var(--c-cta);
  animation: fab-pulse 2s infinite; opacity: .5; z-index: -1;
}
@keyframes fab-pulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 95;
  background: var(--c-dark); color: #fff; border-radius: var(--r-lg); padding: var(--s-4) var(--s-5);
  box-shadow: var(--shadow-lg); max-width: 920px; margin: 0 auto;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: 14px; color: #CBD5E1; flex: 1; min-width: 240px; }
.cookie-inner a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.2); }
@media (max-width: 768px) { .cookie-banner { bottom: 84px; } }

/* Error pages */
.error-page { padding: var(--s-10) 0; text-align: center; }
.error-page h1 { font-size: 64px; margin-bottom: var(--s-3); }
.error-page .hero-cta { justify-content: center; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Print */
@media print {
  .sticky-cta, .fab, .cookie-banner, .topbar, .nav-toggle, .header-cta { display: none !important; }
}

/* ============ Inline SVG icon helpers ============ */
.btn svg, .nb-card svg, .topbar-link svg, .footer-contact svg, .contact-line svg,
.service-icon svg, .service-head-icon svg, .brand-icon svg, .related-card svg,
.cta-band svg, .article-meta svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.brand-icon svg, .service-icon svg, .service-head-icon svg { color: #fff; }
.btn-cta svg, .btn-wa svg, .btn-primary svg, .sticky-call svg, .sticky-wa svg, .fab svg { color: #fff; }
.topbar-link svg { color: var(--c-wa-brand); }
.topbar-link:hover svg { color: #4ade80; }
.footer-contact svg { color: var(--c-cta); }
.footer-contact a[href^="https://wa"] svg { color: var(--c-wa-brand); }
.contact-line svg { color: var(--c-cta); }
.related-card svg { color: var(--c-primary); }

/* Mobile-first additional polish */
@media (max-width: 768px) {
  .hero { padding: var(--s-7) 0 var(--s-8); }
  .hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .hero .lead { font-size: 15px; }
  .hero-cta .btn { padding: 13px 18px; font-size: 14px; }
  .hero-form { padding: var(--s-4); }
  .section { padding: var(--s-7) 0; }
  .section-head { margin-bottom: var(--s-5); }
  .cta-band { padding: var(--s-7) 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .inline-cta { padding: var(--s-5); flex-direction: column; align-items: stretch; text-align: center; }
  .inline-cta-actions { justify-content: center; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 12px; }
  .footer-grid { gap: var(--s-5); }
}

/* Tap highlight ve performans */
a, button { -webkit-tap-highlight-color: rgba(11,95,255,.2); }
.btn { will-change: transform; }

/* Focus visible (a11y) */
a:focus-visible, button:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; border-radius: 4px; }

/* SVG inherits link color naturally */
svg { fill: currentColor; }
.btn svg[fill="none"], .nb-card svg[fill="none"], .topbar-link svg[fill="none"],
.footer-contact svg[fill="none"], .contact-line svg[fill="none"],
.service-icon svg[fill="none"], .service-head-icon svg[fill="none"],
.brand-icon svg[fill="none"], .related-card svg[fill="none"],
.article-meta svg[fill="none"], .cta-band svg[fill="none"] { fill: none; }
