/* ═══════════════════════════════════════════════════════════
   PatiVet — Veteriner Kliniği
   Premium tek sayfa tasarım • saf CSS, bağımlılık yok
   ═══════════════════════════════════════════════════════════ */

/* ── Değişkenler ─────────────────────────────────────────── */
:root {
  --cream:       #FBF6EE;
  --cream-2:     #F4ECDF;
  --ink:         #16302B;
  --ink-soft:    #4E5F5A;
  --green:       #1E5E4E;
  --green-dark:  #143D33;
  --green-deep:  #0E2B24;
  --amber:       #F4B860;
  --coral:       #E8744F;
  --coral-soft:  #F9DACB;
  --white:       #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Outfit", system-ui, sans-serif;

  --radius:    20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 12px rgba(20, 61, 51, .08);
  --shadow-md: 0 10px 40px rgba(20, 61, 51, .12);
  --shadow-lg: 0 24px 70px rgba(20, 61, 51, .18);

  --ease-out:    cubic-bezier(.22, 1, .36, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

::selection { background: var(--amber); color: var(--green-deep); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 8px; border: 2px solid var(--cream-2); }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

.container { width: min(1180px, 92%); margin-inline: auto; }

.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--green-deep); color: var(--cream); }

/* ── Tipografi yardımcıları ─────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral-soft); color: var(--coral);
  font-weight: 600; font-size: .85rem; letter-spacing: .04em;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow-light { background: rgba(244, 184, 96, .15); color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 18px;
  max-width: 640px;
}
.section-title em {
  font-style: italic; color: var(--coral); position: relative; white-space: nowrap;
}
.section-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 8px; background: var(--amber); opacity: .35;
  border-radius: 4px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: underlineGrow .8s var(--ease-out) .4s forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

.section-desc { color: var(--ink-soft); font-size: 1.06rem; max-width: 560px; }
.section-dark .section-desc { color: rgba(251, 246, 238, .75); }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .section-title, .section-head .section-desc { margin-inline: auto; }

/* ── Butonlar ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: 100px;
  transition: transform .35s var(--ease-bounce), box-shadow .35s ease, background .3s ease, color .3s ease;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--coral); color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 116, 79, .35);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(232, 116, 79, .45); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:active { transform: translateY(0) scale(.98); }

.btn-ghost {
  background: rgba(255, 255, 255, .7); color: var(--ink);
  border: 1.5px solid rgba(22, 48, 43, .14);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline {
  border: 2px solid var(--green); color: var(--green); font-weight: 600;
}
.btn-outline:hover { background: var(--green); color: var(--cream); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-emergency {
  background: var(--white); color: var(--coral);
  font-size: 1.25rem; font-weight: 700; padding: 18px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}
.btn-emergency:hover { transform: translateY(-3px) scale(1.04); }

.play-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--coral); color: var(--white); flex-shrink: 0;
}

/* ═══ PRELOADER ═══════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-deep);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.paw-walk { display: flex; gap: 18px; justify-content: center; }
.paw-step {
  font-size: 2rem; opacity: 0;
  animation: pawStep 1.4s ease-in-out infinite;
}
.paw-step:nth-child(1) { animation-delay: 0s; }
.paw-step:nth-child(2) { animation-delay: .2s; transform: translateY(-10px); }
.paw-step:nth-child(3) { animation-delay: .4s; }
.paw-step:nth-child(4) { animation-delay: .6s; transform: translateY(-10px); }
@keyframes pawStep {
  0%, 100% { opacity: 0; }
  30%, 60% { opacity: 1; }
}
.preloader-text {
  margin-top: 22px;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.6rem; color: var(--amber);
  letter-spacing: .06em;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .55; } }

/* ═══ SCROLL PROGRESS ═════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  z-index: 1001; border-radius: 0 4px 4px 0;
  transition: width .1s linear;
}

/* ═══ NAVBAR ══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(251, 246, 238, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(20, 61, 51, .1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--green); color: var(--amber);
  transition: transform .4s var(--ease-bounce);
}
.nav-logo:hover .logo-mark { transform: rotate(-12deg) scale(1.08); }
.logo-text {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--ink);
}
.logo-text em { font-style: italic; color: var(--coral); }

/* hero üstündeyken (koyu zemin) */
.nav:not(.scrolled) .logo-text { color: var(--cream); }
.nav:not(.scrolled) .nav-link { color: rgba(251, 246, 238, .82); }
.nav:not(.scrolled) .nav-phone { color: var(--cream); border-color: rgba(251,246,238,.25); }

