/* ============================================
   Dt. Kibar Emre Mert — Tek Sayfa Klinik Sitesi
   ============================================ */

/* Logo paleti: koyu lacivert + çelik mavisi + buz beyazı */
:root {
  --cream: #F5F8FB;        /* zemin: buz beyazı */
  --cream-dark: #E3EAF1;   /* kenarlıklar */
  --teal: #1C2E4A;         /* ana renk: logo laciverti */
  --teal-deep: #131F33;    /* koyu lacivert */
  --teal-soft: #DCE7F0;    /* açık mavi zemin */
  --amber: #B78D3F;        /* vurgu: logo altını */
  --amber-soft: #EBDDBE;   /* açık altın */
  --ink: #16202C;
  --muted: #56687A;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 12px 40px rgba(28, 46, 74, 0.10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

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

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Tipografi ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }

h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

.accent-word {
  font-style: italic;
  color: var(--teal);
  position: relative;
}
.accent-word.gold { color: var(--amber); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.eyebrow.light { color: var(--amber-soft); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn svg { width: 20px; height: 20px; }

.btn-primary {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 10px 26px rgba(28, 46, 74, 0.30);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(28, 46, 74, 0.36);
}

.btn-ghost {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(245, 248, 251, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(28, 35, 33, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; }
.brand-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.brand-word {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--teal);
}
.brand-dt { color: var(--amber); }
.brand-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--amber);
}
.brand-tag::before,
.brand-tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--amber-soft);
}

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.site-nav > a:not(.btn):hover::after { width: 100%; }

.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: var(--teal);
  color: var(--cream);
}
.btn-nav:hover { background: var(--teal-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(175deg, #E9F1F8 0%, var(--cream) 55%, #EDF3F8 100%);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

/* Diyagonal lacivert panel: sağ tarafta, kartın arkasında */
.hero-panel {
  position: absolute;
  top: 92px; bottom: -80px;
  left: 59%; right: -220px;
  background: linear-gradient(165deg, #24395C 0%, var(--teal) 45%, var(--teal-deep) 100%);
  border-radius: 64px 0 0 64px;
  transform: skewX(-5deg);
  box-shadow: -24px 0 80px rgba(19, 31, 51, 0.25);
  overflow: hidden;
}
/* Panel içinde muayenehane fotoğrafı (skew'i geri alarak düz durur) */
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 -120px;
  transform: skewX(5deg);
  background: url("mua.png") center 42% / cover no-repeat;
}
/* Lacivert film: fotoğrafı marka tonuna çeker, kartın okunurluğunu korur */
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
    rgba(28, 46, 74, 0.62) 0%,
    rgba(28, 46, 74, 0.34) 50%,
    rgba(19, 31, 51, 0.66) 100%);
}

.hero-dots {
  position: absolute;
  bottom: 60px; left: -40px;
  width: 260px; height: 260px;
  background-image: radial-gradient(var(--amber) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  opacity: 0.28;
  border-radius: 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 22px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-dark);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal);
}
.stat span { font-size: 0.85rem; color: var(--muted); }

/* Hero görsel */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transform: rotate(2deg);
}
.tooth-illustration {
  width: 190px; height: 190px;
  color: var(--teal);
  margin-inline: auto;
  animation: floaty 5s ease-in-out infinite;
}
.hero-logo {
  width: 220px; height: 220px;
  object-fit: contain;
  margin-inline: auto;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card-caption {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream);
  padding: 9px 18px;
  border-radius: 999px;
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #2FA36B;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 163, 107, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(47, 163, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 163, 107, 0); }
}

.float-chip {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.chip-1 { top: 6%; left: -4%; animation-delay: 0.4s; }
.chip-2 { bottom: 24%; right: -6%; animation-delay: 1.1s; }
.chip-3 { bottom: -4%; left: 8%; animation-delay: 1.8s; }

/* ---------- Bölüm genel ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }

/* ---------- Hakkımızda ---------- */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-frame {
  position: relative;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  background: var(--teal-soft);
  padding: 18px;
}
.about-frame::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 2px solid var(--amber);
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  opacity: 0.5;
  pointer-events: none;
}
.about-photo {
  display: grid;
  place-items: center;
  gap: 4px;
  aspect-ratio: 4 / 5;
  border-radius: 190px 190px 20px 20px;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: rgba(245, 248, 251, 0.85);
}
.about-photo svg { width: 84px; height: 84px; opacity: 0.85; }
.about-photo p { font-size: 0.85rem; opacity: 0.7; align-self: start; }
.about-photo.has-photo { display: block; }
.doctor-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 190px 190px 20px 20px;
}

.about-content h2 { margin-bottom: 6px; }
.about-content p.about-title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; }

