/* USTA — yerel hizmet (tesisat / elektrik / tadilat / tamir).
   Palet: iş-tulumu lacivert/slate + emniyet-turuncu (mat) aksan. Outfit display + Hanken body. */

:root {
  --ink: #14202e;
  --ink-2: #2c3a4b;
  --muted: #586472;
  --line: #d6dde6;
  --line-soft: #e4e9f0;
  --paper: #eef1f5;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --navy: #1b3550;
  --navy-deep: #142a40;
  --slate: #3a4f66;
  --accent: #d4622a;
  --accent-deep: #b9531f;
  --accent-soft: #f3e1d6;
  --on-accent: #fff7f2;
  --ok: #2f7d57;
  --live: #38a169;
  --shadow: 0 1px 2px rgba(20, 32, 46, .05), 0 18px 40px -22px rgba(20, 32, 46, .28);
  --shadow-lg: 0 28px 70px -30px rgba(20, 32, 46, .45);
  --radius: 18px;
  --radius-sm: 12px;
  --font-d: "Outfit", system-ui, sans-serif;
  --font-b: "Hanken", system-ui, sans-serif;
  --maxw: 1200px;
}

[data-theme="dark"] {
  --ink: #eef2f7;
  --ink-2: #cdd6e1;
  --muted: #93a1b2;
  --line: #2a3a4c;
  --line-soft: #233242;
  --paper: #0e1822;
  --surface: #15212e;
  --surface-2: #182838;
  --navy: #213c59;
  --navy-deep: #0f1d2b;
  --slate: #324a63;
  --accent: #e3743b;
  --accent-deep: #cf6330;
  --accent-soft: #2e2218;
  --on-accent: #1a1009;
  --ok: #4cba84;
  --live: #4cba84;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 20px 46px -24px rgba(0, 0, 0, .7);
  --shadow-lg: 0 30px 80px -32px rgba(0, 0, 0, .85);
}

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
body {
  background: var(--paper); color: var(--ink);
  font-family: var(--font-b); font-size: 16px; line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .3s ease, color .3s ease;
}
::selection { background: var(--accent); color: var(--on-accent); }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--font-d); line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-d); font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}
.kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.sec-title { font-size: clamp(1.85rem, 4.4vw, 3rem); font-weight: 700; margin-top: .55rem; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.sec-note { color: var(--muted); max-width: 30ch; font-size: .96rem; }

/* ── Duyuru şeridi ── */
.ann { background: var(--navy-deep); color: #dbe6f2; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
[data-theme="dark"] .ann { border-bottom-color: var(--line); }
.ann-track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; padding: .5rem 0; font-size: .76rem; font-weight: 600; letter-spacing: .04em; animation: ann-roll 32s linear infinite; }
.ann-track span { opacity: .92; }
.ann-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
@keyframes ann-roll { to { transform: translateX(-25%); } }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 120;
  display: flex; align-items: center; gap: 1.2rem;
  padding: .85rem clamp(1rem, 4vw, 2.4rem);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background-color .25s, box-shadow .25s;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(20,32,46,.5); }
