/* ==========================================================================
   Hastane Taksi – Erkan Dil
   ========================================================================== */

:root {
  --yellow: #FFC400;
  --yellow-deep: #F2B400;
  --gold-text: #7A5900;          /* açık zemin üzerinde okunur sarı ton */
  --ink: #0E0E0E;
  --ink-2: #161616;
  --ink-3: #242424;
  --paper: #FAF8F2;
  --text: #1A1A1A;
  --muted: #555;
  --on-dark: #F4F4F4;
  --on-dark-muted: #B5B5B5;

  --wa: #25D366;
  --wa-btn: #1E9E50;
  --wa-head: #075E54;
  --wa-chat: #EFEAE2;
  --wa-out: #D9FDD3;

  --radius: 20px;
  --shadow: 0 18px 50px -18px rgba(0, 0, 0, .45);
  --header-h: 68px;

  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-script: "Dancing Script", "Brush Script MT", cursive;
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

.center { display: flex; justify-content: center; flex-wrap: wrap; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  border-radius: 10px;
}
.skip-link:focus { top: 12px; }

section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .85em 1.4em;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: .6em 1.1em; font-size: .95rem; }
.btn-lg { padding: 1em 1.6em; font-size: 1.125rem; }
@media (max-width: 420px) {
  .btn-lg { padding: 1em 1.1em; font-size: 1.02rem; gap: .5em; }
}

.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(255, 196, 0, .7); }
.btn-yellow:hover { background: #FFD233; }

.btn-wa { background: var(--wa-btn); color: #fff; box-shadow: 0 10px 30px -12px rgba(37, 211, 102, .7); }
.btn-wa:hover { background: #1B8F48; }

.btn-dark { background: var(--ink); color: var(--yellow); }
.btn-dark:hover { background: #000; }

.btn-ghost { border-color: rgba(255, 255, 255, .35); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ---------- Dama deseni ---------- */
.checker {
  height: 18px;
  background: repeating-conic-gradient(var(--ink) 0 25%, var(--yellow) 0 50%) 0 0 / 18px 18px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 14, 14, .88);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--on-dark);
}
.brand-sign { width: 46px; height: 29px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .01em;
}
.brand-owner {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--yellow);
  margin-top: 1px;
}

.site-nav { display: none; margin-left: auto; gap: 26px; }
.site-nav a {
  color: var(--on-dark-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: color .15s;
}
.site-nav a:hover { color: var(--yellow); }

.header-call { margin-left: auto; }
.header-call-text { display: none; }

@media (min-width: 560px) {
  .header-call-text { display: inline; }
  .header-call-short { display: none; }
}
@media (min-width: 960px) {
  .site-nav { display: flex; }
  .header-call { margin-left: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--on-dark);
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(255, 196, 0, .16), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(255, 196, 0, .08), transparent 60%),
    var(--ink);
  padding: 40px 0 56px;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: .9rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 18px;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
  animation: live 2s infinite;
}
@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-style: italic;
  font-weight: 900;
  line-height: .9;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero-title-top { font-size: clamp(2.1rem, 8vw, 3.6rem); color: #fff; }
.hero-title-main {
  font-size: clamp(4.4rem, 22vw, 8.5rem);
  color: var(--yellow);
  text-shadow: 0 8px 40px rgba(255, 196, 0, .25);
  margin-left: -.04em;
}
.hero-title-owner {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  color: #fff;
  transform: rotate(-4deg);
  transform-origin: left;
  margin: -.05em 0 0 .6em;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  color: var(--on-dark-muted);
  max-width: 34em;
  margin-bottom: 28px;
}
.hero-lead strong { color: var(--on-dark); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions .btn { flex: 1 1 240px; }

.hero-phone {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 6vw, 2.1rem);
  letter-spacing: .02em;
  color: var(--yellow);
  text-decoration: none;
}

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .06);
}
.hero-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  padding: 10px 16px 10px 12px;
  border-radius: 16px;
  background: rgba(14, 14, 14, .82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--on-dark);
  font-size: .9rem;
  line-height: 1.3;
}
.hero-tag .icon { color: var(--yellow); width: 1.5em; height: 1.5em; }
.hero-tag strong { display: block; color: var(--yellow); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }

@media (min-width: 960px) {
  .hero { padding: 72px 0 88px; }
  .hero-grid { grid-template-columns: 1.02fr 1fr; gap: 56px; }
  .hero-actions .btn { flex: 0 1 auto; }
  .hero-media img { transform: rotate(1.5deg); }
}

