/* ============================================================
   Çarçabuk Koltuk Yıkama - Ana stil
   Modern, mobil öncelikli, hafif ve hızlı.
   ============================================================ */

:root {
  --teal-900: #0b3b38;
  --teal-700: #0e6b62;
  --teal-800: #0b524b;
  --teal-600: #0e9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #cdefe9;
  --teal-50:  #eefaf7;
  --ink:      #0f2320;
  --body:     #3d5551;
  --muted:    #6b817d;
  --line:     #e2ece9;
  --bg:       #ffffff;
  --bg-soft:  #f4f9f8;
  --amber:    #f5a524;
  --wa:       #25d366;
  --shadow-sm: 0 2px 8px rgba(14,107,98,.08);
  --shadow:    0 12px 32px rgba(11,59,56,.12);
  --shadow-lg: 0 24px 60px rgba(11,59,56,.18);
  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --font:      'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: 'Plus Jakarta Sans', var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
  max-width: 100%;
}
main { overflow-x: clip; max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.01em; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; min-width: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--teal-600); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--teal-600); color: #fff; font-weight: 700; font-family: var(--font-head);
  padding: 14px 26px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 20px rgba(14,148,136,.30); font-size: 16px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14,148,136,.42); background: var(--teal-700); }
.btn--outline { background: transparent; color: var(--teal-700); box-shadow: none; border: 2px solid var(--teal-100); }
.btn--outline:hover { background: var(--teal-50); border-color: var(--teal-500); }
.btn--light { background: #fff; color: var(--teal-700); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.btn--light:hover { background: #fff; }
.btn--accent { background: var(--teal-500); color: #fff; box-shadow: 0 8px 20px rgba(20,184,166,.35); }
.btn--accent:hover { background: var(--teal-600); color: #fff; }
.btn--outline-light { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.35); box-shadow: none; }
.btn--outline-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn--wa { background: var(--wa); box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn--wa:hover { background: #1eb457; }
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--lg { padding: 17px 34px; font-size: 18px; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--teal-900); color: #cfeae5; font-size: 13.5px; }
.topbar__in { display: flex; align-items: center; gap: 14px; height: 40px; justify-content: center; flex-wrap: wrap; }
.topbar__sep { opacity: .4; }
.topbar__phone { margin-left: auto; font-weight: 700; color: #fff; }
.topbar__phone:hover { color: var(--teal-100); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__in { display: flex; align-items: center; gap: 16px; height: 72px; min-width: 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--ink); min-width: 0; flex-shrink: 1; }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: #fff;
  box-shadow: 0 6px 16px rgba(14,148,136,.4);
}
.brand__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  padding: 10px 14px; border-radius: 10px; font-weight: 600; color: var(--body); font-size: 15.5px;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--teal-50); color: var(--teal-700); }
.nav__cta { margin-left: 8px; }
.header-call { display: none; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(20,184,166,.18), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, rgba(14,107,98,.12), transparent 60%),
    var(--bg-soft);
  padding: 64px 0 72px;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--teal-100);
  color: var(--teal-700); font-weight: 700; font-size: 13.5px; padding: 7px 14px; border-radius: 100px;
  box-shadow: var(--shadow-sm); font-family: var(--font-head);
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 18px 0 16px; color: var(--ink); }
.hero h1 .hl { color: var(--teal-600); }
.hero__lead { font-size: 1.12rem; color: var(--body); max-width: 560px; margin-bottom: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hstat__num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--teal-700); }
.hstat__lbl { font-size: 13.5px; color: var(--muted); }

.hero__card {
  position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4; background: linear-gradient(160deg, #0e6b62, #0b3b38);
}
.hero__card svg { width: 100%; height: 100%; }
.hero__badge {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 14px;
}
.hero__badge--tl { top: 18px; left: 18px; }
.hero__badge--br { bottom: 18px; right: 18px; }
.hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(20,184,166,.2); }
.hero__badge .star { color: var(--amber); }

