/* ═══════════════════════════════════════════
   DETAIL LAB — tek sayfa sinematik detailing
   Marka: siyah/beyaz (tabela) + cyan lab vurgusu
   Performans: yalnız transform/opacity animasyonu,
   content-visibility, idle-stop JS motoru
   ═══════════════════════════════════════════ */

:root {
  --bg: #04070b;
  --bg-2: #090d13;
  --surface: #0f151d;
  --line: rgba(255, 255, 255, .08);
  --text: #f2f6f9;
  --muted: #97a1ab;
  --accent: #29d4ff;
  --accent-2: #7ee6ff;
  --violet: #8b7bff;
  --font-d: "Space Grotesk", system-ui, sans-serif;
  --font-b: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-b); font-size: 16px; line-height: 1.6;
  overflow-x: clip; -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #03242e; }
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 700; line-height: 1.08; }
em { font-style: normal; color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.cv-auto { content-visibility: auto; contain-intrinsic-size: auto 700px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2833; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══════ FOTOĞRAF SAHNESİ KATMANLARI ═══════ */
.fx__photo {
  aspect-ratio: 3 / 2; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  isolation: isolate;
}
.fx__photo--tall { aspect-ratio: 10 / 7; }
.ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-base { position: absolute; inset: 0; filter: sepia(.3) saturate(.55) brightness(.66) contrast(.94); }
.ph--dirtover { mix-blend-mode: multiply; opacity: .92; }
.ph--matte { filter: saturate(.72) contrast(.78) brightness(1.08); }
.ph-reveal { position: absolute; inset: 0; clip-path: inset(0 100% 0 0); will-change: clip-path; }
.ph-reveal--gloss { clip-path: inset(0 0 0 0); }

/* yıkama: su/sprey çizgileri */
.rainfx {
  position: absolute; inset: -20% 0; z-index: 3; pointer-events: none; opacity: 0;
  background: repeating-linear-gradient(14deg,
    transparent 0 26px, rgba(160, 225, 255, .085) 26px 27.5px,
    transparent 27.5px 60px, rgba(200, 240, 255, .05) 60px 61px);
  animation: rainShift 0.7s linear infinite;
  will-change: transform, opacity;
}
@keyframes rainShift { to { transform: translateY(60px); } }

/* ppf: film uygulama çubuğu */
.filmbar {
  position: absolute; top: -4%; bottom: -4%; left: -60px; width: 54px; z-index: 4;
  background: linear-gradient(90deg, rgba(139, 123, 255, 0), rgba(190, 180, 255, .30) 45%, rgba(255, 255, 255, .55) 55%, rgba(139, 123, 255, 0));
  box-shadow: 0 0 24px 4px rgba(139, 123, 255, .35);
  transform: skewX(-8deg);
  opacity: 0; will-change: transform, opacity; pointer-events: none;
}

/* cam filmi ton katmanları */
.ph-tintstage { opacity: 0; will-change: opacity; }

/* sahne köşe rozeti */
.fx__chip {
  position: absolute; left: 16px; top: 14px; z-index: 6;
  font-family: var(--font-d); font-weight: 600; font-size: 11px; letter-spacing: .22em;
  color: var(--accent); background: rgba(4, 7, 11, .78);
  border: 1px solid rgba(41, 212, 255, .35);
  padding: 7px 13px; border-radius: 100px;
}
.fx__chip--violet { color: #b9aeff; border-color: rgba(139, 123, 255, .4); }

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 56px);
  transition: transform .4s cubic-bezier(.65, 0, .35, 1), background .3s, padding .3s;
  background: linear-gradient(180deg, rgba(4, 7, 11, .85), rgba(4, 7, 11, 0));
}
.nav.scrolled { background: rgba(4, 7, 11, .92); padding-top: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.nav.hidden { transform: translateY(-110%); }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 700; font-size: 19px; letter-spacing: .06em;
  color: var(--text); text-decoration: none;
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-text small {
  font-family: var(--font-b); font-weight: 600; font-size: 8.5px;
  letter-spacing: .34em; color: var(--muted);
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  letter-spacing: .03em; position: relative; padding: 6px 0; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0%;
  background: var(--accent); transition: width .25s cubic-bezier(.65, 0, .35, 1);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; background: none; border: 0; width: 38px; height: 30px; position: relative; cursor: pointer; }
.nav__burger i { position: absolute; left: 6px; right: 6px; height: 2px; background: var(--text); transition: .3s; }
.nav__burger i:first-child { top: 10px; }
.nav__burger i:last-child { bottom: 10px; }
.nav__burger.open i:first-child { top: 14px; transform: rotate(45deg); }
.nav__burger.open i:last-child { bottom: 14px; transform: rotate(-45deg); }

.mmenu {
  position: fixed; inset: 0; z-index: 90; background: rgba(4, 7, 11, .98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5.5vh;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.mmenu.open { opacity: 1; pointer-events: auto; }
.mmenu a { font-family: var(--font-d); font-size: clamp(26px, 7.5vw, 44px); color: var(--text); text-decoration: none; font-weight: 700; }
.mmenu a:hover { color: var(--accent); }
.mmenu__phone { color: var(--accent) !important; font-size: clamp(18px, 5vw, 26px) !important; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 100px; border: 0; cursor: pointer;
  background: var(--accent); color: #03242e;
  font-family: var(--font-d); font-weight: 700; font-size: 15px; letter-spacing: .02em;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 12px 34px rgba(41, 212, 255, .3); }
.btn--ghost { background: transparent; border: 1px solid rgba(255, 255, 255, .25); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; background: transparent; }
.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--lg { padding: 18px 40px; font-size: 17px; }

/* ═══════ HERO ═══════ */
.hero {
  min-height: 100vh; min-height: 100svh; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14vh 20px 10vh; overflow: hidden;
}
.hero__bg { position: absolute; inset: -6% 0; z-index: 0; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% 45%, rgba(4, 7, 11, .48) 0%, rgba(4, 7, 11, .82) 75%),
    linear-gradient(180deg, rgba(4, 7, 11, .88), rgba(4, 7, 11, .35) 30%, rgba(4, 7, 11, .92) 92%);
}
#rainCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero__content { position: relative; z-index: 3; text-align: center; }
.hero__eyebrow { font-size: 12px; letter-spacing: .32em; color: var(--accent); font-weight: 600; margin-bottom: 24px; }
.hero__title {
  font-size: clamp(2.6rem, 8.4vw, 7rem);
  letter-spacing: -.02em; text-transform: uppercase; line-height: 1.14;
}
.hero__title .line { display: block; overflow: hidden; padding: .04em .05em .06em; margin: -.02em 0; }
.hero__title .line i {
  display: block; font-style: normal;
  transform: translateY(110%);
  animation: lineUp 1s cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero__title .line:nth-child(2) i { animation-delay: .1s; }
.hero__title .line:nth-child(3) i { animation-delay: .2s; }
.hero__title .line--accent i { color: transparent; -webkit-text-stroke: 2px var(--accent); }
@keyframes lineUp { to { transform: translateY(0); } }
.hero__sub { color: var(--muted); margin-top: 24px; font-size: clamp(15px, 1.6vw, 18px); }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__car { position: relative; z-index: 2; margin-top: 4vh; width: min(760px, 90vw); will-change: transform, opacity; }
.hero__car-glow {
  position: absolute; inset: -6% -16%;
  background: radial-gradient(ellipse 60% 50% at 50% 68%, rgba(41, 212, 255, .16), transparent 70%);
  z-index: 0;
}
.hero__car .shine { animation: shineSweep 4.2s cubic-bezier(.5, 0, .4, 1) infinite; will-change: transform; }
@keyframes shineSweep {
  0%, 55% { transform: skewX(-20deg) translateX(0); }
  100% { transform: skewX(-20deg) translateX(1250px); }
}

.hero__scroll {
  position: relative; z-index: 3; margin: 4vh 0 36px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 11px; letter-spacing: .3em;
}
.hero__scroll-line { width: 1px; height: 52px; background: var(--line); overflow: hidden; }
.hero__scroll-line i { display: block; width: 100%; height: 40%; background: var(--accent); animation: drop 1.6s cubic-bezier(.65, 0, .35, 1) infinite; }
@keyframes drop { 0% { transform: translateY(-120%); } 100% { transform: translateY(300%); } }

/* ═══════ MARQUEE ═══════ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; overflow: hidden; background: var(--bg-2);
}
.marquee__track { display: flex; gap: 44px; width: max-content; animation: scrollX 30s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--font-d); font-size: clamp(16px, 2vw, 24px); font-weight: 600; letter-spacing: .06em; white-space: nowrap; }
.marquee__track span:nth-child(4n+3) { color: transparent; -webkit-text-stroke: 1px var(--muted); }
.marquee__track b { color: var(--accent); font-size: 17px; align-self: center; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ═══════ FX SAHNELERİ ═══════ */
.fx { height: 300vh; position: relative; }
.fx__sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.fx--alt .fx__sticky { background: var(--bg-2); }
.fx__bigword {
  position: absolute; top: 50%; left: 50%;
  font-size: clamp(4.6rem, 17vw, 17rem); letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .09);
  white-space: nowrap; user-select: none; pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}
.fx__stage {
  position: relative; width: min(1250px, 94vw); height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.fx__carwrap {
  position: relative; width: min(640px, 80vw);
  will-change: transform, opacity; z-index: 2;
}
.fx__carwrap::before {
  content: ""; position: absolute; inset: -14% -10%; z-index: -1;
  background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(41, 212, 255, .12), transparent 70%);
}
.wand { z-index: 5; }
.bubbles { z-index: 4; }
.tint-badge { z-index: 6; }
.fx__info {
  position: absolute; top: 50%;
  width: min(380px, 86vw); z-index: 4;
  opacity: 0; will-change: transform, opacity;
}
.fx__info--left { left: 0; }
.fx__info--right { right: 0; }
.fx__tag { font-size: 12px; letter-spacing: .3em; color: var(--accent); font-weight: 600; }
.fx__tag--violet { color: var(--violet); }
.fx__info h3 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 14px 0 16px; }
.fx__info p { color: var(--muted); font-size: 15px; }
.fx__specs { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.fx__specs li {
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  padding: 11px 16px; font-size: 14px; color: var(--muted);
}
.fx__specs b { color: var(--text); font-family: var(--font-d); margin-right: 8px; }
.fx__progress {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden;
}
.fx__progress i { display: block; height: 100%; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; will-change: transform; }

/* — yıkama sahnesi — */
.wand {
  position: absolute; top: 2%; bottom: 6%; left: 0; width: 4px; z-index: 5;
  background: linear-gradient(180deg, transparent, var(--accent) 20%, #fff 50%, var(--accent) 80%, transparent);
  box-shadow: 0 0 18px 3px rgba(41, 212, 255, .65);
  opacity: 0; will-change: transform, opacity; pointer-events: none;
}
.wand i {
  position: absolute; top: 30%; left: -3px; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(126, 230, 255, .9);
  box-shadow: 0 26px 2px -2px rgba(126, 230, 255, .7), 0 58px 3px -2px rgba(126, 230, 255, .5), 0 96px 4px -2px rgba(126, 230, 255, .35);
}
.bubbles { position: absolute; inset: 0; z-index: 4; pointer-events: none; will-change: opacity; }
.bubbles s {
  position: absolute; bottom: 12%; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.85), rgba(160,225,255,.25) 60%, transparent 70%);
  animation: rise 3.4s ease-in infinite; will-change: transform, opacity;
}
.bubbles s:nth-child(1) { left: 8%;  width: 14px; height: 14px; animation-delay: 0s; }
.bubbles s:nth-child(2) { left: 18%; width: 9px;  height: 9px;  animation-delay: .7s; }
.bubbles s:nth-child(3) { left: 28%; width: 12px; height: 12px; animation-delay: 1.5s; }
.bubbles s:nth-child(4) { left: 38%; width: 8px;  height: 8px;  animation-delay: .3s; }
.bubbles s:nth-child(5) { left: 48%; width: 15px; height: 15px; animation-delay: 1.9s; }
.bubbles s:nth-child(6) { left: 58%; width: 10px; height: 10px; animation-delay: .9s; }
.bubbles s:nth-child(7) { left: 66%; width: 13px; height: 13px; animation-delay: 2.3s; }
.bubbles s:nth-child(8) { left: 74%; width: 9px;  height: 9px;  animation-delay: 1.2s; }
.bubbles s:nth-child(9) { left: 82%; width: 12px; height: 12px; animation-delay: .5s; }
.bubbles s:nth-child(10){ left: 90%; width: 8px;  height: 8px;  animation-delay: 1.7s; }
.bubbles s:nth-child(11){ left: 33%; width: 7px;  height: 7px;  animation-delay: 2.7s; }
.bubbles s:nth-child(12){ left: 55%; width: 7px;  height: 7px;  animation-delay: 3.1s; }
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  12% { opacity: .9; }
  100% { transform: translateY(-190px) scale(1.25); opacity: 0; }
}

/* — ppf sahnesi — */
[data-film] { will-change: transform; }
[data-scratches] { will-change: opacity; }

/* — cam filmi sahnesi — */
.tint-badge {
  position: absolute; top: 6%; right: 4%;
  text-align: center; z-index: 5;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(9, 13, 19, .85); padding: 12px 18px;
}
.tint-badge b { display: block; font-family: var(--font-d); font-size: 30px; color: var(--accent); }
.tint-badge span { font-size: 10px; letter-spacing: .22em; color: var(--muted); }

/* ═══════ SECTION HEAD ═══════ */
.section-head { max-width: 1200px; margin: 0 auto; padding: 0 24px 52px; }
.section-head__tag { display: inline-block; font-size: 12px; letter-spacing: .3em; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); letter-spacing: -.01em; }