.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 100px; position: relative;
  transition: color .3s ease, background .3s ease;
}
.nav-link:hover { color: var(--coral); }
.nav-link.active { color: var(--coral); }
.nav-link.active::after {
  content: "🐾"; position: absolute; font-size: .55rem;
  bottom: -2px; left: 50%; transform: translateX(-50%);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
  padding: 9px 16px; border: 1.5px solid rgba(22, 48, 43, .15); border-radius: 100px;
  transition: all .3s ease;
}
.nav-phone:hover { background: var(--green); color: var(--cream) !important; border-color: var(--green); }
.btn-nav { padding: 11px 22px; font-size: .92rem; }
.btn-paw { transition: transform .4s var(--ease-bounce); display: inline-block; }
.btn-nav:hover .btn-paw { transform: rotate(20deg) scale(1.25); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--green);
}
.hamburger span {
  width: 20px; height: 2.5px; background: var(--cream); border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══ HERO ════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: radial-gradient(1200px 800px at 80% -10%, #1B564775 0%, transparent 60%),
              linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 55%, #16453A 100%);
  color: var(--cream);
  padding: 140px 0 90px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.blob-1 { width: 480px; height: 480px; background: #2E8B6F; top: -160px; right: -120px; }
.blob-2 { width: 380px; height: 380px; background: #E8744F33; bottom: -120px; left: -100px; animation-delay: -4s; }
.blob-3 { width: 260px; height: 260px; background: #F4B86026; top: 40%; left: 38%; animation-delay: -8s; }
@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -50px) scale(1.15); }
}

.hero-grain {
  position: absolute; inset: 0; opacity: .25; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

.float-paw {
  position: absolute; opacity: .12; font-size: 1.6rem;
  animation: pawDrift 9s ease-in-out infinite alternate;
}
.fp-1 { top: 18%; left: 6%; font-size: 2rem; }
.fp-2 { top: 64%; left: 12%; animation-delay: -2s; }
.fp-3 { top: 26%; right: 8%; font-size: 2.4rem; animation-delay: -4s; }
.fp-4 { bottom: 14%; right: 22%; animation-delay: -6s; }
.fp-5 { top: 48%; left: 46%; font-size: 1.2rem; animation-delay: -3s; }
@keyframes pawDrift {
  0%   { transform: translateY(0) rotate(-12deg); }
  100% { transform: translateY(-30px) rotate(14deg); }
}

.hero-inner {
  display: grid; grid-template-columns: 1.08fr .92fr;
  align-items: center; gap: clamp(36px, 5vw, 70px);
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(251, 246, 238, .08);
  border: 1px solid rgba(251, 246, 238, .16);
  backdrop-filter: blur(6px);
  padding: 9px 20px; border-radius: 100px;
  font-size: .88rem; font-weight: 500; color: rgba(251, 246, 238, .9);
  margin-bottom: 26px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #5BE3A9;
  box-shadow: 0 0 0 0 rgba(91, 227, 169, .6);
  animation: dotPing 2s ease-out infinite;
}
@keyframes dotPing {
  0%   { box-shadow: 0 0 0 0 rgba(91, 227, 169, .6); }
  70%  { box-shadow: 0 0 0 10px rgba(91, 227, 169, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 227, 169, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600; line-height: 1.06; letter-spacing: -.015em;
  margin-bottom: 22px;
}
.title-line { display: block; overflow: hidden; }
.title-word, .title-accent {
  display: inline-block;
  transform: translateY(110%);
  animation: titleUp 1s var(--ease-out) forwards;
}
.title-line:nth-child(1) .title-word:nth-child(1) { animation-delay: .55s; }
.title-line:nth-child(1) .title-word:nth-child(2) { animation-delay: .68s; }
.title-line:nth-child(2) .title-accent { animation-delay: .82s; }
.title-line:nth-child(2) .title-word   { animation-delay: .95s; }
@keyframes titleUp { to { transform: translateY(0); } }

.title-accent {
  font-style: italic;
  background: linear-gradient(100deg, var(--amber), var(--coral));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-rotator {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500; color: rgba(251, 246, 238, .85);
  margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline;
}
.rotator-wrap {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
.rotator-word {
  display: inline-block;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--amber);
  border-bottom: 2px dashed rgba(244, 184, 96, .5);
  padding-bottom: 2px;
}
.rotator-word.flip-out { animation: flipOut .35s ease forwards; }
.rotator-word.flip-in  { animation: flipIn  .35s ease forwards; }
@keyframes flipOut { to { transform: translateY(-110%); opacity: 0; } }
@keyframes flipIn  { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.hero-desc {
  font-size: 1.05rem; color: rgba(251, 246, 238, .68);
  max-width: 520px; margin-bottom: 34px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 42px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.3rem;
  border: 2.5px solid var(--green-dark);
  margin-left: -12px;
  transition: transform .3s var(--ease-bounce);
}
.avatar:first-child { margin-left: 0; }
.avatar:hover { transform: translateY(-6px) scale(1.1); z-index: 2; }
.av-1 { background: #F4B860; }
.av-2 { background: #E8744F; }
.av-3 { background: #7FB3E8; }
.av-4 { background: #2E8B6F; }
.trust-stars { color: var(--amber); font-size: .95rem; letter-spacing: 2px; }
.trust-stars b { color: var(--cream); margin-left: 6px; letter-spacing: 0; }
.trust-text p { font-size: .88rem; color: rgba(251, 246, 238, .65); }
.trust-text b { color: var(--cream); }

/* — Hero görseli — */
.hero-visual { position: relative; }
.visual-main {
  position: relative;
  background: rgba(251, 246, 238, .07);
  border: 1px solid rgba(251, 246, 238, .14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: clamp(20px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
  animation: visualIn 1.1s var(--ease-out) .4s both;
}
@keyframes visualIn {
  from { opacity: 0; transform: translateY(50px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.visual-scene { position: relative; }
.dog-svg { width: 100%; height: auto; }

.dog-ear   { transform-origin: 118px 105px; animation: earWiggle 4s ease-in-out infinite; }
.dog-ear-r { transform-origin: 202px 105px; animation-delay: .4s; }
@keyframes earWiggle {
  0%, 86%, 100% { transform: rotate(0deg); }
  90% { transform: rotate(-7deg); }
  94% { transform: rotate(5deg); }
}
.dog-tail {
  transform-origin: 228px 232px;
  animation: tailWag 1.4s ease-in-out infinite;
}
@keyframes tailWag {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(14deg); }
}
.dog-eyes { animation: blink 5s infinite; transform-origin: 160px 142px; }
@keyframes blink {
  0%, 94%, 100% { transform: scaleY(1); }
  96%, 98% { transform: scaleY(.08); }
}
.dog-tongue { transform-origin: 160px 184px; animation: tonguePant 1.4s ease-in-out infinite; }
@keyframes tonguePant {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.25); }
}

.mini-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--ink);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: .82rem; line-height: 1.3;
  animation: miniFloat 5s ease-in-out infinite alternate;
}
.mini-card b { display: block; font-size: .88rem; }
.mini-card small { color: var(--ink-soft); font-size: .76rem; }
.mc-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--cream-2); font-size: 1.05rem; flex-shrink: 0;
}
.mc-1 { top: 4%; left: -8%; animation-delay: -1s; }
.mc-2 { bottom: 14%; right: -7%; animation-delay: -2.5s; }
.mc-3 { bottom: -5%; left: 4%; flex-direction: column; align-items: flex-start; gap: 4px; animation-delay: -4s; }
@keyframes miniFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

.heartbeat { width: 110px; }
.heartbeat-path {
  stroke-dasharray: 200; stroke-dashoffset: 200;
  animation: heartbeatDraw 2.2s linear infinite;
}
@keyframes heartbeatDraw {
  0%   { stroke-dashoffset: 200; }
  60%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.rotating-badge {
  position: absolute; top: -34px; right: -14px;
  width: 110px; height: 110px; z-index: 2;
}
.rotating-text {
  width: 100%; height: 100%;
  animation: spin 14s linear infinite;
}
.rotating-text text {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.2px;
  fill: var(--amber); font-family: var(--font-body);
}
@keyframes spin { to { transform: rotate(360deg); } }
.badge-center {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 1.7rem;
}

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(251, 246, 238, .55); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; z-index: 2;
  transition: color .3s ease;
}
.scroll-hint:hover { color: var(--amber); }
.mouse {
  width: 26px; height: 42px; border: 2px solid currentColor; border-radius: 16px;
  display: flex; justify-content: center; padding-top: 7px;
}
.wheel {
  width: 4px; height: 8px; background: currentColor; border-radius: 4px;
  animation: wheelScroll 1.8s ease-in-out infinite;
}
@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ═══ MARQUEE ═════════════════════════════════════════════ */
.marquee {
  background: var(--amber);
  padding: 16px 0; overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  border-block: 3px solid var(--green-deep);
  position: relative; z-index: 2; margin-top: -8px;
}
.marquee-track {
  display: flex; gap: 38px; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: 1.15rem; color: var(--green-deep); white-space: nowrap;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ═══ HAKKIMIZDA ══════════════════════════════════════════ */
.about-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}

.about-card-stack { position: relative; padding: 20px 36px 56px 0; }
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  display: grid; place-items: center;
}
.ap-main {
  aspect-ratio: 4 / 4.6;
  background: linear-gradient(160deg, #2E8B6F, var(--green-dark));
  box-shadow: var(--shadow-lg);
}
.ap-main .ap-emoji { font-size: clamp(6rem, 12vw, 9.5rem); filter: drop-shadow(0 16px 24px rgba(0,0,0,.3)); animation: miniFloat 4s ease-in-out infinite alternate; }
.ap-overlay {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(251, 246, 238, .92); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 14px 18px;
}
.ap-overlay b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.ap-overlay small { color: var(--ink-soft); }
.ap-small {
  position: absolute; right: -6px; top: -8px;
  width: 38%; aspect-ratio: 1;
  background: linear-gradient(150deg, var(--amber), var(--coral));
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
  animation: miniFloat 5s ease-in-out infinite alternate; animation-delay: -2s;
}
.ap-small .ap-emoji { font-size: clamp(2.4rem, 5vw, 4rem); }
.exp-badge {
  position: absolute; left: 8%; bottom: 12px;
  background: var(--green-deep); color: var(--cream);
  border-radius: 22px; padding: 18px 24px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.exp-num, .exp-plus {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--amber);
  line-height: 1;
}
.exp-badge small { font-size: .82rem; line-height: 1.3; opacity: .85; margin-left: 6px; }

.about-features { display: grid; gap: 22px; margin: 30px 0 34px; }
.about-features li {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
}
.about-features li:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.feat-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 50px; height: 50px; border-radius: 16px;
  background: var(--cream-2); font-size: 1.4rem;
}
.about-features b { font-size: 1.02rem; }
.about-features p { color: var(--ink-soft); font-size: .92rem; margin-top: 2px; }

.about-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.signature { display: flex; flex-direction: column; }
.sig-name {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--green);
}
.signature small { color: var(--ink-soft); font-size: .82rem; }

/* ═══ HİZMETLER ═══════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: var(--white); border-radius: var(--radius);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
  overflow: hidden;
}
.service-card::after {
  content: "🐾"; position: absolute; right: -14px; bottom: -18px;
  font-size: 5.4rem; opacity: 0; transform: rotate(-20deg) scale(.6);
  transition: opacity .4s ease, transform .5s var(--ease-bounce);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: .08; transform: rotate(-12deg) scale(1); }

.sc-icon {
  width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center; font-size: 1.8rem;
  background: color-mix(in srgb, var(--ic) 14%, white);
  margin-bottom: 20px;
  transition: transform .45s var(--ease-bounce);
}
.service-card:hover .sc-icon { transform: rotate(-8deg) scale(1.12); }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  margin-bottom: 10px;
}
.service-card p { color: var(--ink-soft); font-size: .93rem; margin-bottom: 18px; }
.sc-link {
  font-weight: 600; font-size: .92rem; color: var(--coral);
  display: inline-flex; align-items: center; gap: 6px;
}
.sc-link span { transition: transform .3s var(--ease-bounce); }
.sc-link:hover span { transform: translateX(6px); }
.sc-num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: rgba(22, 48, 43, .15); font-weight: 600;
}
.sc-featured { background: var(--green-deep); color: var(--cream); }
.sc-featured h3 { color: var(--cream); }
.sc-featured p { color: rgba(251, 246, 238, .7); }
.sc-featured .sc-link { color: var(--amber); }
.sc-featured .sc-num { color: rgba(251, 246, 238, .18); }
.sc-badge {
  position: absolute; top: 0; right: 0;
  background: var(--coral); color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  padding: 6px 14px; border-radius: 0 0 0 14px;
  animation: pulse 2s ease-in-out infinite;
}

/* ═══ SAYAÇLAR ════════════════════════════════════════════ */
.stats {
  background: linear-gradient(120deg, var(--green-dark), var(--green-deep));
  color: var(--cream); padding: clamp(56px, 7vw, 84px) 0;
  position: relative; overflow: hidden;
}
.stats-paws {
  position: absolute; right: -40px; top: -60px;
  font-size: 16rem; opacity: .05; transform: rotate(-18deg);
  pointer-events: none; user-select: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--amber);
  display: block; line-height: 1.1;
}
.stat-label {
  font-size: .95rem; color: rgba(251, 246, 238, .72);
  margin-top: 6px; display: block;
}
.stat { position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -15px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(251, 246, 238, .14);
}

/* ═══ SÜREÇ ═══════════════════════════════════════════════ */
.process-grid {
  display: grid; grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: start; gap: 6px;
}
.process-step {
  text-align: center; position: relative;
  background: var(--white); border-radius: var(--radius);
  padding: 44px 26px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.ps-num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  border: 4px solid var(--cream);
  box-shadow: 0 6px 16px rgba(232, 116, 79, .4);
}
.ps-icon { font-size: 2.6rem; margin-bottom: 14px; }
.process-step h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-soft); font-size: .92rem; }
.process-connector { color: var(--coral); opacity: .5; align-self: center; margin-top: 16px; }

/* ═══ EKİP ════════════════════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* İki kişilik ekip: kartları ortala, genişliği sınırla */
.team-grid.team-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 32px;
}
.team-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
}
.team-card:hover { transform: translateY(-10px) rotate(-.6deg); box-shadow: var(--shadow-lg); }
.tc-photo {
  position: relative; aspect-ratio: 1 / .92;
  background: var(--tc-bg); display: grid; place-items: center;
  overflow: hidden;
}
.tc-emoji {
  font-size: 4.6rem; filter: drop-shadow(0 10px 16px rgba(0,0,0,.25));
  transition: transform .45s var(--ease-bounce);
}
.team-card:hover .tc-emoji { transform: scale(1.15) rotate(4deg); }
.tc-overlay {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(14, 43, 36, .9));
  color: var(--cream); padding: 36px 18px 16px;
  font-size: .85rem; font-style: italic; text-align: center;
  transform: translateY(100%); transition: transform .4s var(--ease-out);
}
.team-card:hover .tc-overlay { transform: translateY(0); }
.tc-info { padding: 20px 20px 22px; text-align: center; }
.tc-info h3 { font-family: var(--font-display); font-size: 1.12rem; }
.tc-role { color: var(--coral); font-size: .84rem; font-weight: 600; display: block; margin: 4px 0 12px; }
.tc-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.tc-tags span {
  background: var(--cream-2); border-radius: 100px;
  font-size: .74rem; font-weight: 500; padding: 5px 12px;
}

/* ═══ YORUMLAR ════════════════════════════════════════════ */
.testi-slider { max-width: 820px; margin-inline: auto; overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform .6s var(--ease-out);
}
.testi-card {
  flex: 0 0 100%;
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
  box-shadow: var(--shadow-md);
  text-align: center; position: relative;
}
.testi-card::before {
  content: "“"; position: absolute; top: 6px; left: 26px;
  font-family: var(--font-display); font-size: 7rem;
  color: var(--coral); opacity: .14; line-height: 1;
}
.testi-stars { color: var(--amber); font-size: 1.25rem; letter-spacing: 4px; margin-bottom: 18px; }
.testi-card blockquote {
  font-family: var(--font-display); font-size: clamp(1.02rem, 2vw, 1.25rem);
  font-weight: 500; line-height: 1.6; color: var(--ink);
  margin-bottom: 26px;
}
.testi-card figcaption {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  background: color-mix(in srgb, var(--av) 22%, white);
  border: 2px solid var(--av);
}
.testi-card figcaption b { display: block; text-align: left; }
.testi-card figcaption small { color: var(--ink-soft); font-size: .82rem; }

.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; margin-top: 30px;
}
.testi-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-sm);
  font-size: 1.15rem; color: var(--green);
  transition: all .3s var(--ease-bounce);
}
.testi-btn:hover { background: var(--coral); color: var(--white); transform: scale(1.1); }
.testi-dots { display: flex; gap: 9px; }
.testi-dot {
  width: 9px; height: 9px; border-radius: 100px;
  background: rgba(22, 48, 43, .18);
  transition: all .35s var(--ease-out);
}
.testi-dot.active { width: 30px; background: var(--coral); }