/* trust row */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust__in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 22px 0; }
.trust__item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--body); font-size: 15px; }
.trust__item svg { color: var(--teal-600); flex: none; }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section--teal { background: linear-gradient(160deg, var(--teal-700), var(--teal-900)); color: #d7efeb; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.kicker {
  display: inline-block; color: var(--teal-600); font-weight: 800; font-family: var(--font-head);
  letter-spacing: .08em; text-transform: uppercase; font-size: 13px; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.06rem; }
.section--teal .section-head h2 { color: #fff; }
.section--teal .kicker { color: var(--teal-100); }
.section--teal .section-head p { color: #b8ddd7; }

/* ---------- Hizmet kartları ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--teal-50); color: var(--teal-600);
}
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--body); font-size: 15.5px; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--teal-700); font-weight: 700; font-family: var(--font-head); font-size: 15px; }
.card__link:hover { gap: 10px; }

/* ---------- Süreç adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step__num {
  width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; font-size: 1.1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- Neden biz (özellikler) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--radius-sm); }
.feature__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; }
.feature h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ---------- Bölgeler ---------- */
.regions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.region {
  display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.region:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.region__name { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.15rem; display: flex; align-items: center; gap: 8px; }
.region__name svg { color: var(--teal-600); }
.region__yaka { font-size: 13px; color: var(--muted); }
.region__go { margin-top: auto; padding-top: 10px; color: var(--teal-700); font-weight: 700; font-size: 14px; }

/* ---------- İstatistik şeridi ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; }
.stat__lbl { color: #bfe2dd; font-size: 15px; }

/* ---------- Yorumlar ---------- */
.reviews-slider { position: relative; padding: 0 52px; max-width: 100%; min-width: 0; }
.reviews-slider__viewport { overflow: hidden; width: 100%; max-width: 100%; min-width: 0; }
.reviews-slider__track {
  display: flex; gap: 20px; transition: transform .35s ease; will-change: transform;
}
.reviews-slider__track .review { flex: 0 0 auto; min-width: 0; width: auto; }
.reviews-slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--teal-700); cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.reviews-slider__nav:hover:not(:disabled) { background: var(--teal-50); border-color: var(--teal-200); }
.reviews-slider__nav:disabled { opacity: .35; cursor: not-allowed; }
.reviews-slider__nav--prev { left: 0; }
.reviews-slider__nav--next { right: 0; }
.reviews-slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.reviews-slider__dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: var(--teal-100); transition: background .15s ease, transform .15s ease;
}
.reviews-slider__dot.is-active { background: var(--teal-600); transform: scale(1.15); }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.review__stars { color: var(--amber); font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
.review__text { color: var(--body); font-size: 15.5px; flex: 1; line-height: 1.65; }
.review__by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-400,#2dd4bf), var(--teal-700)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.review__name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 15px; }
.review__role { font-size: 13px; color: var(--muted); }

/* ---------- SSS ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px;
  font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq__q:hover { color: var(--teal-700); }
.faq__q .ic { flex: none; transition: transform .25s ease; color: var(--teal-600); }
.faq__item.open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; color: var(--body); font-size: 15.5px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: linear-gradient(120deg, var(--teal-600), var(--teal-800,#0b524b)); }
.cta-strip__in {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; padding: 44px 0; text-align: center;
}
.cta-strip__title { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-strip__text { color: #d5efeb; margin-top: 6px; max-width: 640px; }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #a9cbc6; font-size: 15px; }
.site-footer .container {
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 0px));
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding: 56px 0 40px; }
.brand--footer { color: #fff; margin-bottom: 14px; }
.footer-about { line-height: 1.7; font-size: 14.5px; }
.footer-title { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-list li, .footer-contact li { margin-bottom: 10px; }
.footer-list a:hover, .footer-contact a:hover { color: #fff; }
.footer-list--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom__in {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; font-size: 13.5px; color: #7fa8a2; flex-wrap: wrap;
}
.footer-bottom__left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; min-width: 0; }
.footer-bottom__note a { color: #9ec4be; }
.footer-bottom__note a:hover { color: #fff; }
.footer-copy { color: #7fa8a2; }
.footer-social-icons { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.footer-social-icons__link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; color: #cfeae5;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social-icons__link:hover { color: #fff; background: rgba(255,255,255,.16); transform: translateY(-1px); }
.footer-social-icons__link.is-pending { opacity: .55; cursor: default; pointer-events: none; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 120; width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.5);
  animation: wapulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.06); }
@keyframes wapulse { 0% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- İç sayfa başlığı ---------- */
.page-hero {
  background:
    radial-gradient(800px 360px at 90% -20%, rgba(20,184,166,.16), transparent 60%),
    var(--bg-soft);
  padding: 52px 0 46px; border-bottom: 1px solid var(--line);
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb span { opacity: .5; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-hero p { color: var(--body); max-width: 720px; margin-top: 12px; font-size: 1.08rem; }

/* ---------- İçerik prose ---------- */
.prose { max-width: 780px; }
.prose p { margin-bottom: 16px; }
.prose h2 { font-size: 1.6rem; margin: 32px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 24px 0 10px; }
.prose ul { margin: 0 0 18px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.prose ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal-600); font-weight: 800; }

.layout-2 { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.side-card--accent { background: linear-gradient(160deg, var(--teal-700), var(--teal-900)); color: #d7efeb; border: none; }
.side-card--accent h3 { color: #fff; }
.side-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.side-card .btn { margin-top: 6px; }
.side-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.side-list li:last-child { border-bottom: none; }
.side-list a { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--body); }
.side-list a:hover { color: var(--teal-700); }

/* mahalle etiketleri */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 24px; }
.tag { background: var(--teal-50); color: var(--teal-700); border: 1px solid var(--teal-100); padding: 6px 14px; border-radius: 100px; font-size: 14px; font-weight: 600; }

/* fiyat notu */
.pricebox { background: var(--teal-50); border: 1px dashed var(--teal-500); border-radius: var(--radius); padding: 24px; margin: 8px 0 24px; }
.pricebox strong { color: var(--teal-700); }

/* ---------- İletişim formu ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: 14.5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit;
  font-size: 16px; color: var(--ink); background: #fbfefe; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(20,184,166,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 8px; }
.form-row { display: grid; gap: 0 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form--compact { padding: 0; border: none; box-shadow: none; background: transparent; }
.form--compact .field { margin-bottom: 14px; }
.form--compact textarea { min-height: 88px; }

/* Teklif modal */
.teklif-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.teklif-modal.is-open { pointer-events: auto; opacity: 1; visibility: visible; }
.teklif-modal__backdrop { position: absolute; inset: 0; background: rgba(11, 59, 56, .55); backdrop-filter: blur(4px); }
.teklif-modal__panel {
  position: relative; z-index: 1; width: min(640px, 100%); max-height: min(92vh, 900px); overflow-y: auto;
  background: #fff; border-radius: var(--radius); padding: 28px 28px 24px; box-shadow: var(--shadow);
}
.teklif-modal__panel h2 { font-size: 1.55rem; margin-bottom: 8px; }
.teklif-modal__lead { color: var(--body); margin-bottom: 18px; font-size: 15px; }
.teklif-modal__close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: none; border-radius: 10px;
  background: var(--teal-50); color: var(--teal-700); font-size: 26px; line-height: 1; cursor: pointer;
}
.teklif-modal__close:hover { background: var(--teal-100); }
body.teklif-open { overflow: hidden; }

@media (max-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr; }
  .teklif-modal__panel { padding: 22px 18px 18px; }
}

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-weight: 600; }
.alert--ok { background: #e5f8f2; color: #0b6b4f; border: 1px solid #a9e6cf; }
.alert--err { background: #fdeaea; color: #a12525; border: 1px solid #f3c0c0; }

.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.info-item .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; }
.info-item h3 { font-size: 1rem; margin-bottom: 2px; }
.info-item a, .info-item span { color: var(--body); }
.map-embed { border: 0; width: 100%; height: 280px; border-radius: var(--radius); margin-top: 20px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.post-card__media { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--teal-50); }
.post-card__media picture { display: block; width: 100%; height: 100%; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta { font-size: 13px; color: var(--muted); font-weight: 600; }
.post-card__title { font-size: 1.2rem; line-height: 1.3; }
.post-card__title a:hover { color: var(--teal-700); }
.post-card__excerpt { color: var(--body); font-size: 15px; flex: 1; }
.post-card .card__link { margin-top: auto; }

.page-hero--post { padding-bottom: 28px; }
.post-meta { color: var(--muted); font-size: 14.5px; font-weight: 600; margin-top: 12px; }
.post-cover-wrap { margin-top: -8px; }
.post-cover-wrap picture { display: block; }
.post-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 8px; }
.post-body h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.post-body h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.post-body ol { margin: 0 0 18px; padding-left: 22px; }
.post-body ol li { margin-bottom: 10px; }
.post-body table { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 15px; }
.post-body th, .post-body td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; }
.post-body th { background: var(--teal-50); color: var(--ink); font-family: var(--font-head); }
.post-body blockquote { margin: 18px 0; padding: 16px 20px; background: var(--teal-50); border-left: 4px solid var(--teal-500); border-radius: 0 12px 12px 0; color: var(--ink); }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 100px 0; }
.notfound h1 { font-size: 5rem; color: var(--teal-600); }

