/* ============================================================
   MKÜ Hastane Taksi · styles.css
   Lacivert + Sarı tema · mobile-first
============================================================ */

:root {
  --bg: #F7F5F0;
  --bg-elev: #FFFFFF;
  --ink: #0A1628;
  --ink-soft: #3A4A5F;
  --ink-mute: #6B7A8E;
  --line: #E5E0D6;
  --accent: #FFD60A;
  --accent-strong: #F5C600;
  --accent-deep: #0A1628;
  --whatsapp: #25D366;
  --whatsapp-dark: #1FAD54;
  --shadow-sm: 0 1px 2px rgba(10,22,40,0.06), 0 1px 3px rgba(10,22,40,0.04);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.08), 0 2px 6px rgba(10,22,40,0.04);
  --shadow-lg: 0 24px 60px rgba(10,22,40,0.16), 0 8px 24px rgba(10,22,40,0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

[data-theme="classic"] {
  --bg: #FFFBEC;
  --bg-elev: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #333333;
  --ink-mute: #666666;
  --line: #EEE5C7;
  --accent: #FFCC00;
  --accent-strong: #F2B90A;
  --accent-deep: #1A1A1A;
}
[data-theme="minimal"] {
  --bg: #FFFFFF;
  --bg-elev: #FAFAF7;
  --ink: #111111;
  --ink-soft: #444444;
  --ink-mute: #8A8A8A;
  --line: #ECECEC;
  --accent: #FFD60A;
  --accent-strong: #F5C600;
  --accent-deep: #111111;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  color: var(--ink);
}
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 600px) { .container { padding: 0 24px; } }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.logo__img {
  display: block;
  height: auto;
  width: auto;
  max-height: 46px;
  max-width: min(230px, 54vw);
  min-width: 0;
  flex-shrink: 1;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 600px) {
  .logo__img {
    max-height: 52px;
    max-width: 264px;
  }
}
.logo--drawer {
  flex: 1;
}
.logo--drawer .logo__img {
  max-height: 54px;
  max-width: min(268px, 72vw);
}
.logo--footer {
  flex: none;
  margin-bottom: 12px;
}
.logo--footer .logo__img {
  max-height: 112px;
  max-width: min(340px, 92vw);
}
[dir="rtl"] .logo__img {
  object-position: right center;
}

.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-switch { position: relative; }
.lang-switch__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-elev);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.04em;
  min-height: 38px;
  transition: border-color 0.15s;
}
.lang-switch__trigger:hover { border-color: var(--ink-mute); }
.lang-switch__trigger svg { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.lang-switch.is-open .lang-switch__trigger svg { transform: rotate(180deg); }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 4px;
  min-width: 130px;
  display: none;
  z-index: 60;
}
.lang-switch.is-open .lang-switch__menu { display: block; }
.lang-switch__menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  transition: background 0.15s;
}
.lang-switch__menu button:hover { background: var(--bg); }
.lang-switch__menu button.active { background: var(--accent); color: var(--accent-deep); }
.lang-switch__menu button .check { opacity: 0; font-weight: 900; }
.lang-switch__menu button.active .check { opacity: 1; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--ink);
}
.nav__toggle svg { width: 20px; height: 20px; }