/* ═══ ACİL BANT ═══════════════════════════════════════════ */
.emergency {
  background: linear-gradient(115deg, var(--coral), #D85A35);
  color: var(--white);
  padding: clamp(40px, 6vw, 60px) 0;
  position: relative; overflow: hidden;
}
.emergency::before {
  content: "🐾  🐾  🐾  🐾  🐾  🐾  🐾  🐾";
  position: absolute; inset: 0; font-size: 3.4rem; opacity: .07;
  display: flex; align-items: center; justify-content: space-around;
  pointer-events: none; user-select: none;
}
.emergency-inner {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 44px);
  flex-wrap: wrap; position: relative;
}
.em-pulse {
  width: 86px; height: 86px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 255, 255, .15);
  display: grid; place-items: center;
  animation: emPulse 1.8s ease-out infinite;
}
@keyframes emPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .35); }
  100% { box-shadow: 0 0 0 26px rgba(255, 255, 255, 0); }
}
.em-icon { font-size: 2.6rem; }
.em-text { flex: 1; min-width: 240px; }
.em-text h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 6px; }
.em-text p { opacity: .9; max-width: 520px; }

/* ═══ SSS ═════════════════════════════════════════════════ */
.faq-inner {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px); align-items: start;
}
.faq-head { position: sticky; top: 110px; }
.faq-head .btn { margin-top: 22px; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--coral); box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1rem;
  padding: 20px 24px;
  transition: color .3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--coral); }