/* ═══════ HİZMETLER ═══════ */
.services { padding: clamp(70px, 10vw, 140px) 0; }
.services__grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.service {
  border: 1px solid var(--line); border-radius: 18px; padding: 30px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .3s;
}
.service:hover { transform: translateY(-6px); border-color: rgba(41, 212, 255, .45); }
.service__icon { font-size: 26px; margin-bottom: 16px; }
.service h3 { font-size: 18px; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 13.5px; }

/* ═══════ STATS ═══════ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1100px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) 24px clamp(70px, 9vw, 120px);
  gap: 24px; text-align: center;
}
.stat b { display: block; font-family: var(--font-d); font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 700; color: var(--accent); }
.stat span { color: var(--muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }

/* ═══════ PAKETLER ═══════ */
.packs { padding: clamp(70px, 10vw, 140px) 0; background: var(--bg-2); }
.packs__grid {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start;
}
.pack {
  position: relative; border: 1px solid var(--line); border-radius: 20px;
  background: var(--surface); padding: 34px 30px;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .3s;
}
.pack:hover { transform: translateY(-8px); border-color: rgba(41, 212, 255, .5); }
.pack--hot { border-color: rgba(41, 212, 255, .55); background: linear-gradient(170deg, rgba(41, 212, 255, .09), var(--surface) 55%); }
.pack__badge {
  position: absolute; top: -12px; left: 30px;
  background: var(--accent); color: #03242e;
  font-family: var(--font-d); font-weight: 700; font-size: 11px; letter-spacing: .14em;
  padding: 5px 14px; border-radius: 100px;
}
.pack h3 { font-size: 22px; margin-bottom: 18px; }
.pack ul { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; }
.pack li { color: var(--muted); font-size: 14.5px; padding-left: 24px; position: relative; }
.pack li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ═══════ STÜDYO GALERİSİ ═══════ */
.studio { padding: clamp(70px, 10vw, 140px) 0 clamp(40px, 6vw, 80px); }
.studio__grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px;
}
.studio__ph {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  min-height: 240px;
}
.studio__ph--tall { grid-row: span 2; min-height: 500px; }
.studio__ph img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .6s cubic-bezier(.22, 1, .36, 1); }
.studio__ph:hover img { transform: scale(1.04); }
.studio__ph figcaption {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  font-family: var(--font-d); font-weight: 600; font-size: 14px; letter-spacing: .08em;
  background: rgba(4, 7, 11, .72); padding: 7px 14px; border-radius: 100px;
}
.studio__ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 7, 11, .55));
}
/* foto konmadıysa zarif yer tutucu */
.studio__ph.empty img { display: none; }
.studio__ph.empty::before {
  content: "📷 Fotoğraf: assets/galeri/"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; letter-spacing: .06em;
}