/* ---------- Bölümler ---------- */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section-light { background: var(--paper); color: var(--text); }
.section-dark { background: var(--ink-2); color: var(--on-dark); }
.section-yellow { background: var(--yellow); color: var(--ink); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 52px);
}
.section-head h2 { font-size: clamp(1.75rem, 4.4vw, 2.7rem); font-weight: 800; margin: 0; }

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.section-light .eyebrow { color: var(--gold-text); }
.eyebrow-dark, .section-yellow .eyebrow { color: var(--ink); opacity: .75; }

/* Özellikler */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid #ECE8DC;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .35); }
.feature h3 { font-size: 1.2rem; font-weight: 800; margin: 18px 0 8px; }
.feature p { color: var(--muted); margin: 0; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--yellow);
  color: var(--ink);
}
.feature-icon .icon { width: 28px; height: 28px; }
.feature-icon-text { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; }

/* Hizmetler */
.services {
  display: grid;
  gap: 18px;
}
.service {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1D1D1D, #141414);
  border: 1px solid var(--ink-3);
  transition: border-color .2s ease, transform .2s ease;
}
.service:hover { border-color: var(--yellow); transform: translateY(-4px); }
.service-icon { width: 40px; height: 40px; color: var(--yellow); margin-bottom: 18px; }
.service h3 { font-size: 1.25rem; font-weight: 800; color: #fff; }
.service p { color: var(--on-dark-muted); margin: 0; }

/* Adımlar */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  gap: 18px;
}
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  box-shadow: 0 14px 34px -22px rgba(0, 0, 0, .55);
}
.step h3 { font-size: 1.2rem; font-weight: 800; margin: 16px 0 6px; }
.step p { margin: 0; color: #3A3A3A; }
.step-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
}

@media (min-width: 600px) {
  .features, .services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .features, .services { grid-template-columns: repeat(4, 1fr); }
}

/* Galeri */
.gallery {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #E7E2D4;
  aspect-ratio: 4 / 3;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery a:hover img { transform: scale(1.05); }

/* Durak */
.durak-grid { display: grid; gap: 36px; align-items: center; }
.durak-copy h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; color: #fff; }
.durak-copy > p { color: var(--on-dark-muted); font-size: 1.05rem; }
.durak-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.durak-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; line-height: 1.4; }
.durak-list .icon { margin-top: .05em; }
.durak-list .icon { color: var(--yellow); }
.durak-list a { text-decoration: none; }
.durak-list a:hover { color: var(--yellow); }
.durak-list span a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.durak-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--yellow);
  background: var(--ink-3);
  box-shadow: var(--shadow);
}
.map iframe { display: block; width: 100%; height: 360px; border: 0; }

@media (min-width: 900px) {
  .durak-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
  .map iframe { height: 420px; }
}

/* Son çağrı */
.cta { background: var(--yellow); color: var(--ink); }
.cta-inner { text-align: center; padding-block: clamp(56px, 9vw, 96px); }
.cta h2 { font-size: clamp(2.2rem, 7vw, 3.6rem); font-weight: 900; font-style: italic; margin-bottom: 4px; }
.cta p { font-size: 1.15rem; font-weight: 500; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  margin: 4px 0 28px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 9vw, 4rem);
  letter-spacing: .01em;
  text-decoration: none;
}
.cta-phone .icon { width: .8em; height: .8em; }
.cta .hero-actions { max-width: 620px; margin-inline: auto; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-muted);
  padding: 48px 0 120px;
  font-size: .95rem;
  border-top: 1px solid var(--ink-3);
}
.footer-grid { display: grid; gap: 32px; }
.footer-col p { margin: 14px 0 0; max-width: 32em; }
.footer-title {
  margin: 0 0 12px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.site-footer address { font-style: normal; line-height: 1.8; }
.site-footer a { text-decoration: none; }
.site-footer address a { color: var(--yellow); font-weight: 700; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a:hover { color: var(--yellow); }
.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1.5px solid var(--yellow);
  border-radius: 999px;
  color: var(--on-dark);
  font-weight: 700;
  transition: background-color .15s ease, color .15s ease;
}
.review-btn:hover { background: var(--yellow); color: var(--ink); }
.review-stars { color: var(--yellow); letter-spacing: 2px; }
.review-btn:hover .review-stars { color: var(--ink); }
.footer-copy { margin: 40px 0 0; text-align: center; font-size: .85rem; opacity: .7; }
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
}

/* ---------- Sabit butonlar ---------- */
.fab-stack {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab {
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, .55);
  transition: transform .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.fab:hover { transform: scale(1.06); }

.fab-call {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: var(--ink);
}
.fab-call .icon { width: 24px; height: 24px; }

.fab-wa {
  width: 64px;
  height: 64px;
  background: var(--wa);
  color: #fff;
}
.fab-wa .icon { width: 34px; height: 34px; }
.fab-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  z-index: -1;
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .55; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

.fab-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, .45);
  display: none;
}