.faq-icon {
  position: relative; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream-2);
  transition: background .3s ease, transform .4s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--green); border-radius: 2px;
  transition: background .3s ease;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { background: var(--coral); transform: rotate(135deg); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--white); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { color: var(--ink-soft); font-size: .95rem; }

/* ═══ RANDEVU ═════════════════════════════════════════════ */
.appointment {
  position: relative; overflow: hidden;
}
.appointment::before {
  content: ""; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 184, 96, .12), transparent 70%);
  top: -180px; right: -140px; pointer-events: none;
}
.appt-inner {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
  position: relative;
}
.appointment .section-title { color: var(--cream); }
.appointment .section-title em { color: var(--amber); }

.appt-hours {
  margin-top: 34px;
  background: rgba(251, 246, 238, .06);
  border: 1px solid rgba(251, 246, 238, .12);
  border-radius: var(--radius); padding: 26px 28px;
  backdrop-filter: blur(6px);
}
.appt-hours h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 16px; }
.appt-hours li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 10px 0; font-size: .94rem;
  border-bottom: 1px dashed rgba(251, 246, 238, .14);
}
.appt-hours li:last-child { border-bottom: none; }
.appt-hours li span { color: rgba(251, 246, 238, .7); }
.appt-hours li b { color: var(--cream); }
.appt-emergency b { color: var(--amber) !important; }