.nav-call {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--accent-deep);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-call:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
button.nav-call {
  border: none;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  font-synthesis: weight style;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

@media (min-width: 900px) {
  .nav__inner { height: 68px; }
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .nav-call { display: inline-flex; }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(82vw, 320px);
  background: var(--bg-elev);
  padding: 22px 22px calc(22px + var(--safe-bottom));
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.nav-drawer__close {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.nav-drawer__close svg { width: 18px; height: 18px; }
.nav-drawer__list { display: grid; gap: 4px; }
.nav-drawer__list a {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.15s;
}
.nav-drawer__list a:hover { background: var(--bg); }
.nav-drawer__cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}
.nav-drawer__cta a,
.nav-drawer__cta button.call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  border: none;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.nav-drawer__cta .call-link { background: var(--accent); color: var(--accent-deep); }
.nav-drawer__cta .wa-link { background: var(--whatsapp); color: #fff; }
.nav-drawer__cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===========================================================
   HERO — yeni mobile-first tasarım
   Telefon numarası ön planda, başlık 2 satır, lede kısa.
=========================================================== */
.hero {
  position: relative;
  padding: 28px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% -10%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 50% at -10% 110%, color-mix(in oklab, var(--ink) 6%, transparent), transparent 70%),
    var(--bg);
}
@media (min-width: 900px) {
  .hero { padding: 56px 0 84px; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__main {
  min-width: 0;
  width: 100%;
}
.hero__aside {
  width: 100%;
  min-width: 0;
}
@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1.05fr minmax(280px, 0.95fr);
    column-gap: 56px;
    align-items: stretch;
  }
  .hero__main {
    grid-column: 1;
    grid-row: 1;
  }
  .hero__aside {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  [dir="rtl"] .hero__main { grid-column: 2; }
  [dir="rtl"] .hero__aside { grid-column: 1; }
}

.hero__kicker {
  display: block;
  margin-bottom: 2px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 12.5vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 clamp(12px, 2.5vw, 20px);
  hyphens: none;
}
.hero__title-mark {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.hero__title-mark::before {
  content: "";
  position: absolute;
  inset: 0.1em 0.02em -0.02em 0.02em;
  background: var(--accent);
  z-index: -1;
  border-radius: 0.35em 0.45em 0.4em 0.3em;
  transform: skewX(-3deg) rotate(-0.3deg);
}
.hero__title-rest { display: inline-block; }

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-top: 2px;
  margin-bottom: 8px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .hero__pills { margin-bottom: 4px; }
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 400px) {
  .hero__pill {
    gap: 7px;
    padding: 7px 13px;
    font-size: 12px;
  }
}
/* Uzun slogan: diğer pill'lerle aynı kart + wiggle; satır dışı taşma yok */
.hero__pill--overline {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  flex-shrink: 1;
  align-items: center;
  overflow: hidden;
}
.hero__pill--overline .hero__overline {
  display: block;
  margin: 0;
  min-width: 0;
  font-size: clamp(9px, 1.9vw, 12px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  box-sizing: border-box;
}
.hero__pill-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-deep);
  opacity: 0.9;
}
.hero__pill--wiggle { animation: wiggleBadge 2.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .hero__pill--wiggle { animation: none; }
}
@keyframes wiggleBadge {
  0%, 100% { transform: rotate(0deg); }
  4% { transform: rotate(-2deg); }
  8% { transform: rotate(2deg); }
  12% { transform: rotate(-1.4deg); }
  16% { transform: rotate(0deg); }
}

/* Hero CTA: yalnız 900+; dar ekranlarda (mobil) tamamen gizle — !important + section ile baskıla */
section.hero .hero__main .hero__cta-row--wide-only,
section.hero .hero__main .hero__cta-row {
  display: none !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
@media (min-width: 900px) {
  section.hero .hero__main .hero__cta-row--wide-only,
  section.hero .hero__main .hero__cta-row {
    display: grid !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin-top: 4px;
    padding: 0;
    border: none;
  }
  section.hero .hero__main .hero__cta-row--wide-only {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
  }
}

/* === Phone card: dev tıklama hedefi === */
button.phone-card {
  border: none;
  text-align: inherit;
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  margin: 0;
}
button.phone-card:focus-visible { outline-offset: 3px; }
.phone-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px 14px;
  padding: 16px 16px;
  background: var(--accent);
  color: var(--accent-deep);
  border-radius: 20px;
  border: 1px solid color-mix(in oklab, var(--accent-deep) 12%, var(--accent));
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 10px 28px color-mix(in oklab, var(--accent) 45%, transparent),
    0 2px 8px rgba(10,22,40,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .phone-card { padding: 16px 18px; border-radius: 22px; }
}
.phone-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 44px color-mix(in oklab, var(--accent) 70%, transparent),
    0 6px 14px rgba(10,22,40,0.10);
}
.phone-card:active { transform: translateY(-1px); }
.phone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 45%);
  z-index: 0;
}
.phone-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  animation: shineMove 3.6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes shineMove {
  0%, 100% { left: -60%; }
  55%, 100% { left: 130%; }
}