@media (min-width: 900px) {
  .fab-call { display: none; }
  .fab-label { display: block; }
}

body.wa-open .fab-wa::before { animation: none; opacity: 0; }
body.wa-open .fab-label { display: none; }

/* ---------- WhatsApp penceresi ---------- */
.wa-widget {
  position: fixed;
  z-index: 60;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + 80px);
  width: min(370px, calc(100vw - 32px));
  max-height: calc(100dvh - 120px);
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .55), 0 0 0 1px rgba(0, 0, 0, .06);
  transform-origin: bottom right;
}
.wa-widget[hidden] { display: none; }
.wa-widget:not([hidden]) { animation: wa-in .22s cubic-bezier(.2, .9, .3, 1.2); }
@keyframes wa-in {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to { opacity: 1; transform: none; }
}

.wa-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px 14px 16px;
  background: var(--wa-head);
  color: #fff;
}
.wa-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--ink);
}
.wa-avatar svg { width: 32px; height: 20px; }
.wa-head-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.wa-head-text strong { font-size: 1rem; }
.wa-status { font-size: .8rem; opacity: .85; }
.wa-close {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.wa-close:hover { background: rgba(255, 255, 255, .12); }

.wa-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px;
  background-color: var(--wa-chat);
  background-image: radial-gradient(rgba(0, 0, 0, .045) 1px, transparent 1px);
  background-size: 14px 14px;
}

.bubble {
  position: relative;
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: .95rem;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
  overflow-wrap: anywhere;
}
.bubble-in { align-self: flex-start; background: #fff; border-top-left-radius: 4px; }
.bubble-out { align-self: flex-end; background: var(--wa-out); border-top-right-radius: 4px; }

.wa-loc-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .65);
  font-size: .85rem;
  font-weight: 600;
  color: #0B6B3A;
}
.wa-loc-chip[hidden] { display: none; }
.wa-loc-chip .icon { width: 1.1em; height: 1.1em; }

.wa-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 16px;
  background: #fff;
  border-top: 1px solid #eee;
}

.wa-loc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--wa-btn);
  border-radius: 999px;
  background: #fff;
  color: #0B6B3A;
  font: 700 1rem var(--font-body);
  cursor: pointer;
  transition: background-color .15s ease;
}
.wa-loc-btn:hover { background: #F1FBF4; }
.wa-loc-btn[disabled] { cursor: default; }
.wa-loc-btn.is-loading .icon { animation: bob .8s ease-in-out infinite alternate; }
.wa-loc-btn.is-done { background: #E7F8EC; border-color: #BFE8CC; }
@keyframes bob { to { transform: translateY(-3px); } }

.wa-note {
  margin: 0;
  font-size: .85rem;
  line-height: 1.4;
  color: var(--muted);
}
.wa-note:empty { display: none; }
.wa-note.is-warn { color: #8A4B00; }

.wa-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--wa-btn);
  color: #fff;
  font: 800 1.05rem var(--font-display);
  text-decoration: none;
  transition: background-color .15s ease;
}
.wa-send:hover { background: #1B8F48; }
.wa-send .icon:last-child { width: 1.05em; height: 1.05em; }

@media (max-width: 559px) {
  .wa-widget {
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - 24px);
    transform-origin: bottom center;
  }
  body.wa-open .fab-stack { display: none; }
}

/* ---------- Galeri görüntüleyici ---------- */
.lightbox {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8, 8, 8, .94);
  color: #fff;
}
.lightbox[open] { display: grid; place-items: center; }
body:has(.lightbox[open]) { overflow: hidden; }
.lightbox::backdrop { background: rgba(0, 0, 0, .6); }