.appt-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { position: relative; margin-bottom: 18px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 24px 18px 10px;
  outline: none;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--coral); background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 116, 79, .12);
}
.form-field label {
  position: absolute; left: 18px; top: 17px;
  color: var(--ink-soft); font-size: .95rem;
  pointer-events: none;
  transition: all .25s var(--ease-out);
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label,
.form-field .label-static {
  top: 7px; font-size: .72rem; font-weight: 600; color: var(--coral);
  letter-spacing: .03em; text-transform: uppercase;
}
.form-field input[type="date"] { color: var(--ink); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234E5F5A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
  cursor: pointer;
}
.form-field.error input, .form-field.error select { border-color: #E74C3C; animation: shake .4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.form-note { text-align: center; font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }

.form-success {
  position: absolute; inset: 0;
  background: var(--white);
  display: grid; place-content: center; text-align: center;
  gap: 8px; padding: 30px;
  animation: successIn .55s var(--ease-bounce);
}
@keyframes successIn {
  from { opacity: 0; transform: scale(.86); }
  to   { opacity: 1; transform: scale(1); }
}
.fs-icon { font-size: 4rem; animation: bounceIcon 1s var(--ease-bounce) infinite alternate; }
@keyframes bounceIcon { to { transform: translateY(-12px); } }
.form-success h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--green); }
.form-success p { color: var(--ink-soft); max-width: 300px; margin-inline: auto; }