/* ═══════ CTA ═══════ */
.cta {
  position: relative; text-align: center;
  padding: clamp(90px, 13vw, 170px) 24px; overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 70% at 50% 115%, rgba(41, 212, 255, .16), transparent 70%);
}
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); letter-spacing: -.01em; position: relative; }
.cta p { color: var(--muted); margin: 20px 0 34px; font-size: 17px; position: relative; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta__info {
  position: relative; margin-top: 44px;
  display: flex; gap: 30px; justify-content: center; flex-wrap: wrap;
  color: var(--muted); font-size: 14px;
}

/* ═══════ FOOTER ═══════ */
.footer {
  border-top: 1px solid var(--line); background: var(--bg-2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: var(--muted); font-size: 13px;
}

/* ═══════ WHATSAPP ═══════ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.wa-float:hover { transform: scale(1.1); }

/* ═══════ REVEAL ═══════ */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ═══════ RESPONSIVE ═══════ */
/* sahneler dar ekranda alt alta geçer (panel-kart çakışmasını önler) */
@media (max-width: 1180px) {
  .fx { height: 240vh; }
  .fx__stage { flex-direction: column; justify-content: flex-end; padding-bottom: 9vh; }
  .fx__carwrap { width: min(560px, 90vw); }
  .fx__info { position: relative; top: auto; margin-top: 24px; width: min(560px, 92vw); }
  .fx__info--left, .fx__info--right { left: auto; right: auto; }
  .fx__specs { flex-direction: row; flex-wrap: wrap; }
  .fx__specs li { flex: 1 1 40%; }
  .tint-badge { top: 3%; right: 3%; padding: 8px 12px; }
  .tint-badge b { font-size: 22px; }
}
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__cta { padding: 9px 16px; font-size: 12px; margin-left: auto; margin-right: 12px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .packs__grid { grid-template-columns: 1fr; max-width: 520px; }
  .studio__grid { grid-template-columns: 1fr; }
  .studio__ph--tall { grid-row: auto; min-height: 320px; }
}
@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; }
  .fx__specs li { flex: 1 1 100%; }
}

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