.phone-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,22,40,0.10);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .phone-card__icon { width: 50px; height: 50px; }
}
.phone-card__icon svg { width: 22px; height: 22px; color: var(--ink); }
@media (min-width: 600px) {
  .phone-card__icon svg { width: 24px; height: 24px; }
}
.phone-card__icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(10,22,40,0.5);
  opacity: 0;
  animation: phoneRing 2.2s ease-out infinite;
}
@keyframes phoneRing {
  0% { transform: scale(0.85); opacity: 0.7; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}

.phone-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.phone-card__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.78;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
}
@media (min-width: 400px) {
  .phone-card__label { font-size: 10.5px; letter-spacing: 0.12em; }
}
@media (min-width: 600px) {
  .phone-card__label { white-space: nowrap; letter-spacing: 0.14em; }
}
/* Sadece etiket (numara yok): görünüm dengeli olsun */
.phone-card__text:has(> .phone-card__label:only-child) {
  justify-content: center;
  gap: 0;
}
.phone-card__text:has(> .phone-card__label:only-child) .phone-card__label {
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.12em;
  opacity: 0.95;
  line-height: 1.25;
}
.phone-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10,22,40,0.10);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.phone-card:hover .phone-card__arrow {
  transform: translateX(4px);
  background: rgba(10,22,40,0.16);
}
.phone-card__arrow svg { width: 16px; height: 16px; }

/* === WhatsApp card === */
.wa-card {
  display: flex;
  align-items: center;
  gap: 12px 14px;
  padding: 16px 16px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 20px;
  border: 1px solid color-mix(in oklab, #fff 20%, var(--whatsapp));
  box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .wa-card { padding: 16px 18px; border-radius: 22px; }
}
.wa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55), 0 4px 10px rgba(0,0,0,0.08);
}
.wa-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-card__icon svg { width: 22px; height: 22px; color: #fff; }
.wa-card__text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.wa-card__title { font-size: 15px; font-weight: 800; line-height: 1.2; }
.wa-card__sub { font-size: 12.5px; opacity: 0.9; }
.wa-card__arrow {
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.2s ease;
}
.wa-card:hover .wa-card__arrow { transform: translateX(4px); }

/* === Trust strip === */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 2px;
}
.trust-item {
  background: var(--bg-elev);
  padding: 12px 6px;
  text-align: center;
}
.trust-item__num {
  font-family: var(--font-display);
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-item__num .unit { color: var(--ink-mute); font-size: 0.6em; font-weight: 700; margin-left: 2px; }
.trust-item__label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-mute);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .trust-item { padding: 14px 14px; }
  .trust-item__label { font-size: 11px; }
}