/* ═══ İLETİŞİM ════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 30px; align-items: stretch;
}
.contact-cards { display: grid; gap: 18px; align-content: start; }
.contact-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
}
.contact-card:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.cc-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 54px; height: 54px; border-radius: 18px;
  background: var(--cream-2); font-size: 1.5rem;
  transition: transform .4s var(--ease-bounce);
}
.contact-card:hover .cc-icon { transform: rotate(-10deg) scale(1.1); }
.contact-card b { font-size: 1rem; }
.contact-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.45; }
.contact-card small { color: var(--coral); font-weight: 600; }

.contact-map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); min-height: 380px;
  border: 6px solid var(--white);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(.9); }
.map-pin {
  position: absolute; top: 18px; left: 18px;
  background: var(--green-deep); color: var(--cream);
  font-weight: 600; font-size: .88rem;
  padding: 10px 18px; border-radius: 100px;
  box-shadow: var(--shadow-md);
  animation: miniFloat 3s ease-in-out infinite alternate;
}

/* ═══ FOOTER ══════════════════════════════════════════════ */
.footer { background: var(--green-deep); color: rgba(251, 246, 238, .75); position: relative; }
.footer-wave { color: var(--green-deep); margin-top: -1px; transform: translateY(-99%); position: absolute; left: 0; right: 0; }
.footer-wave svg { width: 100%; height: 44px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(56px, 7vw, 80px) 0 44px;
}
.footer .logo-text { color: var(--cream); }
.footer-brand p { font-size: .92rem; margin: 18px 0 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(251, 246, 238, .08);
  transition: all .3s var(--ease-bounce);
}
.footer-social a:hover { background: var(--coral); color: var(--white); transform: translateY(-4px) rotate(-6deg); }

