/* ============================================================
   Dt. Cenap Atabak — Diş Kliniği
   Tasarım Sistemi & Animasyonlar
   ============================================================ */

:root {
  --primary: #b8935a;        /* logo altını */
  --primary-dark: #9a7842;   /* koyu altın (gradient/hover) */
  --primary-light: #f3ebdd;  /* açık altın tini (ikon zeminleri) */
  --navy: #262626;           /* antrasit (koyu bölümler) */
  --navy-soft: #3a3a3a;
  --ink: #2b2b2b;
  --muted: #7a7268;
  --bg: #faf8f4;             /* sıcak krem zemin */
  --white: #ffffff;
  --gold: #d4a95f;           /* parlak altın vurgu (yıldız, +, çizgiler) */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(38, 32, 24, 0.08);
  --shadow-md: 0 12px 34px rgba(38, 32, 24, 0.13);
  --shadow-lg: 0 24px 60px rgba(38, 32, 24, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }

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

section { padding: 96px 0; }

/* ---------- Sayfa Geçiş Perdesi ---------- */
.page-transition {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--navy), var(--primary-dark));
  transform: scaleY(0); transform-origin: top;
  pointer-events: none;
  display: grid; place-items: center;
}
.page-transition.leaving {
  animation: curtainIn 0.55s var(--ease-out) forwards;
  pointer-events: all;
}
.page-transition.entering {
  transform: scaleY(1); transform-origin: bottom;
  animation: curtainOut 0.65s var(--ease-out) 0.1s forwards;
}
.page-transition .pt-logo {
  color: #fff; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  opacity: 0; animation: ptLogoFade 0.5s ease 0.15s forwards;
  display: flex; align-items: center; gap: 10px;
}
@keyframes curtainIn { to { transform: scaleY(1); } }
@keyframes curtainOut { to { transform: scaleY(0); } }
@keyframes ptLogoFade { to { opacity: 1; } }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar.hidden { transform: translateY(-110%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.logo .logo-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease-spring);
}
.logo .logo-icon svg { display: block; }
.logo:hover .logo-icon { transform: rotate(-6deg) scale(1.06); }
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative; padding: 8px 14px; font-weight: 500; font-size: 0.95rem;
  color: var(--ink); border-radius: 10px; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--primary-dark); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 14px; padding: 11px 22px !important; border-radius: 999px !important;
  background: var(--navy); color: #fff !important; font-weight: 600;
  transition: all 0.35s var(--ease-out) !important;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.25);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184, 147, 90, 0.4); }

.hamburger {
  display: none; width: 44px; height: 44px; border: none; background: var(--white);
  border-radius: 12px; box-shadow: var(--shadow-sm);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  z-index: 1002;
}
.hamburger span {
  width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: all 0.35s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: none;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  transition: all 0.35s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn svg { transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; box-shadow: 0 10px 26px rgba(184, 147, 90, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(184, 147, 90, 0.5); }
.btn-ghost {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 2px rgba(10, 37, 64, 0.18);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--primary); color: var(--primary-dark); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f6efe2 0%, var(--bg) 55%, #f3ead8 100%);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: 0;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.blob-1 { width: 480px; height: 480px; background: #e8d3ab; top: -120px; right: -100px; }
.blob-2 { width: 380px; height: 380px; background: #ecdcc0; bottom: -140px; left: -120px; animation-delay: -5s; }
.blob-3 { width: 220px; height: 220px; background: #d8c19a; top: 40%; left: 55%; opacity: 0.4; animation-delay: -9s; }
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.12); }
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 9px 18px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--primary-dark);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; animation: pulseDot 1.8s ease infinite; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
}

.hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 700; margin-bottom: 22px; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--primary); position: relative; display: inline-block; }
.hero h1 .accent svg {
  position: absolute; left: 0; bottom: -8px; width: 100%; height: 14px;
}
.hero h1 .accent svg path {
  stroke: var(--gold); stroke-width: 4; fill: none; stroke-linecap: round;
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: drawLine 1.1s var(--ease-out) 0.9s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero p.lead { font-size: 1.13rem; color: var(--muted); max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; align-items: center; gap: 18px; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 44px; height: 44px; border-radius: 50%; border: 3px solid #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; color: #fff;
  margin-left: -10px; box-shadow: var(--shadow-sm);
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 0.88rem; color: var(--muted); }
.trust-text strong { color: var(--navy); display: block; font-size: 0.95rem; }
.trust-text .stars { color: var(--gold); letter-spacing: 2px; }

/* Hero görsel kart */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 60%, var(--primary-dark) 130%);
  border-radius: 28px; padding: 48px 40px; color: #fff;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  animation: heroCardFloat 7s ease-in-out infinite;
}
@keyframes heroCardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-card::before {
  content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,0.45), transparent 70%);
  top: -80px; right: -60px;
}
.hero-card .tooth-svg { width: 150px; margin: 0 auto 20px; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35)); }
.hero-card h3 { color: #fff; font-size: 1.3rem; text-align: center; margin-bottom: 6px; }
.hero-card > p { text-align: center; color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 26px; }
.hero-card .card-rows { display: grid; gap: 12px; }
.hero-card .card-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px; border-radius: 14px; font-size: 0.88rem;
  backdrop-filter: blur(4px);
}
.hero-card .card-row .ico {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: rgba(184, 147, 90, 0.35); display: grid; place-items: center;
}

.float-chip {
  position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; font-weight: 600; color: var(--navy); z-index: 2;
}
.float-chip .chip-ico {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--primary-light); color: var(--primary-dark);
}
.chip-1 { top: 8%; left: -8%; animation: chipFloat 5s ease-in-out infinite; }
.chip-2 { bottom: 10%; right: -6%; animation: chipFloat 6s ease-in-out -2.5s infinite; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1.5deg); } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy); color: rgba(255,255,255,0.85); padding: 18px 0;
  overflow: hidden; white-space: nowrap; position: relative;
}
.marquee-track { display: inline-flex; gap: 48px; animation: marquee 26s linear infinite; padding-right: 48px; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 0.92rem; font-weight: 500; }
.marquee-track .star { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Bölüm Başlıkları ---------- */
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head.left { text-align: left; margin-inline: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary-dark); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); font-size: 1.04rem; }

/* ---------- Kartlar ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(150deg, var(--navy), var(--primary-dark));
  opacity: 0; transition: opacity 0.45s var(--ease-out);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card:hover h3, .service-card:hover p { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,0.75); }
.service-card:hover .card-link { color: var(--gold); }
.service-icon {
  width: 62px; height: 62px; border-radius: 18px; margin-bottom: 22px;
  background: var(--primary-light); color: var(--primary-dark);
  display: grid; place-items: center; font-size: 1.6rem;
  transition: all 0.45s var(--ease-spring);
}
.service-icon svg { width: 34px; height: 34px; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.14); color: #fff; transform: scale(1.1) rotate(-6deg); }
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; transition: color 0.4s; }
.service-card p { color: var(--muted); font-size: 0.93rem; transition: color 0.4s; margin-bottom: 18px; }
.card-link { font-weight: 600; font-size: 0.9rem; color: var(--primary-dark); display: inline-flex; align-items: center; gap: 6px; transition: color 0.4s, gap 0.3s; }
.card-link:hover { gap: 10px; }

/* ---------- Tedavi Carousel (Anasayfa) ---------- */
.services-carousel { position: relative; }
.sc-viewport {
  overflow-x: clip;
  /* Hover'da yukarı kalkan kart ve gölgesi kırpılmasın */
  padding: 14px 0 40px; margin-bottom: -40px;
}
.sc-track {
  display: flex; gap: 26px;
  transition: transform 0.65s var(--ease-out);
}
.sc-item { flex: 0 0 calc((100% - 52px) / 3); }
.services-carousel .slider-dots { margin-top: 8px; }
.services-carousel .slider-arrow { top: 42%; }