.brand {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-d); font-weight: 800; font-size: 1.32rem; letter-spacing: -.01em;
  color: var(--ink);
}
.brand-mark {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 9px;
  background: var(--navy); color: #fff;
}
[data-theme="dark"] .brand-mark { background: var(--accent); color: var(--on-accent); }
.nav-links { display: flex; align-items: center; gap: .3rem; margin-left: .6rem; }
.nav-links a {
  position: relative; padding: .5rem .7rem; border-radius: 999px;
  font-size: .92rem; font-weight: 600; color: var(--ink-2);
  transition: color .18s, background-color .18s;
}
.nav-links a::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .28rem; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--ink); } .nav-links a:hover::after { transform: scaleX(1); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem; border-radius: 999px;
  font-weight: 700; font-size: .9rem; color: var(--navy);
  border: 1.5px solid var(--line); background: var(--surface);
  transition: border-color .18s, color .18s, transform .18s;
}
[data-theme="dark"] .nav-phone { color: var(--ink); }
.nav-phone:hover { border-color: var(--navy); transform: translateY(-1px); }
.nav-phone svg { color: var(--accent); }
.btn-quote {
  display: inline-flex; align-items: center;
  padding: .6rem 1.15rem; border-radius: 999px;
  font-family: var(--font-d); font-weight: 700; font-size: .92rem;
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 10px 24px -12px var(--accent);
  transition: transform .18s, box-shadow .18s, background-color .18s;
}
.btn-quote:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 16px 30px -12px var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; justify-content: center; align-items: center; border-radius: 11px; }
.nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .25s; }
body.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 130; width: min(82vw, 320px);
  display: flex; flex-direction: column; gap: .35rem; padding: 5.2rem 1.4rem 2rem;
  background: var(--surface); border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg); animation: drawer-in .3s cubic-bezier(.22,1,.36,1) both;
}
@keyframes drawer-in { from { transform: translateX(100%); } }
.nav-drawer a { padding: .85rem .9rem; border-radius: var(--radius-sm); font-family: var(--font-d); font-weight: 600; font-size: 1.05rem; color: var(--ink-2); }
.nav-drawer a:hover { background: var(--surface-2); color: var(--ink); }
.nav-drawer .drawer-call {
  margin-top: .8rem; justify-content: center; text-align: center;
  background: var(--accent); color: var(--on-accent); font-weight: 700;
}
.nav-drawer .drawer-call:hover { background: var(--accent-deep); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 4.6rem) clamp(1rem, 4vw, 2.4rem) clamp(2.8rem, 6vw, 4rem);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.grid-art {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 38px 38px; opacity: .5;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000, transparent 72%);
  mask-image: radial-gradient(120% 100% at 70% 30%, #000, transparent 72%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob.b1 { width: 360px; height: 360px; top: -90px; right: -60px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 40%, transparent), transparent 70%); }
.blob.b2 { width: 320px; height: 320px; bottom: -120px; left: -80px; background: radial-gradient(circle, color-mix(in srgb, var(--navy) 45%, transparent), transparent 70%); }
.hero-copy, .quote-card { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .75rem .35rem .6rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: .8rem; font-weight: 600; color: var(--ink-2);
}
.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--live); flex: 0 0 auto; }
.live-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--live); opacity: .6; animation: pulse-ring 1.8s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(.5); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.hero-title { font-size: clamp(2.4rem, 6.4vw, 4.4rem); font-weight: 800; margin: 1rem 0 1.1rem; }
.hero-title .line { display: block; }
.hero-title .accentline {
  background: linear-gradient(100deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lede { font-size: clamp(1.04rem, 1.9vw, 1.2rem); color: var(--ink-2); max-width: 44ch; line-height: 1.65; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.7rem 0 1.3rem; }
.hbadge {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .65rem .9rem; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hb-ic { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-deep); }
[data-theme="dark"] .hb-ic { color: var(--accent); }
.hbadge b { display: block; font-family: var(--font-d); font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.hbadge i { font-style: normal; font-size: .76rem; color: var(--muted); }

.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; list-style: none; padding: 0; }
.hero-trust li { position: relative; padding-left: 1.3rem; font-size: .88rem; color: var(--ink-2); font-weight: 500; }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m5 12 4 4 10-10' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ── Hızlı teklif kartı ── */
.quote-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.qc-head { padding: 1.3rem 1.4rem 1rem; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border-bottom: 1px solid var(--line-soft); }
.qc-tag { display: inline-block; padding: .25rem .65rem; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
[data-theme="dark"] .qc-tag { color: var(--accent); }
.qc-title { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; margin-top: .5rem; }
.qc-form { padding: 1.1rem 1.4rem 1.4rem; display: grid; gap: 1rem; position: relative; }
.qc-trap { position: absolute; left: -9999px; }
.qc-lbl { display: block; font-size: .78rem; font-weight: 700; color: var(--ink-2); margin-bottom: .45rem; letter-spacing: .01em; }
.qc-svc, .qc-urg { display: flex; flex-wrap: wrap; gap: .4rem; }
.qc-chip, .qc-urgbtn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .85rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--surface);
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
  transition: border-color .18s, color .18s, background-color .18s;
}
.qc-chip:hover, .qc-urgbtn:hover { border-color: var(--slate); color: var(--ink); }
.qc-chip.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }
[data-theme="dark"] .qc-chip.is-on { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.qc-urgbtn.is-on { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-soft); }
[data-theme="dark"] .qc-urgbtn.is-on { color: var(--accent); }
.urg-dot { width: 9px; height: 9px; border-radius: 50%; }
.urg-now { background: var(--accent); } .urg-today { background: #d89a3a; } .urg-plan { background: var(--slate); }
.qc-input input {
  width: 100%; padding: .72rem .85rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--surface-2); color: var(--ink);
  font-size: .95rem; transition: border-color .18s, background-color .18s;
}
.qc-input input::placeholder { color: var(--muted); }
.qc-input input:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.qc-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--accent); color: var(--on-accent);
  font-family: var(--font-d); font-weight: 700; font-size: 1rem;
  box-shadow: 0 14px 30px -14px var(--accent); transition: transform .18s, background-color .18s;
}
.qc-submit:hover { transform: translateY(-2px); background: var(--accent-deep); }
.qc-submit svg { transition: transform .18s; } .qc-submit:hover svg { transform: translateX(3px); }
.qc-note { font-size: .78rem; color: var(--muted); text-align: center; line-height: 1.5; }
.qc-ok { display: flex; gap: .7rem; align-items: flex-start; padding: .9rem; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--ok) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--ok) 35%, transparent); }
.qc-ok-tick { display: inline-grid; place-items: center; width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; background: var(--ok); color: #fff; }
.qc-ok b { display: block; font-family: var(--font-d); font-weight: 700; font-size: .95rem; }
.qc-ok i { font-style: normal; font-size: .8rem; color: var(--muted); }

/* ── Sayı şeridi ── */
.strip { border-block: 1px solid var(--line); background: var(--surface); }
.strip-row { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-it { padding: 1.6rem 1rem; text-align: center; border-left: 1px solid var(--line-soft); display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.strip-it:first-child { border-left: 0; }
.st-n { font-family: var(--font-d); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--navy); line-height: 1; }
[data-theme="dark"] .st-n { color: var(--ink); }
.strip-it:nth-child(odd) .st-n { color: var(--accent); }
.st-plus { display: inline; }
.st-n + .st-plus { margin-left: -.1em; font-family: var(--font-d); font-weight: 800; font-size: clamp(1.4rem,3vw,2rem); color: var(--accent); }
.st-l { font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: .35rem; }

section { scroll-margin-top: 70px; }
.services, .proof, .areas, .process, .reviews, .faq, .contact { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.4rem); }

/* ── Hizmetler ── */
.svc-filter { display: flex; flex-wrap: wrap; gap: .4rem; }
.svf {
  padding: .5rem .95rem; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: .85rem; font-weight: 600; color: var(--ink-2); background: var(--surface);
  transition: border-color .18s, color .18s, background-color .18s;
}
.svf:hover { border-color: var(--slate); color: var(--ink); }
.svf.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }
[data-theme="dark"] .svf.is-on { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.svc {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s, border-color .28s;
}
.svc::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--accent), transparent 70%); opacity: 0; transition: opacity .28s; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.svc:hover::before { opacity: 1; }
.svc.hide { display: none; }
.svc-top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; cursor: pointer; margin-bottom: .9rem; }
.svc-ic {
  display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 15px;
  background: var(--surface-2); color: var(--navy); border: 1px solid var(--line-soft);
  transition: background-color .25s, color .25s, transform .25s;
}
[data-theme="dark"] .svc-ic { color: var(--ink); }
.svc:hover .svc-ic { background: var(--accent-soft); color: var(--accent-deep); transform: rotate(-4deg); }
[data-theme="dark"] .svc:hover .svc-ic { color: var(--accent); }
.svc-look {
  opacity: 0; transform: translateY(-4px); transition: opacity .22s, transform .22s;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: .25rem;
}
.svc-look::after { content: "→"; }
.svc:hover .svc-look { opacity: 1; transform: translateY(0); }
.svc-rate { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--muted); margin-bottom: .35rem; }
.svc-rate .stars { color: var(--accent); letter-spacing: 1px; }
.svc-name { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; }
.svc-line { font-size: .9rem; color: var(--muted); margin: .3rem 0 1rem; line-height: 1.5; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding-top: .9rem; border-top: 1px solid var(--line-soft); }
.svc-from { display: flex; flex-direction: column; line-height: 1.1; }
.svc-from i { font-style: normal; font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.svc-from b { font-family: var(--font-d); font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.svc-cta {
  padding: .5rem .85rem; border-radius: 999px; font-size: .82rem; font-weight: 700;
  color: var(--navy); border: 1.5px solid var(--line);
  transition: border-color .18s, color .18s, background-color .18s, transform .18s;
}
[data-theme="dark"] .svc-cta { color: var(--ink); }
.svc-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); transform: translateY(-1px); }
.svc-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 2rem; }