.footer-col h4 {
  font-family: var(--font-display); color: var(--cream);
  font-size: 1.05rem; margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: .92rem; padding: 5px 0;
  transition: color .25s ease, transform .25s ease;
}
.footer-col a:hover { color: var(--amber); transform: translateX(5px); }
.footer-contact p { font-size: .92rem; margin-bottom: 12px; line-height: 1.5; }
.footer-contact a { display: inline; padding: 0; }

.footer-bottom { border-top: 1px solid rgba(251, 246, 238, .1); padding: 22px 0; }
.fb-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; }
.fb-love { color: var(--amber); }

/* ═══ YÜZEN BUTONLAR ══════════════════════════════════════ */
.float-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
  transition: transform .35s var(--ease-bounce);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 8px 26px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .4); }
  70%  { box-shadow: 0 8px 26px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 26px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.float-wa:hover { transform: scale(1.12) rotate(8deg); }
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--green-deep); color: var(--cream);
  font-size: .82rem; font-weight: 600; white-space: nowrap;
  padding: 8px 14px; border-radius: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.float-wa:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

.back-top {
  position: fixed; right: 24px; bottom: 96px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .4s var(--ease-out);
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--coral); transform: translateY(-4px); }

/* ═══ PATİ İZİ (CURSOR TRAIL) ═════════════════════════════ */
.cursor-paw {
  position: fixed; z-index: 800; pointer-events: none;
  font-size: 15px; opacity: 0;
  animation: pawFade 1.1s ease-out forwards;
}
@keyframes pawFade {
  0%   { opacity: .45; transform: scale(.5) rotate(var(--rot, 0deg)); }
  100% { opacity: 0;   transform: scale(1.15) rotate(var(--rot, 0deg)) translateY(-8px); }
}