/* === Hero visual: aside içinde; mobilde gözükebilen yükseklik; 900+ sağ sütun === */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}
/* Mobil/tablet: akışta yükseklik (sadece absolute çocuk = 0 hata) */
@media (max-width: 899px) {
  .hero__visual {
    min-height: 200px;
    margin-top: 16px;
  }
  .hero__visual .taxi-embed {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: 200px;
    aspect-ratio: 2 / 1;
    max-height: 260px;
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .hero__visual { margin-top: 18px; }
}
@media (min-width: 900px) {
  .hero__visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    min-height: 0;
    max-width: 100%;
    flex: 1 1 auto;
    height: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .hero__visual .taxi-embed {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    aspect-ratio: 2 / 1;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
}
.taxi-embed {
  position: relative;
  background: #fafafa;
  border-radius: inherit;
  overflow: hidden;
}
.taxi-embed__obj {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  pointer-events: none;
}
/* iOS / mobil WebKit: <object> boş kalabiliyor; aynı SVG’yi <img> ile göster */
.taxi-embed__img {
  display: none;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: #fafafa;
}
@media (max-width: 899px) {
  .taxi-embed .taxi-embed__obj {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .taxi-embed .taxi-embed__img {
    display: block !important;
    min-height: 200px;
    flex: 1 1 auto;
  }
}
@media (min-width: 900px) {
  .taxi-embed .taxi-embed__img {
    display: none !important;
  }
  .taxi-embed .taxi-embed__obj {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
  }
}

.road-scene {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--accent) 8%, var(--bg-elev)) 0%,
    color-mix(in oklab, var(--accent) 4%, var(--bg-elev)) 50%,
    var(--bg-elev) 100%);
}
.road-scene__sun {
  position: absolute;
  top: 18%;
  right: 14%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, color-mix(in oklab, var(--accent) 50%, transparent) 60%, transparent 100%);
  opacity: 0.7;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.road-scene__skyline {
  position: absolute;
  bottom: 28%;
  left: 0; right: 0;
  height: 32%;
  opacity: 0.85;
}
.road-scene__road {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 28%;
  background: linear-gradient(180deg, color-mix(in oklab, var(--ink) 85%, var(--bg)) 0%, var(--ink) 100%);
  overflow: hidden;
}
.road-scene__lane {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 4px;
  transform: translateY(-50%);
  background-image: linear-gradient(90deg, var(--accent) 0 40px, transparent 40px 80px);
  background-size: 80px 4px;
  animation: roadMove 0.7s linear infinite;
}
@keyframes roadMove {
  from { background-position: 0 0; }
  to { background-position: -80px 0; }
}
.taxi {
  position: absolute;
  left: 50%;
  bottom: calc(28% - 20px);
  transform: translateX(-50%);
  width: 58%;
  max-width: 280px;
}
.taxi__body {
  transform-origin: center bottom;
  animation: taxiIdle 0.18s ease-in-out infinite alternate;
}
@keyframes taxiIdle {
  from { transform: translateY(0); }
  to { transform: translateY(-0.6px); }
}
.taxi__wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 0.5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SECTION ============ */
section[id] { scroll-margin-top: 76px; }
.section { padding: 56px 0; position: relative; }
@media (min-width: 700px) { .section { padding: 80px 0; } }