@media (max-width: 1024px) {
  .sc-item { flex-basis: calc((100% - 26px) / 2); }
}
@media (max-width: 640px) {
  .sc-item { flex-basis: 100%; }
}

/* ---------- Sayaçlar ---------- */
.stats { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); padding: 72px 0; position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,0.25), transparent 70%);
  top: -200px; right: -100px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.stat { text-align: center; color: #fff; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; }
.stat .num .plus { color: var(--gold); }
.stat .label { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Neden Biz / Özellikler ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-list { display: grid; gap: 20px; }
.feature-item {
  display: flex; gap: 18px; background: #fff; padding: 22px 24px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: all 0.4s var(--ease-out);
}
.feature-item:hover { border-left-color: var(--primary); transform: translateX(8px); box-shadow: var(--shadow-md); }
.feature-item .f-ico {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--primary-light); color: var(--primary-dark);
  display: grid; place-items: center;
}
.feature-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.feature-item p { color: var(--muted); font-size: 0.88rem; }

.visual-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  background: linear-gradient(160deg, var(--primary-light), #ecdcc0 60%, #e3d0ac);
  min-height: 460px; display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.visual-frame .big-tooth { width: 200px; filter: drop-shadow(0 24px 40px rgba(10, 37, 64, 0.25)); animation: heroCardFloat 6s ease-in-out infinite; }
.visual-frame .ring {
  position: absolute; border: 2px dashed rgba(184, 147, 90, 0.35); border-radius: 50%;
  animation: spin 30s linear infinite;
}
.ring-1 { width: 300px; height: 300px; }
.ring-2 { width: 420px; height: 420px; animation-direction: reverse; animation-duration: 45s; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Süreç Adımları ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  background: #fff; border-radius: var(--radius); padding: 34px 26px;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-card .step-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.step-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { color: var(--muted); font-size: 0.88rem; }

/* ---------- Yorumlar ---------- */
.testimonial-wrap { position: relative; max-width: 780px; margin: 0 auto; }
.testimonial-track { overflow: hidden; border-radius: var(--radius); }
.testimonial-slides { display: flex; transition: transform 0.6s var(--ease-out); }
.testimonial {
  flex: 0 0 100%; background: #fff; padding: 48px 52px;
  box-shadow: var(--shadow-sm); text-align: center; border-radius: var(--radius);
}
.testimonial .quote-mark { font-family: Georgia, serif; font-size: 4.5rem; line-height: 0.6; color: var(--primary); opacity: 0.35; display: block; margin-bottom: 22px; }
.testimonial p.quote { font-size: 1.12rem; color: var(--ink); margin-bottom: 28px; font-style: italic; }
.testimonial .who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial .who .avatar {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 700;
}
.testimonial .who strong { display: block; color: var(--navy); font-size: 0.98rem; }
.testimonial .who small { color: var(--muted); }
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-top: 18px; }

.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.slider-dots button {
  width: 10px; height: 10px; border-radius: 999px; border: none;
  background: #ddd0bb; transition: all 0.35s var(--ease-out);
}
.slider-dots button.active { width: 30px; background: var(--primary); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: #fff; box-shadow: var(--shadow-md); color: var(--navy);
  display: grid; place-items: center; z-index: 2;
  transition: all 0.3s var(--ease-out);
}
.slider-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: -24px; }
.slider-arrow.next { right: -24px; }

/* ---------- CTA Bandı ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  border-radius: 28px; padding: 64px 56px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08);
}
.cta-band::before { width: 300px; height: 300px; top: -140px; right: -60px; }
.cta-band::after { width: 200px; height: 200px; bottom: -100px; left: 20%; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 460px; }
.cta-band .btn { flex-shrink: 0; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 0; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-grid a { display: block; padding: 5px 0; font-size: 0.92rem; transition: color 0.3s, transform 0.3s; }
.footer-grid a:hover { color: var(--primary); transform: translateX(5px); }
.footer-about p { font-size: 0.92rem; margin: 18px 0 24px; max-width: 300px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); transition: all 0.35s var(--ease-out); padding: 0;
}
.socials a:hover { background: var(--primary); transform: translateY(-4px); color: #fff; }
.footer-contact li { display: flex; gap: 12px; padding: 7px 0; font-size: 0.92rem; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.footer-areas {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0 4px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7;
}
.footer-areas strong { color: rgba(255,255,255,0.8); font-family: var(--font-head); margin-right: 6px; }
.footer-areas a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-areas a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}

/* ---------- İç Sayfa Hero ---------- */
.page-hero {
  padding: 170px 0 90px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 70%, var(--primary-dark) 140%);
  color: #fff; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,0.3), transparent 70%);
  top: -250px; left: 50%; transform: translateX(-50%);
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 14px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; position: relative; font-size: 1.05rem; }
.breadcrumb { display: inline-flex; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.55); position: relative; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.5; }