/* ═══ SCROLL REVEAL ═══════════════════════════════════════ */
/* Gizleme yalnızca JS aktifken uygulanır (html.js) — JS bir gün
   hata verirse içerik asla görünmez kalmaz. */
html.js .reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
html.js .reveal.in { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1080px) {
  .nav-phone { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero { padding: 130px 0 110px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-rotator, .hero-cta, .hero-trust { justify-content: center; }
  .hero-desc { margin-inline: auto; }
  .hero-visual { max-width: 460px; margin: 24px auto 0; }
  .mc-1 { left: -4%; } .mc-2 { right: -4%; }
  .rotating-badge { top: -28px; right: 0; width: 92px; height: 92px; }

  .about-inner, .appt-inner, .faq-inner, .contact-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .about-visual { max-width: 480px; margin-inline: auto; }

  .process-grid { grid-template-columns: 1fr; gap: 40px; max-width: 460px; margin-inline: auto; }
  .process-connector { display: none; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0; z-index: -1;
    background: var(--green-deep);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
    opacity: 0; visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; z-index: 999; }
  .nav-links .nav-link {
    font-size: 1.5rem; font-family: var(--font-display);
    color: var(--cream) !important;
    opacity: 0; transform: translateY(20px);
    transition: opacity .4s ease, transform .4s var(--ease-out);
  }
  .nav-links.open .nav-link { opacity: 1; transform: translateY(0); }
  .nav-links.open .nav-link:nth-child(1) { transition-delay: .08s; }
  .nav-links.open .nav-link:nth-child(2) { transition-delay: .14s; }
  .nav-links.open .nav-link:nth-child(3) { transition-delay: .2s; }
  .nav-links.open .nav-link:nth-child(4) { transition-delay: .26s; }
  .nav-links.open .nav-link:nth-child(5) { transition-delay: .32s; }
  .nav-links.open .nav-link:nth-child(6) { transition-delay: .38s; }
  .hamburger { display: flex; z-index: 1001; }
  .btn-nav { display: none; }

  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .team-grid.team-grid--duo { grid-template-columns: minmax(0, 340px); justify-content: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .marquee-track span { font-size: 1rem; }
  .emergency-inner { flex-direction: column; text-align: center; }
  .scroll-hint { display: none; }
  .mc-1 { top: 0; left: 0; } .mc-2 { right: 0; } .mc-3 { left: 0; }
  .fb-inner { justify-content: center; text-align: center; }
  .stat:not(:last-child)::after { display: none; }
}

/* ═══ HAREKET AZALTMA ═════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
  .title-word, .title-accent { transform: none; }
}