.about-list { margin-top: 24px; display: grid; gap: 12px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.about-list li::before {
  content: "✓";
  flex: none;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Hizmetler ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal);
  margin-bottom: 18px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon {
  background: var(--teal);
  color: var(--cream);
  transform: rotate(-6deg) scale(1.05);
}
.service-card h3 { margin-bottom: 8px; font-size: 1.12rem; }
.service-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Neden Biz ---------- */
.why {
  background: var(--teal-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -140px; right: -140px;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 60px solid rgba(183, 141, 63, 0.10);
}
.why h2 { color: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.why-item {
  background: rgba(245, 248, 251, 0.05);
  border: 1px solid rgba(245, 248, 251, 0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.why-item:hover {
  background: rgba(245, 248, 251, 0.1);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--amber);
}
.why-item h3 { margin: 12px 0 8px; font-size: 1.08rem; }
.why-item p { font-size: 0.9rem; color: rgba(245, 248, 251, 0.72); }

/* ---------- Klinik galeri ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 230px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
}

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: grid; gap: 14px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.info-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.info-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
}
.info-icon svg { width: 24px; height: 24px; }
.info-card strong { display: block; font-size: 0.95rem; }
.info-card span { font-size: 0.9rem; color: var(--muted); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  height: 230px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.5rem; }
.form-sub { color: var(--muted); font-size: 0.93rem; margin: 6px 0 24px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(28, 46, 74, 0.10);
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-status {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.4em;
}
.form-status.ok { color: #1E7A50; }
.form-status.err { color: #B3402A; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-deep);
  color: var(--cream);
  padding: 48px 0;
}
.footer-inner {
  display: grid;
  gap: 20px;
  text-align: center;
  justify-items: center;
}
.footer-brand .brand-word { color: var(--cream); font-size: 1.35rem; }
.footer-brand p { color: rgba(245, 248, 251, 0.6); font-size: 0.9rem; margin-top: 6px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; }
.footer-nav a {
  font-size: 0.92rem;
  color: rgba(245, 248, 251, 0.8);
  transition: color 0.25s ease;
}
.footer-nav a:hover { color: var(--amber); }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(245, 248, 251, 0.45);
  border-top: 1px solid rgba(245, 248, 251, 0.1);
  padding-top: 20px;
  width: 100%;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

/* ---------- Scroll reveal ----------
   Gizleme yalnızca JS çalışıp <html>'e .js sınıfını eklediğinde uygulanır;
   JS yoksa/başarısızsa içerik her zaman görünür kalır. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .tooth-illustration, .float-chip, .pulse-dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-panel { display: none; }
  .hero { min-height: unset; }
  .hero-visual { margin-top: 10px; }
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 380px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    font-size: 1.2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-nav > a:not(.btn) { font-size: 1.25rem; }

  .section { padding: 72px 0; }
  .hero { padding: 130px 0 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .float-chip { display: none; }
  .hero-card { transform: none; padding: 36px 40px 26px; }
  .tooth-illustration { width: 150px; height: 150px; }
  .hero-logo { width: 170px; height: 170px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .brand-word { font-size: 1.05rem; }
  .hero-actions .btn { width: 100%; }
}

/* Panel görünürken (geniş ekran): kart sol alta iner, fotoğraf açığa çıkar */
@media (min-width: 1025px) {
  .hero-card {
    transform: translate(-80px, 120px) rotate(-2deg);
    padding: 26px 34px 20px;
  }
  .hero-logo { width: 140px; height: 140px; }
  .tooth-illustration { width: 140px; height: 140px; }
  .hero-card-caption { font-size: 0.8rem; }
  .chip-1 { top: 2%; left: 0; }
  .chip-2 { top: 24%; right: -4%; bottom: auto; }
  .chip-3 { bottom: -14%; left: auto; right: -2%; }
}

/* ---------- Yasal sayfalar (KVKK / Gizlilik) ---------- */
.legal-body { background: var(--cream); }
.legal-header {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}
.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-back { padding: 10px 20px; font-size: 0.9rem; }
.legal-main {
  max-width: 800px;
  padding: 56px 0 80px;
}
.legal-main h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
  color: var(--teal);
}
.legal-main h2 {
  font-size: 1.25rem;
  margin: 34px 0 10px;
  color: var(--teal);
}
.legal-main p, .legal-main li { color: var(--muted); margin-bottom: 12px; }
.legal-main ul { padding-left: 22px; list-style: disc; }
.legal-main li { margin-bottom: 6px; }
.legal-main a { color: var(--amber); font-weight: 600; text-decoration: underline; }
.legal-updated { font-size: 0.85rem; opacity: 0.8; margin-bottom: 28px; }
.legal-divider { border: none; border-top: 2px solid var(--cream-dark); margin: 48px 0; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 14px 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--muted);
}
.legal-table th { background: var(--teal); color: var(--cream); font-weight: 600; }
.legal-footer { padding: 28px 0; }
.legal-footer .footer-copy { border: none; padding: 0; }
.legal-footer a { color: var(--amber-soft); text-decoration: underline; }

/* ---------- Footer yasal linkler ---------- */
.footer-legal { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.85rem;
  color: rgba(245, 248, 251, 0.65);
  text-decoration: underline;
  transition: color 0.25s ease;
}
.footer-legal a:hover { color: var(--amber); }

/* ---------- Form KVKK onayı ---------- */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 4px 0 18px;
  cursor: pointer;
}
.consent-check input {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--teal);
  flex: none;
}
.consent-check a { color: var(--amber); font-weight: 600; text-decoration: underline; }

/* ---------- Harita çerez placeholder ---------- */
.map-embed { position: relative; }
.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  background: var(--teal-soft);
  padding: 20px;
}
.map-placeholder p { font-size: 0.9rem; color: var(--muted); }
.map-placeholder .btn { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Çerez bandı ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 860px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(19, 31, 51, 0.25);
  padding: 18px 22px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 0.88rem; color: var(--muted); flex: 1 1 320px; margin: 0; }
.cookie-banner a { color: var(--amber); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 10px 22px; font-size: 0.88rem; }

@media (max-width: 520px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- Dil değiştirici ---------- */
.lang-switch {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  border: 1.5px solid var(--cream-dark);
  border-radius: 999px;
  padding: 7px 14px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.site-nav > a.lang-switch::after { display: none; }
.lang-switch:hover {
  border-color: var(--amber);
  background: var(--amber-soft);
}