/* ── Önce / Sonra ── */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.ba { margin: 0; }
.ba-stage {
  position: relative; aspect-ratio: 16 / 11; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); user-select: none;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-before { z-index: 2; will-change: clip-path; }
.ba-tag {
  position: absolute; top: .8rem; padding: .25rem .6rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; z-index: 3;
  backdrop-filter: blur(4px);
}
.ba-tag-before { left: .8rem; background: rgba(20,32,46,.78); color: #fff; }
.ba-tag-after { right: .8rem; background: var(--accent); color: var(--on-accent); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 52%; width: 2px; z-index: 4;
  background: #fff; box-shadow: 0 0 0 1px rgba(20,32,46,.25); transform: translateX(-1px); pointer-events: none;
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--navy); box-shadow: 0 6px 16px -4px rgba(20,32,46,.5);
}
.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; cursor: ew-resize;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; background: transparent; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 44px; height: 220px; background: transparent; border: 0; cursor: ew-resize; }
.ba-range::-moz-range-track { background: transparent; }
.ba figcaption { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; margin-top: .9rem; }
.ba-cap-t { font-family: var(--font-d); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.ba-cap-s { font-size: .82rem; color: var(--muted); }

/* Önce/sonra CSS-art zeminleri */
.ba-bathroom { background:
  radial-gradient(60% 80% at 78% 18%, rgba(255,255,255,.5), transparent 60%),
  repeating-linear-gradient(135deg, #cdd9e2 0 22px, #c2cfd9 22px 24px),
  linear-gradient(160deg, #d7e2ea, #aeb9c2); }
.ba-bathroom::after { content: ""; position: absolute; left: 18%; bottom: 12%; width: 38%; height: 46%; border-radius: 10px 10px 4px 4px; background: linear-gradient(180deg, #fff, #e6edf2); box-shadow: 0 8px 20px -8px rgba(20,32,46,.4); }
.ba-bathroom-old { background:
  repeating-linear-gradient(135deg, #8f867a 0 22px, #847b6f 22px 24px),
  linear-gradient(160deg, #9a9183, #6f685d); }
.ba-bathroom-old::after { content: ""; position: absolute; left: 18%; bottom: 12%; width: 38%; height: 46%; border-radius: 10px 10px 4px 4px; background: linear-gradient(180deg, #b3a08a, #8a7a66); opacity: .85; box-shadow: inset 0 0 30px rgba(40,28,16,.4); }
.ba-bathroom-old::before { content: ""; position: absolute; right: 16%; top: 24%; width: 30%; height: 5%; background: #5b4f40; border-radius: 3px; transform: rotate(-8deg); opacity: .6; }

.ba-panel { background:
  radial-gradient(50% 70% at 30% 20%, rgba(255,255,255,.45), transparent 60%),
  linear-gradient(160deg, #cfd9e0, #b3bcc4); }
.ba-panel::after { content: ""; position: absolute; left: 26%; top: 18%; width: 48%; height: 64%; border-radius: 8px; background: linear-gradient(180deg, #eef3f6, #d3dce2); box-shadow: 0 8px 20px -8px rgba(20,32,46,.4), inset 0 0 0 6px #fff; }
.ba-panel::before { content: ""; position: absolute; left: 32%; top: 26%; width: 36%; height: 48%; background-image: repeating-linear-gradient(90deg, #1b3550 0 3px, transparent 3px 16px), repeating-linear-gradient(0deg, #d4622a 0 3px, transparent 3px 14px); opacity: .55; z-index: 1; border-radius: 4px; }
.ba-panel-old { background: linear-gradient(160deg, #7d7064, #564b40); }
.ba-panel-old::after { content: ""; position: absolute; left: 26%; top: 18%; width: 48%; height: 64%; border-radius: 8px; background: linear-gradient(180deg, #9a8b78, #6b5d4c); box-shadow: inset 0 0 26px rgba(30,20,10,.5); }
.ba-panel-old::before { content: ""; position: absolute; left: 30%; top: 30%; width: 42%; height: 40%; background-image: repeating-linear-gradient(70deg, #2a1f14 0 2px, transparent 2px 9px), repeating-linear-gradient(-60deg, #3a2a18 0 2px, transparent 2px 11px); opacity: .8; z-index: 1; }

/* ── Bölgeler ── */
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.areas-text { color: var(--ink-2); max-width: 46ch; line-height: 1.7; margin-top: .8rem; }
.areas-search {
  display: flex; align-items: center; gap: .6rem; margin-top: 1.5rem;
  padding: .8rem 1rem; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--line); box-shadow: var(--shadow);
  transition: border-color .18s;
}
.areas-search:focus-within { border-color: var(--accent); }
.areas-search svg { color: var(--muted); flex: 0 0 auto; }
.areas-search input { flex: 1; border: 0; background: transparent; color: var(--ink); font-size: .98rem; outline: none; }
.areas-search input::placeholder { color: var(--muted); }
.areas-list { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .48rem .85rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: .86rem; font-weight: 600; color: var(--ink-2);
  transition: border-color .18s, color .18s, transform .18s;
}
.area-chip:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-1px); }
.area-chip .ac-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); }
.area-chip.is-busy .ac-dot { background: #d89a3a; }
.area-chip em { font-style: normal; font-size: .72rem; color: var(--muted); }
.areas-miss { margin-top: 1rem; font-size: .86rem; color: var(--muted); }

.areas-map { position: relative; }
.map-art {
  position: relative; aspect-ratio: 4 / 3.4; border-radius: 22px; overflow: hidden;
  background: linear-gradient(165deg, var(--navy), var(--navy-deep));
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.map-water {
  position: absolute; top: 0; bottom: 0; left: 47%; width: 8%;
  background: linear-gradient(180deg, #2f5a82, #20415f);
  transform: skewX(-7deg); display: grid; place-items: center;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #9fc1e0; writing-mode: vertical-rl;
}
.map-zone { position: absolute; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px dashed rgba(255,255,255,.14); }
.map-zone.z1 { top: 10%; left: 8%; width: 32%; height: 36%; }
.map-zone.z2 { bottom: 12%; left: 10%; width: 30%; height: 34%; }
.map-zone.z3 { top: 12%; right: 8%; width: 32%; height: 38%; }
.map-zone.z4 { bottom: 10%; right: 10%; width: 30%; height: 32%; }
.map-pin { position: absolute; }
.map-pin i {
  display: block; width: 12px; height: 12px; border-radius: 50% 50% 50% 0;
  background: var(--accent); transform: rotate(-45deg);
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.5), 0 0 0 4px rgba(212,98,42,.2);
}
.map-pin.p1 { top: 24%; left: 22%; } .map-pin.p2 { bottom: 30%; left: 24%; } .map-pin.p3 { top: 30%; right: 22%; }
.map-pulse { position: absolute; top: 24%; left: 22%; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); animation: map-pulse 2s ease-out infinite; }
@keyframes map-pulse { 0% { box-shadow: 0 0 0 0 rgba(212,98,42,.45); } 100% { box-shadow: 0 0 0 26px rgba(212,98,42,0); } }
.map-side { position: absolute; bottom: 6%; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.map-eu { left: 8%; } .map-as { right: 8%; }
.map-cap { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; padding: .5rem .85rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: .82rem; font-weight: 600; color: var(--ink-2); }

/* ── Marquee ── */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--navy-deep); }
.marquee-row { display: inline-flex; align-items: center; gap: 1.2rem; white-space: nowrap; padding: .9rem 0; animation: mq 26s linear infinite; }
.marquee-row span { font-family: var(--font-d); font-weight: 700; font-size: clamp(1rem, 2.4vw, 1.6rem); color: #e7eef6; text-transform: uppercase; letter-spacing: .02em; }
.marquee-row span:nth-child(4n+1) { color: var(--accent); }
.marquee-row b { color: rgba(231,238,246,.4); font-size: 1.4rem; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ── Süreç ── */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step {
  position: relative; padding: 1.5rem 1.3rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-n { font-family: var(--font-d); font-weight: 800; font-size: 2.2rem; color: var(--line); line-height: 1; }
[data-theme="dark"] .step-n { color: var(--slate); }
.step-ic { position: absolute; top: 1.5rem; right: 1.3rem; display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-deep); }
[data-theme="dark"] .step-ic { color: var(--accent); }
.step-t { font-family: var(--font-d); font-size: 1.18rem; font-weight: 700; margin: .9rem 0 .4rem; }
.step-d { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ── Yorumlar ── */
.rv-head { text-align: center; margin-bottom: 2.4rem; }
.rv-head .kicker { justify-content: center; }
.rv-desc { color: var(--muted); margin-top: .6rem; font-size: .95rem; }
.rv-wrap { position: relative; }
.rv-grid { columns: 3; column-gap: 1.1rem; }
.rv-grid.is-collapsed { max-height: 420px; overflow: hidden; }
.rv-card {
  break-inside: avoid; margin-bottom: 1.1rem;
  padding: 1.3rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.rv-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.rv-av { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--av, var(--navy)); color: #fff; font-family: var(--font-d); font-weight: 700; font-size: .85rem; flex: 0 0 auto; }
.rv-id { flex: 1; min-width: 0; }
.rv-id b { display: block; font-family: var(--font-d); font-weight: 700; font-size: .95rem; }
.rv-id span { font-size: .76rem; color: var(--muted); }
.rv-ok { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--ok) 16%, transparent); color: var(--ok); flex: 0 0 auto; }
.rv-stars { color: var(--accent); letter-spacing: 2px; font-size: .95rem; margin-bottom: .5rem; }
.rv-text { font-size: .92rem; color: var(--ink-2); line-height: 1.6; }
.rv-fade { position: absolute; left: 0; right: 0; bottom: 44px; height: 130px; background: linear-gradient(transparent, var(--paper)); pointer-events: none; transition: opacity .3s; }
.rv-wrap.open .rv-fade { opacity: 0; }
.rv-more { display: block; margin: 1.4rem auto 0; padding: .7rem 1.5rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); font-family: var(--font-d); font-weight: 700; font-size: .9rem; color: var(--ink); transition: border-color .18s, transform .18s; }
.rv-more:hover { border-color: var(--accent); transform: translateY(-1px); }
.rv-wrap.open .rv-more { display: none; }

/* ── CTA band ── */
.cta-band { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.4rem); }
.cta-band-in {
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap;
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.5rem, 4vw, 3rem); border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band-in::before { content: ""; position: absolute; top: -40%; right: -10%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent), transparent 70%); filter: blur(20px); }
.cb-copy { position: relative; }
.cb-title { font-family: var(--font-d); font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800; color: #fff; }
.cb-text { color: rgba(231,238,246,.82); margin-top: .5rem; }
.cb-actions { position: relative; display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.cb-call {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem; border-radius: 999px; background: var(--accent); color: var(--on-accent);
  font-family: var(--font-d); font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); transition: transform .18s, background-color .18s;
}
.cb-call:hover { transform: translateY(-2px); background: var(--accent-deep); }
.cb-quote { display: inline-flex; align-items: center; padding: .85rem 1.3rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.3); color: #fff; font-weight: 700; transition: border-color .18s, background-color .18s; }
.cb-quote:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── SSS ── */
.faq-list { display: grid; gap: .7rem; max-width: 800px; margin: 0 auto; }
.faq-it { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .2s; }
.faq-it[open] { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.faq-it summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; cursor: pointer; list-style: none; font-family: var(--font-d); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.faq-it summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-x::before, .faq-x::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; border-radius: 2px; background: var(--accent); transform: translate(-50%, -50%); transition: transform .25s; }
.faq-x::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-it[open] .faq-x::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { padding: 0 1.3rem 1.2rem; }
.faq-a p { color: var(--ink-2); line-height: 1.65; font-size: .94rem; }

/* ── İletişim ── */
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-lede { color: var(--ink-2); margin-top: .8rem; line-height: 1.65; max-width: 38ch; }
.contact-meta { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1rem; }
.contact-meta li { display: flex; align-items: flex-start; gap: .8rem; }
.cm-ic { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--line); color: var(--accent); flex: 0 0 auto; }
.cm-lbl { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .12rem; }
.contact-meta a { font-weight: 600; color: var(--ink); }
.contact-meta a:hover { color: var(--accent); }
.contact-resp { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; padding: .5rem .85rem; border-radius: 999px; background: color-mix(in srgb, var(--ok) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--ok) 30%, transparent); font-size: .82rem; font-weight: 600; color: var(--ink-2); }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow); display: grid; gap: 1.2rem; position: relative; }
.cf-trap { position: absolute; left: -9999px; }
.cf-lbl { display: block; font-size: .76rem; font-weight: 700; color: var(--ink-2); margin-bottom: .5rem; }
.cf-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.cf-pill { padding: .5rem .9rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); font-size: .85rem; font-weight: 600; color: var(--ink-2); transition: border-color .18s, color .18s, background-color .18s; }
.cf-pill:hover { border-color: var(--slate); color: var(--ink); }
.cf-pill.is-on { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ff { position: relative; }
.ff input, .ff textarea {
  width: 100%; padding: 1rem .9rem .55rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--surface-2); color: var(--ink);
  font-size: .95rem; transition: border-color .18s, background-color .18s; resize: vertical;
}
.ff textarea { min-height: 92px; }
.ff input:focus, .ff textarea:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.ff label {
  position: absolute; left: .95rem; top: .85rem; font-size: .95rem; color: var(--muted);
  pointer-events: none; transition: transform .18s, font-size .18s, color .18s; transform-origin: left;
}
.ff input:focus + label, .ff input:not(:placeholder-shown) + label,
.ff textarea:focus + label, .ff textarea:not(:placeholder-shown) + label {
  transform: translateY(-.55rem) scale(.78); color: var(--accent);
}
.ff-area { position: relative; }
.ff-count { position: absolute; right: .8rem; bottom: .55rem; font-size: .72rem; color: var(--muted); }
.cf-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.2rem; border-radius: var(--radius-sm);
  background: var(--accent); color: var(--on-accent);
  font-family: var(--font-d); font-weight: 700; font-size: 1rem;
  box-shadow: 0 14px 30px -14px var(--accent); transition: transform .18s, background-color .18s;
}
.cf-submit:hover { transform: translateY(-2px); background: var(--accent-deep); }
.cf-submit svg { transition: transform .18s; } .cf-submit:hover svg { transform: translateX(3px); }
.cf-ok { display: flex; align-items: center; gap: .65rem; padding: .9rem 1rem; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--ok) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--ok) 35%, transparent); font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.cf-ok-tick { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ok); color: #fff; flex: 0 0 auto; }

/* ── Footer ── */
.footer { background: var(--navy-deep); color: #c7d4e2; margin-top: clamp(3rem, 6vw, 5rem); }
.foot-cols { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.4rem) 2rem; }
.foot-brand .brand { color: #fff; font-size: 1.4rem; }
.foot-brand .brand-mark { background: var(--accent); color: var(--on-accent); }
.foot-brand p { margin-top: .9rem; font-size: .9rem; line-height: 1.6; color: rgba(199,212,226,.75); max-width: 34ch; }
.foot-social { display: flex; gap: .5rem; margin-top: 1.2rem; }
.foot-social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; border: 1px solid rgba(255,255,255,.12); color: #c7d4e2; transition: border-color .18s, color .18s, background-color .18s; }
.foot-social a:hover { border-color: var(--accent); color: #fff; background: rgba(212,98,42,.15); }
.foot-col span { display: block; font-family: var(--font-d); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.foot-col a { display: block; padding: .3rem 0; font-size: .9rem; color: rgba(199,212,226,.78); transition: color .18s, transform .18s; }
.foot-col a:hover { color: #fff; transform: translateX(3px); }
.foot-base { border-top: 1px solid rgba(255,255,255,.08); }
.foot-base > * { }
.foot-base { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.2rem clamp(1rem, 4vw, 2.4rem); font-size: .82rem; color: rgba(199,212,226,.65); }
.foot-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.foot-badges span { padding: .22rem .65rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); font-size: .7rem; font-weight: 600; letter-spacing: .03em; }

/* ── Quick-view ── */
.qv-overlay { position: fixed; inset: 0; z-index: 140; background: rgba(14,24,34,.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; }
.qv-overlay.is-open { opacity: 1; }
.qv {
  position: fixed; z-index: 150; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(.97);
  width: min(860px, 94vw); max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: .8fr 1.2fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-lg); opacity: 0; transition: opacity .32s, transform .32s cubic-bezier(.22,1,.36,1);
}
.qv.is-open { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.qv-x { position: absolute; top: .8rem; right: 1rem; z-index: 2; width: 38px; height: 38px; border-radius: 50%; font-size: 1.7rem; line-height: 1; color: var(--ink-2); transition: background-color .18s; }
.qv-x:hover { background: var(--surface-2); }
.qv-side { padding: 1.6rem; background: linear-gradient(165deg, var(--surface-2), var(--surface)); border-right: 1px solid var(--line-soft); }
.qv-art { display: grid; place-items: center; aspect-ratio: 1; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); color: var(--navy); margin-bottom: 1rem; }
[data-theme="dark"] .qv-art { color: var(--accent); }
.qv-art svg { width: 64px; height: 64px; }
.qv-rate { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.qv-rate .stars { color: var(--accent); letter-spacing: 1px; }
.qv-assure { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.qv-assure li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-2); }
.qv-assure svg { color: var(--ok); flex: 0 0 auto; }
.qv-info { padding: 2rem 1.8rem 1.8rem; }
.qv-name { font-family: var(--font-d); font-size: 1.7rem; font-weight: 800; }
.qv-desc { color: var(--ink-2); margin-top: .7rem; line-height: 1.65; font-size: .96rem; }
.qv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1.4rem 0; }
.qv-stat { padding: .8rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--line-soft); }
.qv-stat-l { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.qv-stat-v { display: block; font-family: var(--font-d); font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-top: .25rem; }
.qv-lbl { display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .6rem; }
.qv-scope { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.qv-scope li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ink-2); }
.qv-scope li::before { content: ""; width: 16px; height: 16px; flex: 0 0 auto; border-radius: 5px; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m5 12 4 4 10-10' stroke='%23b9531f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat; }
.qv-actions { display: flex; gap: .7rem; margin-top: 1.6rem; flex-wrap: wrap; }
.qv-call { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.3rem; border-radius: var(--radius-sm); background: var(--navy); color: #fff; font-family: var(--font-d); font-weight: 700; transition: transform .18s, background-color .18s; }
.qv-call:hover { transform: translateY(-2px); background: var(--navy-deep); }
[data-theme="dark"] .qv-call { background: var(--accent); color: var(--on-accent); }
.qv-quote { flex: 1; min-width: 130px; padding: .8rem 1.3rem; border-radius: var(--radius-sm); background: var(--accent); color: var(--on-accent); font-family: var(--font-d); font-weight: 700; box-shadow: 0 12px 28px -14px var(--accent); transition: transform .18s, background-color .18s; }
.qv-quote:hover { transform: translateY(-2px); background: var(--accent-deep); }

/* ── Sabit ara butonu (mobil) ── */
.fab-call { position: fixed; right: clamp(1rem,3vw,1.5rem); bottom: clamp(1rem,3vw,1.5rem); z-index: 115; display: none; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: var(--on-accent); box-shadow: 0 14px 30px -10px var(--accent), 0 0 0 0 rgba(212,98,42,.5); animation: fab-pulse 2.4s ease-out infinite; }
@keyframes fab-pulse { 0% { box-shadow: 0 14px 30px -10px var(--accent), 0 0 0 0 rgba(212,98,42,.5); } 70% { box-shadow: 0 14px 30px -10px var(--accent), 0 0 0 16px rgba(212,98,42,0); } 100% { box-shadow: 0 14px 30px -10px var(--accent), 0 0 0 0 rgba(212,98,42,0); } }

/* ── Reveal başlangıç (JS yoksa görünür kalır) ── */
.no-rev [data-reveal] { opacity: 0; transform: translateY(24px); }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; }
  .quote-card { max-width: 520px; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-map { order: -1; max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone span { display: none; }
  .nav-phone { padding: .55rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .strip-row { grid-template-columns: 1fr 1fr; }
  .strip-it:nth-child(3) { border-left: 0; }
  .strip-it:nth-child(odd) { border-left: 0; }
  .rv-grid { columns: 2; }
  .ba-grid { grid-template-columns: 1fr; }
  .qv { grid-template-columns: 1fr; }
  .qv-side { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .qv-art { aspect-ratio: 16/9; }
  .fab-call { display: grid; }
  .ann-track { animation-duration: 22s; }
}
@media (max-width: 560px) {
  .strip-it { border-left: 0 !important; }
  .strip-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .rv-grid { columns: 1; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.1rem, 9vw, 3rem); }
  .qv-scope { grid-template-columns: 1fr; }
  .qv-stats { grid-template-columns: 1fr; }
  .cta-band-in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 390px) {
  .hero { padding-left: .9rem; padding-right: .9rem; }
  .hbadge { padding: .55rem .7rem; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ann-track, .marquee-row, .live-dot::after, .map-pulse, .fab-call { animation: none !important; }
  .svc, .step, .btn-quote, .qc-submit, .cf-submit { transition: none; }
}