/* ═══════ MERSİN LOCAL SEO BÖLÜMÜ ═══════ */
.local { padding: clamp(70px, 10vw, 140px) 0 clamp(40px, 6vw, 80px); }
.local__body { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.local__body p { color: var(--muted); font-size: 17px; margin-bottom: 18px; max-width: 820px; }
.local__body strong { color: var(--text); font-weight: 600; }

/* SSS */
.faq { max-width: 1200px; margin: 28px auto 0; padding: 0 24px; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); margin-bottom: 12px;
  overflow: hidden; transition: border-color .25s;
}
.faq details[open] { border-color: rgba(41, 212, 255, .35); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-d); font-weight: 600; font-size: 16.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--accent); font-size: 22px; font-weight: 500;
  transition: transform .25s; flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 18px; color: var(--muted); font-size: 15.5px; }
.faq details a { color: var(--accent); }

/* ═══════ HARİTA ═══════ */
.map {
  position: relative; max-width: 900px; margin: 44px auto 0; padding: 0 24px;
}
.map iframe {
  width: 100%; height: clamp(280px, 40vw, 420px); display: block;
  border-radius: 18px; border: 1px solid var(--line);
  filter: grayscale(.25) contrast(1.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.cta__info a { color: var(--muted); text-decoration: none; transition: color .2s; }
.cta__info a:hover { color: var(--accent); }