/* İç sayfalarda (koyu hero) şeffaf navbar üzerinde beyaz metin */
body:has(.page-hero) .navbar:not(.scrolled) .logo { color: #fff; }
body:has(.page-hero) .navbar:not(.scrolled) .logo small { color: rgba(255, 255, 255, 0.6); }
@media (min-width: 769px) {
  body:has(.page-hero) .navbar:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.9); }
  body:has(.page-hero) .navbar:not(.scrolled) .nav-links a:hover,
  body:has(.page-hero) .navbar:not(.scrolled) .nav-links a.active { color: var(--gold); }
  body:has(.page-hero) .navbar:not(.scrolled) .nav-links a::after { background: var(--gold); }
  body:has(.page-hero) .navbar:not(.scrolled) .nav-cta { background: #fff; color: var(--navy) !important; }
}

/* ---------- Hakkımızda ---------- */
.doctor-card {
  background: #fff; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 0.9fr 1.1fr;
}
.doctor-photo {
  background: linear-gradient(160deg, var(--navy), var(--primary-dark));
  display: grid; place-items: center; min-height: 420px; position: relative; overflow: hidden;
}
.doctor-photo .dr-avatar {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center; font-family: var(--font-head);
  font-size: 3.2rem; font-weight: 800; color: var(--navy);
  border: 6px solid rgba(255,255,255,0.2);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.doctor-photo .badge-exp {
  position: absolute; bottom: 26px; background: #fff; color: var(--navy);
  padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 0.88rem;
  box-shadow: var(--shadow-md);
}
.doctor-info { padding: 48px 46px; }
.doctor-info h2 { font-size: 1.9rem; margin-bottom: 6px; }
.doctor-info .title { color: var(--primary-dark); font-weight: 600; margin-bottom: 20px; display: block; }
.doctor-info p { color: var(--muted); margin-bottom: 16px; font-size: 0.97rem; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.doctor-tags span {
  background: var(--primary-light); color: var(--primary-dark);
  padding: 8px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.doctor-tags span:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

/* Zaman Çizelgesi */
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(var(--primary), var(--primary-light)); border-radius: 3px;
}
.tl-item { position: relative; padding: 0 0 42px 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -36px; top: 6px; width: 19px; height: 19px;
  border-radius: 50%; background: #fff; border: 5px solid var(--primary);
  box-shadow: 0 0 0 5px rgba(184, 147, 90, 0.15);
}
.tl-item .year { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); font-size: 0.9rem; letter-spacing: 0.06em; }
.tl-item h4 { font-size: 1.12rem; margin: 6px 0; }
.tl-item p { color: var(--muted); font-size: 0.93rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
  text-align: center; padding: 42px 30px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out); border-top: 4px solid transparent;
}
.value-card:hover { transform: translateY(-8px); border-top-color: var(--primary); box-shadow: var(--shadow-md); }
.value-card .v-ico {
  width: 70px; height: 70px; margin: 0 auto 22px; border-radius: 22px;
  background: var(--primary-light); color: var(--primary-dark);
  display: grid; place-items: center; font-size: 1.8rem;
  transition: transform 0.45s var(--ease-spring);
}
.value-card:hover .v-ico { transform: scale(1.12) rotate(-8deg); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Tedaviler Sayfası ---------- */
.treatment-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.treatment-detail:last-child { margin-bottom: 0; }
.treatment-detail:nth-child(even) .t-visual { order: 2; }
.t-visual {
  border-radius: 24px; min-height: 340px; display: grid; place-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
a.t-visual { text-decoration: none; transition: box-shadow 0.4s var(--ease-out); }
a.t-visual:hover { box-shadow: var(--shadow-lg); }
.t-visual .t-icon { font-size: 5.5rem; filter: drop-shadow(0 16px 28px rgba(10,37,64,0.25)); animation: heroCardFloat 5.5s ease-in-out infinite; }
.t-visual .t-icon-svg { color: rgba(255,255,255,0.95); display: grid; place-items: center; position: relative; z-index: 1; transition: transform 0.45s var(--ease-spring); }
a.t-visual:hover .t-icon-svg { transform: scale(1.08); }
.t-visual::after {
  content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.4); animation: spin 24s linear infinite;
}
.t-content h3 { font-size: 1.7rem; margin-bottom: 16px; }
.t-content p { color: var(--muted); margin-bottom: 20px; }
.t-content ul { display: grid; gap: 10px; }
.t-content ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.t-content ul li svg { flex-shrink: 0; color: var(--primary); margin-top: 4px; }

/* ---------- Tedavi Detay (Alt Sayfa) ---------- */
.detail-intro { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.detail-hero-visual {
  position: relative; border-radius: 26px; min-height: 400px;
  display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-md);
}
.detail-hero-icon { color: rgba(255,255,255,0.95); position: relative; z-index: 1; animation: heroCardFloat 6s ease-in-out infinite; }
.detail-hero-visual .ring { position: absolute; border: 2px dashed rgba(255,255,255,0.3); border-radius: 50%; }
.detail-hero-visual .ring-1 { width: 240px; height: 240px; animation: spin 26s linear infinite; }
.detail-hero-visual .ring-2 { width: 340px; height: 340px; animation: spin 40s linear infinite reverse; }

.detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.who-card {
  background: #fff; border-radius: var(--radius); padding: 38px 36px; box-shadow: var(--shadow-sm);
}
.who-card h3 { font-size: 1.3rem; margin-bottom: 22px; }
.who-card ul { display: grid; gap: 14px; }
.who-card ul li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.who-card ul li svg { flex-shrink: 0; color: var(--primary); margin-top: 3px; }
.who-note {
  margin-top: 26px; padding: 20px 22px; border-radius: var(--radius-sm);
  background: var(--primary-light); color: var(--navy-soft); font-size: 0.9rem; line-height: 1.6;
}
.who-note strong { display: block; color: var(--navy); margin-bottom: 4px; }

.other-treatments { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.other-chip {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; padding: 14px 22px 14px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm); font-weight: 600; font-size: 0.92rem; color: var(--navy);
  transition: all 0.35s var(--ease-out);
}
.other-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--primary-dark); }
.other-ico {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-light); color: var(--primary-dark);
  display: grid; place-items: center; transition: all 0.35s var(--ease-out);
}
.other-chip:hover .other-ico { background: var(--primary); color: #fff; }

.detail-nav { display: flex; align-items: center; gap: 16px; }
.detail-nav-link {
  flex: 1; display: flex; align-items: center; gap: 14px;
  background: #fff; padding: 20px 24px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); transition: all 0.35s var(--ease-out); color: var(--navy);
}
.detail-nav-link.next { justify-content: flex-end; text-align: right; }
.detail-nav-link:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: var(--primary-dark); }
.detail-nav-link svg { flex-shrink: 0; color: var(--primary); }
.detail-nav-link span { display: flex; flex-direction: column; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; }
.detail-nav-link small { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.detail-nav-all {
  width: 60px; height: 60px; flex-shrink: 0; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: all 0.35s var(--ease-out);
}
.detail-nav-all:hover { background: var(--primary); transform: translateY(-3px) rotate(90deg); }

/* SSS Akordiyon */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow 0.3s; }
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--navy);
}
.faq-q .faq-arrow { transition: transform 0.4s var(--ease-out); flex-shrink: 0; color: var(--primary); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Galeri ---------- */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.filter-btn {
  padding: 11px 24px; border-radius: 999px; border: none;
  background: #fff; color: var(--muted); font-weight: 600; font-size: 0.9rem;
  box-shadow: var(--shadow-sm); transition: all 0.35s var(--ease-out);
}
.filter-btn:hover { color: var(--primary-dark); transform: translateY(-2px); }
.filter-btn.active { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4 / 3; cursor: pointer;
  transition: transform 0.5s var(--ease-out), opacity 0.4s, box-shadow 0.5s;
  box-shadow: var(--shadow-sm);
}
.gallery-item.hide { display: none; }
.gallery-item:hover { transform: scale(1.03) translateY(-6px); box-shadow: var(--shadow-lg); z-index: 2; }
.g-bg { position: absolute; inset: 0; display: grid; place-items: center; font-size: 4rem; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover .g-bg { transform: scale(1.12); }
.g-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.9), transparent 65%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.45s var(--ease-out);
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay h4 { color: #fff; font-size: 1.05rem; transform: translateY(12px); transition: transform 0.45s var(--ease-out); }
.g-overlay span { color: rgba(255,255,255,0.7); font-size: 0.82rem; transform: translateY(12px); transition: transform 0.45s var(--ease-out) 0.06s; }
.gallery-item:hover .g-overlay h4, .gallery-item:hover .g-overlay span { transform: translateY(0); }

/* Önce / Sonra */
.ba-wrap { max-width: 820px; margin: 0 auto; }
.ba-slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 8; box-shadow: var(--shadow-md); user-select: none;
}
.ba-side { position: absolute; inset: 0; display: grid; place-items: center; }
.ba-before { background: linear-gradient(140deg, #9a9186, #c2b8a8); }
.ba-after { background: linear-gradient(140deg, var(--primary), #e0c48f); clip-path: inset(0 0 0 50%); }
.ba-side .ba-label {
  position: absolute; top: 18px; padding: 7px 16px; border-radius: 999px;
  background: rgba(10, 37, 64, 0.75); color: #fff; font-size: 0.8rem; font-weight: 700;
  backdrop-filter: blur(4px);
}
.ba-before .ba-label { left: 18px; }
.ba-after .ba-label { right: 18px; }
.ba-side .ba-emoji { font-size: 5rem; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
  background: #fff; transform: translateX(-50%); z-index: 3;
  box-shadow: 0 0 20px rgba(0,0,0,0.3); pointer-events: none;
}
.ba-handle::after {
  content: '⇄'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; font-size: 1.2rem; color: var(--navy);
  box-shadow: var(--shadow-md);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 4; margin: 0;
  -webkit-appearance: none; appearance: none;
}

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.info-cards { display: grid; gap: 20px; }
.info-card {
  background: #fff; border-radius: var(--radius-sm); padding: 26px 28px;
  box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.4s var(--ease-out);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card .i-ico {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  background: var(--primary-light); color: var(--primary-dark);
  display: grid; place-items: center;
}
.info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.92rem; }
.info-card a:hover { color: var(--primary-dark); }

.hours-table { width: 100%; font-size: 0.92rem; }
.hours-table td { padding: 6px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--navy); font-weight: 600; }
.hours-table .closed td:last-child { color: #e74c3c; }

.contact-form {
  background: #fff; border-radius: var(--radius); padding: 44px 42px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; margin-bottom: 22px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 16px 18px; border-radius: 12px;
  border: 2px solid #e6ddce; background: var(--bg);
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  transition: all 0.3s var(--ease-out); outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group label {
  position: absolute; left: 14px; top: 16px; padding: 0 6px;
  color: var(--muted); font-size: 0.92rem; pointer-events: none;
  transition: all 0.25s var(--ease-out); background: transparent;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 147, 90, 0.12);
}
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label {
  top: -9px; font-size: 0.75rem; color: var(--primary-dark); background: #fff; font-weight: 600;
}
.form-group select { color: var(--muted); }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; animation: successPop 0.6s var(--ease-spring); }
.form-success .check-circle {
  width: 84px; height: 84px; margin: 0 auto 24px; border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 16px 40px rgba(46, 204, 113, 0.4);
}
@keyframes successPop {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.map-frame {
  margin-top: 60px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); height: 420px; position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85); }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.left { transform: translateX(-44px); }
.reveal.right { transform: translateX(44px); }
.reveal.zoom { transform: scale(0.88); }
.reveal.visible { opacity: 1; transform: none; }

/* Kademeli gecikme */
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Hero giriş animasyonları */
.fade-up { opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards; }
.fu-1 { animation-delay: 0.15s; }
.fu-2 { animation-delay: 0.3s; }
.fu-3 { animation-delay: 0.45s; }
.fu-4 { animation-delay: 0.6s; }
.fu-5 { animation-delay: 0.75s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Yukarı çık butonu */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 50px; height: 50px; border-radius: 16px; border: none;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(20px) scale(0.9);
  transition: all 0.4s var(--ease-out); pointer-events: none;
}
.to-top.show { opacity: 1; transform: none; pointer-events: all; }
.to-top:hover { background: var(--primary); transform: translateY(-4px); }

/* WhatsApp butonu */
.wa-float {
  position: fixed; left: 26px; bottom: 26px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s ease infinite;
  transition: transform 0.3s var(--ease-spring);
}
.wa-float:hover { transform: scale(1.12) rotate(6deg); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero { padding-top: 130px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .cards-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .treatment-detail, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .treatment-detail:nth-child(even) .t-visual { order: 0; }
  .detail-intro, .detail-cols { grid-template-columns: 1fr; gap: 44px; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-photo { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
}

@media (max-width: 768px) {
  section { padding: 68px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1001;
    background: rgba(10, 37, 64, 0.98);
    flex-direction: column; justify-content: center; gap: 8px;
    clip-path: circle(0% at calc(100% - 40px) 40px);
    transition: clip-path 0.6s var(--ease-out);
  }
  .nav-links.open { clip-path: circle(150% at calc(100% - 40px) 40px); }
  .nav-links a { color: #fff; font-size: 1.3rem; font-family: var(--font-head); padding: 12px 20px; opacity: 0; transform: translateY(16px); transition: opacity 0.4s, transform 0.4s; }
  .nav-links.open a { opacity: 1; transform: none; }
  .nav-links.open a:nth-child(1) { transition-delay: 0.15s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.22s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.29s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.36s; }
  .nav-links.open a:nth-child(5) { transition-delay: 0.43s; }
  .nav-links.open a:nth-child(6) { transition-delay: 0.5s; }
  .nav-links.open a:nth-child(7) { transition-delay: 0.57s; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .float-chip { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .cards-grid, .values-grid, .steps-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-band { flex-direction: column; text-align: center; padding: 48px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial { padding: 36px 26px; }
  .doctor-info { padding: 34px 26px; }
  .contact-form { padding: 32px 24px; }
  .timeline { padding-left: 30px; }
  .section-head { margin-bottom: 44px; }
  .detail-nav-link small { font-size: 0.68rem; }
  .detail-nav-link { padding: 16px 18px; }
  .detail-nav-all { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .to-top { right: 16px; bottom: 16px; }
  .wa-float { left: 16px; bottom: 16px; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .fade-up { opacity: 1; animation: none; }
}