.section__header { max-width: 720px; margin-bottom: 28px; }
@media (min-width: 700px) { .section__header { margin-bottom: 40px; } }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section__title { font-size: clamp(26px, 5vw, 42px); line-height: 1.1; }
.section__lede {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============ NEDEN BİZ ============ */
.why { background: var(--bg); }
.why__head { text-align: center; margin-bottom: 28px; }
@media (min-width: 700px) { .why__head { margin-bottom: 36px; } }
.why__title { font-size: clamp(26px, 4.5vw, 40px); font-weight: 800; margin: 0; line-height: 1.12; }
.why__bar {
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 3px;
  margin: 14px auto 0;
  box-shadow: 0 2px 8px color-mix(in oklab, var(--accent) 40%, transparent);
}
.why__grid {
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.why-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  background: color-mix(in oklab, var(--accent) 7%, var(--bg-elev));
  border-color: color-mix(in oklab, var(--accent) 28%, var(--line));
  box-shadow: var(--shadow-sm);
}
.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card__icon--yellow {
  background: color-mix(in oklab, #f59e0b 20%, transparent);
  color: #b45309;
}
.why-card__icon--blue {
  background: color-mix(in oklab, #3b82f6 18%, transparent);
  color: #1d4ed8;
}
.why-card__icon--green {
  background: color-mix(in oklab, #22c55e 18%, transparent);
  color: #15803d;
}
.why-card__title { font-size: 17px; font-weight: 800; margin: 0 0 8px; line-height: 1.3; }
.why-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ ABOUT ============ */
.about {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__grid { display: grid; gap: 28px; }
@media (min-width: 800px) {
  .about__grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 56px; }
}
.about__points { display: grid; gap: 14px; margin-top: 22px; }
.about__point { display: flex; gap: 14px; align-items: flex-start; }
.about__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-deep);
  display: grid; place-items: center;
  font-weight: 900;
  margin-top: 2px;
}
.about__point-text strong { display: block; font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.about__point-text span { font-size: 14px; color: var(--ink-mute); line-height: 1.55; }

.about__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) { .about__card { padding: 28px; } }
.about__card-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.about__card-num .plus { color: var(--accent-strong); }
.about__card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.about__card-divider { height: 1px; background: var(--line); margin: 22px 0; }
.about__card-list { display: grid; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.about__card-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
  gap: 12px;
}
.about__card-list li:last-child { border: 0; padding: 0; }
.about__card-list li strong { color: var(--ink); font-weight: 700; }

/* ============ SERVICES ============ */
.services__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .services__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
@media (min-width: 600px) { .service { padding: 26px; } }
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--accent) 50%, var(--line));
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service:hover::before { transform: scaleX(1); }
.service__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--accent) 25%, var(--bg-elev));
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid color-mix(in oklab, var(--accent) 60%, var(--line));
}
.service__icon svg { width: 24px; height: 24px; color: var(--ink); }
.service__title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.service__desc { font-size: 14px; color: var(--ink-mute); line-height: 1.6; }
.service__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============ PRICING ============ */
.pricing__grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .pricing__grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--accent) 50%, var(--line));
  box-shadow: var(--shadow-md);
}
.price-card__route {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.price-card__route .arrow { color: var(--ink-mute); margin: 0 4px; }
.price-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 600;
}
.price-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.price-card__cta {
  margin-top: auto;
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}
.price-card__cta:hover { background: color-mix(in oklab, var(--ink) 85%, var(--accent)); }
.price-card__cta svg { width: 14px; height: 14px; }
.pricing__note {
  margin-top: 22px;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--accent) 10%, var(--bg-elev));
  border: 1px solid color-mix(in oklab, var(--accent) 40%, var(--line));
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ AREAS ============ */
.areas__layout { display: grid; gap: 20px; }
@media (min-width: 900px) {
  .areas__layout { grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: stretch; }
}
.areas__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-content: start; }
@media (min-width: 600px) { .areas__list { gap: 10px; } }
.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s ease;
  min-height: 48px;
}
@media (min-width: 600px) { .area-pill { gap: 10px; padding: 14px 16px; font-size: 14px; } }
.area-pill:hover {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, var(--bg-elev));
}
.area-pill__pin { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent-strong); }
@media (min-width: 600px) { .area-pill__pin { width: 22px; height: 22px; } }
.areas__map {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
@media (min-width: 600px) { .areas__map { min-height: 340px; } }
.areas__map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }

/* ============ REVIEWS (Elfsight) ============ */
.reviews__elfsight {
  width: 100%;
  min-width: 0;
  min-height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.reviews__elfsight .elfsight-app-e1dfaaec-4632-4a97-ba3a-8cc45dae7309 { width: 100% !important; }

/* ============ FAQ ============ */
.faq__list { display: grid; gap: 10px; max-width: 820px; }
@media (min-width: 600px) { .faq__list { gap: 12px; } }
.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: color-mix(in oklab, var(--accent) 40%, var(--line)); }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: color-mix(in oklab, var(--accent) 60%, var(--line)); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .faq-item summary { padding: 18px 20px; font-size: 16px; gap: 14px; }
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "\2212";
  background: var(--accent);
  border-color: var(--accent-strong);
}
.faq-item__body {
  padding: 0 16px 16px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (min-width: 600px) {
  .faq-item__body { padding: 0 20px 20px; font-size: 15px; }
}

/* ============ CONTACT ============ */
.contact {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) { .contact { padding: 44px 32px; } }
.contact::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 60%, transparent), transparent);
  opacity: 0.45;
  pointer-events: none;
}
.contact__title {
  color: #fff;
  font-size: clamp(24px, 4.5vw, 40px);
  max-width: 18ch;
  line-height: 1.15;
}
.contact__title em {
  font-style: normal;
  background: var(--accent);
  color: var(--accent-deep);
  padding: 2px 12px;
  border-radius: 8px;
  margin: 0 -2px;
  display: inline-block;
}
.contact__lede {
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  max-width: 520px;
  font-size: 15px;
}
.contact__methods { display: grid; gap: 10px; margin-top: 24px; position: relative; }
@media (min-width: 700px) { .contact__methods { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.method {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.method:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.method__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.method__icon svg { width: 20px; height: 20px; }
.method__label { font-size: 11.5px; color: rgba(255,255,255,0.65); font-weight: 600; }
.method__value { font-size: 17px; font-weight: 800; font-family: var(--font-display); margin-top: 2px; color: #fff; }

/* ============ ADSENSE ============ */
.ad-slot {
  margin: 28px 0;
  padding: 22px 16px;
  background: var(--bg-elev);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.ad-slot__label {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.ad-slot__hint { font-family: ui-monospace, "SF Mono", monospace; font-size: 12px; color: var(--ink-mute); }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 36px 0 24px;
  margin-top: 24px;
}
.footer__grid { display: grid; gap: 28px; margin-bottom: 24px; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); margin-bottom: 12px; font-weight: 800; }
.footer ul { display: grid; gap: 8px; }
.footer ul a { font-size: 14px; color: var(--ink-soft); }
.footer ul a:hover { color: var(--ink); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-mute);
}

/* ============ Arka plan (telefon listesi açıkken) ——— */
button.phone-dock__backdrop {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: rgba(10, 22, 40, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
body.phone-dock-open button.phone-dock__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.phone-dock-open { overflow: hidden; }

/* ============ Sol alt: numara listesi + FAB (telefon) ============ */
.phone-dock {
  position: fixed;
  left: 16px;
  bottom: calc(20px + var(--safe-bottom));
  z-index: 90;
  display: block;
  margin: 0;
  padding: 0;
  width: 4rem;
  min-height: 4rem;
  pointer-events: none;
}
@media (min-width: 600px) {
  .phone-dock { left: 20px; bottom: calc(24px + var(--safe-bottom)); }
}
.phone-dock > * { pointer-events: auto; }

.phone-dock__menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.9rem);
  width: 16.25rem;
  max-width: min(calc(100vw - 2rem), 20rem);
  background: #fff;
  color: #1f2937;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  box-shadow: 0 20px 50px -12px rgba(10, 22, 40, 0.28), 0 8px 20px -8px rgba(10, 22, 40, 0.15);
  padding: 0.75rem;
  box-sizing: border-box;
  transform-origin: bottom left;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
body.phone-dock-open .phone-dock__menu {
  opacity: 1;
  transform: scale(1) translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.phone-dock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 4px 8px 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.phone-dock__title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
}
.phone-dock__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}
.phone-dock__x:hover { color: #4b5563; background: rgba(15, 23, 42, 0.06); }
.phone-dock__list { display: flex; flex-direction: column; gap: 4px; }
.phone-dock__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.4rem 0.4rem 0.4rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.phone-dock__row:hover { background: rgba(255, 214, 10, 0.25); }
.phone-dock__ic {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 214, 10, 0.4);
  color: #a16207;
  transition: background 0.2s, color 0.2s;
}
.phone-dock__row:hover .phone-dock__ic {
  background: var(--accent, #ffd60a);
  color: var(--accent-deep, #0a1628);
}
.phone-dock__num {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display, system-ui, sans-serif);
  letter-spacing: 0.03em;
  color: #111827;
}

/* Ana telefon düğmesi (sarı / açıkken koyu + X) — .phone-dock sabit, düğme görece */
.phone-dock__fab {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 4rem;
  margin: 0;
  z-index: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(10, 22, 40, 0.35), 0 4px 12px rgba(10, 22, 40, 0.12);
  transition: transform 0.2s ease, background 0.2s, color 0.2s;
  border: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
  background: #ffd60a;
  color: #0a1628;
}
@media (min-width: 600px) {
  .phone-dock { width: 4.25rem; min-height: 4.25rem; }
  .phone-dock__fab { height: 4.25rem; }
}
.phone-dock__fab:hover { transform: scale(1.06); }
.phone-dock__fab:active { transform: scale(0.95); }
body.phone-dock-open .phone-dock__fab {
  background: #1f2937;
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.4);
}
body.phone-dock-open .phone-dock__fab::after { display: none; }
.fab-call__ic { display: inline-flex; align-items: center; justify-content: center; }
.fab-call__ic--phone svg { width: 1.5rem; height: 1.5rem; }
.fab-call__ic--close svg { width: 1.5rem; height: 1.5rem; }
body:not(.phone-dock-open) .fab-call__ic--close { display: none !important; }
body.phone-dock-open .fab-call__ic--phone { display: none !important; }
body.phone-dock-open .fab-call__ic--close { display: flex !important; }
body:not(.phone-dock-open) .fab-call__ic--phone { display: flex !important; }
.phone-dock__fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #ffd60a;
  animation: ringPulse 2.2s ease-out infinite;
  pointer-events: none;
}
body.phone-dock-open .phone-dock__fab::after { display: none; }
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}
.fab-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: ringPulse 2.2s ease-out infinite 0.45s;
  pointer-events: none;
}
.fab-whatsapp {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  right: 16px;
  left: auto;
  z-index: 60;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(10, 22, 40, 0.35), 0 4px 12px rgba(10, 22, 40, 0.12);
  transition: transform 0.2s ease;
  border: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  background: var(--whatsapp);
  color: #fff;
  padding: 0;
  font: inherit;
}
.fab-whatsapp:hover { transform: scale(1.06); }
.fab-whatsapp:active { transform: scale(0.95); }
@media (min-width: 600px) {
  .fab-whatsapp { width: 4.25rem; height: 4.25rem; bottom: calc(24px + var(--safe-bottom)); right: 20px; }
}
.fab-whatsapp svg, .phone-dock__fab .fab-call__ic svg { width: 1.5rem; height: 1.5rem; }

[dir="rtl"] .phone-dock { left: auto; right: 16px; }
[dir="rtl"] .phone-dock__menu { left: auto; right: 0; transform-origin: bottom right; }
[dir="rtl"] .fab-whatsapp { right: auto; left: 16px; }
@media (min-width: 600px) { [dir="rtl"] .phone-dock { right: 20px; } [dir="rtl"] .fab-whatsapp { left: 20px; } }

/* RTL */
[dir="rtl"] .hero__title { text-align: right; }
[dir="rtl"] .hero__pill--overline .hero__overline { text-align: right; }
[dir="rtl"] .nav__inner { flex-direction: row-reverse; }
[dir="rtl"] .logo { flex-direction: row-reverse; }
[dir="rtl"] .nav-drawer__panel { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
[dir="rtl"] .phone-card__arrow svg,
[dir="rtl"] .wa-card__arrow { transform: scaleX(-1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  body { padding-bottom: calc(80px + var(--safe-bottom)); }
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
  border-radius: 6px;
}