/* ---------- Yardımcılar ---------- */
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  .reviews-slider { padding: 0 46px; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__card { max-width: 460px; }
  .cards, .features, .steps, .regions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-slider { padding: 0 40px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .regions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .layout-2 { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .brand { font-size: 17px; }
  .brand__mark { width: 36px; height: 36px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; font-size: 16px; padding: 15px 20px; }
  .hero__stats { gap: 18px; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 16px 20px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .3s ease; margin-left: 0;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 14px 12px; border-radius: 10px; }
  .nav__cta { margin: 8px 0 0; text-align: center; }
  .header-call { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; color: var(--teal-700); font-weight: 700; font-family: var(--font-head); }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px;
    background: none; border: none; cursor: pointer; padding: 10px;
  }
  .nav-toggle span { height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .topbar__item:not(.topbar__phone) { display: none; }
  .topbar__sep { display: none; }
  .topbar__phone { margin: 0 auto; }
  .section { padding: 56px 0; }
  .cards, .features, .steps { grid-template-columns: 1fr; }
  .regions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .region { padding: 16px 14px; }
  .region__name { font-size: 1rem; }
  .region__go { font-size: 13px; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .post-card__body { padding: 14px 12px; gap: 8px; }
  .post-card__meta { font-size: 11px; }
  .post-card__title { font-size: 0.95rem; line-height: 1.25; }
  .post-card__excerpt { font-size: 12.5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .post-card .card__link { font-size: 13px; }
  .reviews-slider { padding: 0 36px; }
  .reviews-slider__nav { top: 50%; bottom: auto; transform: translateY(-50%); width: 34px; height: 34px; }
  .reviews-slider__nav--prev { left: 0; }
  .reviews-slider__nav--next { right: 0; }
  .reviews-slider__dots { display: none; }
  .cta-strip__actions .btn { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer .container {
    padding-left: max(28px, env(safe-area-inset-left, 0px));
    padding-right: max(28px, env(safe-area-inset-right, 0px));
  }
  .footer-bottom__in { flex-direction: column; align-items: flex-start; text-align: left; padding-bottom: 28px; }
  .footer-bottom__left { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