.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 60px 12px; }
.lb-figure img {
  max-width: min(94vw, 1400px);
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lb-figure figcaption { font-size: .95rem; color: #ccc; text-align: center; }

.lb-btn {
  position: fixed;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
}
.lb-btn:hover { background: var(--yellow); color: var(--ink); }
.lb-btn .icon { width: 26px; height: 26px; }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 719px) {
  .lb-prev, .lb-next { top: auto; bottom: 20px; transform: none; }
  .lb-prev { left: calc(50% - 60px); }
  .lb-next { right: calc(50% - 60px); }
}

/* ---------- İçerik bileşenleri ---------- */
.container-narrow { max-width: 860px; }

.hero-kicker {
  display: block;
  margin-bottom: .55em;
  font-size: clamp(.85rem, 2.6vw, 1rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.service { display: flex; flex-direction: column; }
.service p { flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
}
.service-link .icon { width: 1.1em; height: 1.1em; transition: transform .15s ease; }
.service-link:hover .icon { transform: translateX(3px); }

.prose-grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) { .prose-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.prose h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; }
.section-dark .prose h2 { color: #fff; }
.section-dark .prose p { color: var(--on-dark-muted); }
.prose p { font-size: 1.05rem; }
.prose a { color: inherit; text-decoration-color: var(--yellow); text-underline-offset: 3px; }
.prose h3 { font-size: 1.25rem; font-weight: 800; margin-top: 1.6em; }

.chips-title { font-size: 1.1rem; font-weight: 800; margin: 0 0 14px; }
.section-dark .chips-title { color: #fff; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink-3);
  background: #1D1D1D;
  font-size: .92rem;
  font-weight: 500;
}
.section-light .chips li { background: #fff; border-color: #E4DFD1; }
.chips a { color: var(--yellow); font-weight: 700; text-decoration: none; }
.section-light .chips a { color: var(--gold-text); }

/* SSS */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid #ECE8DC;
  border-radius: 16px;
  padding: 0 20px;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: 0 14px 34px -24px rgba(0, 0, 0, .45); }
.faq summary {
  position: relative;
  padding: 18px 36px 18px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--text);
  border-bottom: 2.5px solid var(--text);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details p { margin: 0 0 18px; color: #3A3A3A; }
.faq a { color: var(--gold-text); font-weight: 600; }

/* ---------- Alt sayfalar ---------- */
.breadcrumb { margin: 0 0 18px; font-size: .9rem; color: var(--on-dark-muted); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; opacity: .6; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb [aria-current] { color: var(--on-dark); }

.hero-sub { padding: 28px 0 48px; }
.hero-sub .hero-copy h1 {
  font-size: clamp(2.3rem, 7vw, 3.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 18px;
}
.hero-sub .hero-copy h1 em { font-style: italic; color: var(--yellow); }
.hero-sub .hero-media img { aspect-ratio: 16 / 11; }
@media (min-width: 960px) {
  .hero-sub { padding: 40px 0 72px; }
}

.table-wrap {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #ECE8DC;
  overflow: hidden;
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, .5);
}
.route-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.route-table caption { text-align: left; padding: 16px 18px 0; color: var(--muted); font-size: .9rem; caption-side: bottom; padding-bottom: 16px; }
.route-table th, .route-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #F0ECE2; }
.route-table thead th {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.route-table tbody th { font-weight: 700; }
.route-table tbody tr:hover { background: #FFFBEA; }
.route-table td.num { white-space: nowrap; font-variant-numeric: tabular-nums; }
.route-table .ask {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--wa-btn);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  white-space: nowrap;
}
.route-table .ask:hover { background: #1B8F48; }
.route-table .ask .icon { width: 1.1em; height: 1.1em; }
@media (max-width: 600px) {
  .route-table th, .route-table td { padding: 12px 6px; font-size: .9rem; }
  .route-table th:first-child, .route-table td:first-child { padding-left: 14px; }
  .route-table th:last-child, .route-table td:last-child { padding-right: 12px; text-align: right; }
  .route-table thead th { font-size: .72rem; letter-spacing: .06em; }
  .route-table td.num { white-space: normal; }
  .route-table .ask { padding: 9px; }
  .route-table .ask span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

.split { display: grid; gap: 32px; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }

.note-box {
  border-left: 4px solid var(--yellow);
  background: #FFF8DD;
  padding: 16px 18px;
  border-radius: 0 14px 14px 0;
  color: #3A3A3A;
}
.note-box p:last-child { margin: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.lead-center { text-align: center; max-width: 40em; margin: -12px auto 28px; color: var(--muted); font-size: 1.05rem; }
.table-more { text-align: center; margin: 22px 0 0; color: var(--muted); }
.table-more a, .note-box a, .section-light .prose a { color: var(--gold-text); font-weight: 700; }
.section-flush { padding-top: 0; }
.hero-sub .hero-media--wide img { aspect-ratio: 2 / 1; }
.site-nav a[aria-current="page"] { color: var(--yellow); }

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.fact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--on-dark-muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.fact-list strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.notfound { min-height: 100vh; display: flex; align-items: center; }
.notfound h1 { font-size: clamp(2.2rem, 7vw, 3.6rem); font-weight: 900; font-style: italic; color: #fff; margin: 40px 0 12px; }
.notfound-links { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.notfound-links a { color: var(--yellow); font-weight: 600; }

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
