/* AYBUGE — site header & mega menu */

:root {
  --nav-h: 76px;
  --nav-brand: #078f9d;
  --nav-brand-dark: #087f8a;
  --nav-ink: #0a2540;
  --nav-ink-soft: #425466;
  --nav-muted: #6b7f92;
  --nav-line: #e4ebf2;
  --nav-surface: #ffffff;
  --nav-surface-soft: #f5f8fc;
  --nav-radius: 4px;
  --nav-shadow: 0 10px 40px rgba(10, 37, 64, .08);
  --nav-transition: 220ms cubic-bezier(.2, .7, .2, 1);
  --nav-ease-out: cubic-bezier(.16, 1, .3, 1);
  --nav-ease-in-out: cubic-bezier(.4, 0, .2, 1);
  --mega-h: 344px;
}

@keyframes navMenuIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navSideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes navLinkIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navAccentDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ── Bar ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--nav-surface);
}

.nav__bar {
  border-bottom: 1px solid var(--nav-line);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--nav-transition);
}

.nav.is-scrolled .nav__bar {
  box-shadow: var(--nav-shadow);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--nav-h);
  position: relative;
}

/* ── Brand ── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.brand-text-wrap {
  display: grid;
  gap: 2px;
}

.brand-title {
  color: var(--nav-brand);
  font-size: 22px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .12em;
}

.brand-sub {
  color: var(--nav-muted);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: .02em;
  line-height: 1.3;
}

/* ── Menu shell ── */
/* 3 net bölge: logo (.brand, solda) | kategoriler (.menu-primary, ortada) |
   arama/dil/hesap/CTA (.menu-aux, sağda). .menu-primary flex:1 ile aux'tan
   arta kalan TÜM alanı kaplar ve kendi içinde justify-content:center ile
   kendini ortalar; .menu-aux ise flex:0 0 auto olarak doğal genişliğinde
   son eleman olduğu için otomatik sağa yaslanır. Böylece aux'un gerçek
   genişliği ne olursa olsun matematiksel olarak üst üste binme imkânsız —
   önceki grid(1fr/1fr) ve position:absolute denemeleri geniş aux içeriğinde
   taşıp primary ile çakışıyordu. */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
  max-width: none;
  min-width: 0;
  margin-left: clamp(24px, 3vw, 48px);
}

.menu-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.menu-primary > * + *::before {
  display: none;
}

.menu-primary > a,
.menu-primary .dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--nav-radius);
  background: transparent;
  color: var(--nav-ink-soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--nav-transition);
}

.menu-primary > a::before,
.menu-primary .dropdown-toggle::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--nav-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--nav-transition);
}

.menu-primary > a::after {
  content: none;
}

.menu-primary > a:hover {
  color: var(--nav-ink);
}

.menu-primary > a.on,
.menu-primary .dropdown.on .dropdown-toggle,
.menu-primary .dropdown.open .dropdown-toggle {
  color: var(--nav-brand);
}

.menu-primary > a.on::before,
.menu-primary .dropdown.on .dropdown-toggle::before,
.menu-primary .dropdown.open .dropdown-toggle::before {
  transform: scaleX(1);
}

.menu-primary .dropdown.on .dropdown-toggle,
.menu-primary .dropdown.open .dropdown-toggle {
  box-shadow: none;
}

.menu-primary .dropdown-toggle:hover {
  color: var(--nav-ink);
}

.dropdown {
  position: static;
}

.dropdown-toggle {
  gap: 7px;
}

.dropdown-toggle::after { content: none; }

.dropdown-chevron {
  flex-shrink: 0;
  opacity: .55;
  transition: transform 260ms var(--nav-ease-out), opacity 180ms ease;
}

.dropdown-toggle:hover .dropdown-chevron,
.dropdown.on .dropdown-chevron,
.dropdown.open .dropdown-chevron {
  opacity: 1;
}

.dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

/* ── Utilities ── */
.menu-aux {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.mob-drawer__login-row{display:flex;gap:8px;margin:0 0 9px}.mob-drawer__login-link{flex:1;display:flex;align-items:center;gap:9px;min-height:52px;border:1px solid rgba(16,152,162,.22);border-radius:10px;color:var(--nav-brand);text-decoration:none;padding:7px 10px;background:#fff}.mob-drawer__login-link>svg{width:19px;height:19px;flex:0 0 auto}.mob-drawer__login-link span,.mob-drawer__login-link strong,.mob-drawer__login-link small{display:block}.mob-drawer__login-link strong{color:#243b53;font-size:12.5px}.mob-drawer__login-link small{color:#8091a4;font-size:10px;font-weight:500}

/* ── Search pill (header butonu) ──────────────────────────────── */

.search-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  min-width: 180px;
  padding: 0 16px 0 14px;
  border: 1px solid var(--nav-line);
  border-radius: 8px;
  background: var(--nav-surface);
  color: #8fa3b5;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.search-pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.search-pill:hover {
  border-color: #b8ccd8;
  color: #5a6f86;
  background: #f4f8fb;
  box-shadow: 0 2px 8px rgba(10,37,64,.06);
}

/* ── Lang switch ──────────────────────────────────────────────── */

/* ── Dil Seçici (Lang Picker) ─── */
.lang-picker {
  position: relative;
}

.lang-picker__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 11px;
  border: 1px solid var(--nav-line);
  border-radius: 8px;
  background: transparent;
  color: var(--nav-muted);
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms;
  letter-spacing: .02em;
}

.lang-picker__trigger .lang-flag { width: 18px; height: 12px; border-radius: 2px; }
.lang-picker__chevron { width: 12px; height: 12px; flex-shrink: 0; transition: transform 200ms; }
.lang-picker[aria-expanded="true"] .lang-picker__chevron,
.lang-picker__trigger[aria-expanded="true"] .lang-picker__chevron { transform: rotate(180deg); }

.lang-picker__trigger:hover {
  border-color: #c5d5e0;
  color: var(--nav-ink);
  background: #f8fafc;
}

.lang-picker--up .lang-picker__menu {
  bottom: calc(100% + 6px);
  top: auto;
}

.lang-picker__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 130px;
  background: #fff;
  border: 1px solid #dde6ef;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(10,37,64,.12);
  padding: 5px;
  list-style: none;
  margin: 0;
  z-index: 2000;
  animation: pi-card-pop .18s cubic-bezier(.16,1,.3,1) both;
}

.lang-picker__opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  font-size: .8rem;
  color: #425466;
  font-weight: 500;
  transition: background 130ms;
}

.lang-picker__opt:hover { background: #f4f8fa; color: #0a2540; }
.lang-picker__opt.is-active { color: #0e9faa; font-weight: 700; background: rgba(14,159,170,.06); }

.lang-picker__opt--disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
.lang-picker__opt--disabled:hover { background: transparent; }

.lang-picker__soon {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 650;
  color: #8fa3b5;
  background: #f0f4f7;
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: .02em;
}

.lang-flag {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
  overflow: hidden;
}

/* ── Giriş Seçici (Login Picker) ─── */
.login-picker {
  position: relative;
}

.login-picker__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--nav-line);
  border-radius: 8px;
  background: transparent;
  color: var(--nav-muted);
  cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms;
}

.login-picker__trigger svg { width: 17px; height: 17px; }

.login-picker__trigger:hover,
.login-picker__trigger[aria-expanded="true"] {
  border-color: #c5d5e0;
  color: var(--nav-ink);
  background: #f8fafc;
}

.login-picker__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 286px;
  background: #fff;
  border: 1px solid #dde6ef;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, .12);
  padding: 7px;
  list-style: none;
  margin: 0;
  z-index: 2000;
  animation: pi-card-pop .18s cubic-bezier(.16, 1, .3, 1) both;
}

.login-picker__menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 9px;
  color: #425466;
  text-decoration: none;
  transition: background 130ms, color 130ms;
}

.login-picker__menu li+li{margin-top:3px}.login-picker__icon{display:grid;place-items:center;width:38px;height:38px;flex:0 0 38px;border-radius:9px}.login-picker__icon svg{width:19px;height:19px}.login-picker__icon--intern{background:#ecf9fa;color:#0e96a0}.login-picker__icon--staff{background:#f1f5fb;color:#315b86}.login-picker__copy{display:block;min-width:0;flex:1}.login-picker__copy strong,.login-picker__copy small{display:block}.login-picker__copy strong{color:#243b53;font-size:13px;font-weight:700;line-height:1.25}.login-picker__copy small{margin-top:3px;color:#8493a5;font-size:10.5px;font-weight:500;line-height:1.3}.login-picker__arrow{width:14px;height:14px;flex:0 0 auto;color:#a5b2c0;transition:transform 140ms,color 140ms}.login-picker__menu a:hover .login-picker__arrow{color:#0e9faa;transform:translateX(2px)}

.login-picker__menu a:hover {
  background: #f4f8fa;
  color: #0e9faa;
}

/* ── Search overlay ───────────────────────────────────────────── */

/* ── Arama paneli — header altında, tam genişlik ──── */
.search-panel {
  position: absolute;
  top: 100%; /* Her zaman header'ın tam alt hizasından başlar, üstteki şeritlerden etkilenmez */
  left: 0;
  right: 0;
  z-index: 8000;
  pointer-events: none;
}

.search-panel.is-open { pointer-events: auto; }

.search-panel__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e8eef5;
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 36px rgba(10,37,64,.1);
  transform: translateY(-6px);
  opacity: 0;
  transition:
    transform 220ms cubic-bezier(.16,1,.3,1),
    opacity 180ms ease;
}

.search-panel.is-open .search-panel__inner {
  transform: translateY(0);
  opacity: 1;
}

/* Form satırı */
.search-panel__form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid #f0f4f8;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
}

.search-panel__form > svg { flex-shrink: 0; color: #1098a2; }

.search-panel__form input {
  flex: 1;
  height: 44px;
  border: 0;
  background: transparent;
  color: #0a2540;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  outline: none;
}

.search-panel__form input::placeholder { color: #b8c8d8; }

.search-panel__close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  background: transparent;
  color: #7a8fa3;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}

.search-panel__close:hover { background: #f4f7fa; color: #0a2540; }

/* Bölümler */
.search-panel__section {
  padding: 12px clamp(16px,4vw,40px);
  border-top: 1px solid #f0f4f8;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
}

.search-panel__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.search-panel__section-head > span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #7a8fa3;
  text-transform: uppercase;
}

.search-panel__clear {
  border: 0;
  background: none;
  font: inherit;
  font-size: .72rem;
  font-weight: 600;
  color: #0e9faa;
  cursor: pointer;
  padding: 0;
}

.search-panel__clear:hover { text-decoration: underline; }

/* Son aramalar listesi */
.search-panel__recent-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-recent-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .14s;
}

.sp-recent-item:hover { background: #f4f8fb; }

.sp-recent-item svg { flex-shrink: 0; color: #b0bec8; }

.sp-recent-item span {
  flex: 1;
  font-size: .88rem;
  color: #2c4260;
}

.sp-recent-remove {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border: 1px solid #e4ecf2;
  background: #f4f7fa;
  color: #8fa3b5;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background .14s, color .14s, border-color .14s;
}

.sp-recent-remove:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

/* Popüler chip'ler */
.search-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.search-panel__chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid #e4ecf2;
  background: #f8fafc;
  color: #425466;
  font-size: .74rem;
  font-weight: 550;
  text-decoration: none;
  transition: background .14s, border-color .14s, color .14s;
}

.search-panel__chip:hover {
  background: #ddf0f2;
  border-color: #9ed5da;
  color: #0e9faa;
}

/* Backdrop — sadece tıklama yakalar, karartmaz */
.search-panel__backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.search-panel.is-open .search-panel__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--nav-radius);
  background: var(--nav-brand);
  color: #fff !important;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: background-color var(--nav-transition), box-shadow var(--nav-transition);
}

.nav-cta:hover {
  background: var(--nav-brand-dark);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(16,152,162,.28);
}

/* ── Backdrop ── */
.nav-backdrop {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 1100;
  background: rgba(10, 37, 64, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(0);
  transition:
    opacity 320ms var(--nav-ease-out),
    visibility 320ms var(--nav-ease-out),
    backdrop-filter 320ms var(--nav-ease-out);
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(2px);
}

/* ── Mega dropdown ─────────────────────────────────────────────────── */

.dropdown-menu.mega {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  left: 50%;
  width: min(1180px, 96vw);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition:
    opacity 240ms var(--nav-ease-out),
    transform 300ms var(--nav-ease-out),
    visibility 240ms var(--nav-ease-out);
}

.dropdown.open .dropdown-menu.mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-shell {
  border-radius: 14px;
  border: 1px solid #e4ecf2;
  background: #fff;
  box-shadow:
    0 4px 6px rgba(10,37,64,.04),
    0 20px 48px -8px rgba(10,37,64,.14);
  max-height: calc(100vh - var(--nav-h) - 32px);
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(7,143,157,.28) transparent;
}

.mega-shell::-webkit-scrollbar { width: 5px; }
.mega-shell::-webkit-scrollbar-track { background: transparent; }
.mega-shell::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(7,143,157,.24); }

/* Top accent — teal çizgi */
.mega-rainbow {
  height: 3px;
  background: linear-gradient(90deg, #0e9faa 0%, rgba(14,159,170,.3) 60%, transparent 100%);
  border-radius: 14px 14px 0 0;
}

/* ── Columns layout ──────────────────────────────────────────────── */

.mega-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  padding: clamp(20px, 2.5vw, 28px) 16px clamp(14px, 1.5vw, 20px);
}

.mega-col {
  --col-accent: #0e9faa;
  padding: 18px 18px 20px;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 10px;
}

/* tüm kolonlar aynı marka rengi */
.mega-col--0,
.mega-col--1,
.mega-col--2,
.mega-col--3 { --col-accent: #0e9faa; }

/* Column head */
.mega-col__head {
  padding: 2px 2px 14px;
  margin-bottom: 12px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, rgba(14,159,170,0), var(--col-accent), rgba(14,159,170,0)) 1;
}

.mega-col__num {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--col-accent);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  opacity: .55;
}

.mega-col__title {
  display: inline-block;
  margin: 0 0 3px;
  color: var(--col-accent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity .15s;
}
a.mega-col__title:hover { opacity: .7; }

.mega-col__lead {
  margin: 0;
  color: #8fa3b5;
  font-size: .67rem;
  line-height: 1.45;
  max-width: 26ch;
}

/* Links list */
.mega-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
}

.mega-col__link {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 48px;
  padding: 9px 12px 9px 16px;
  border-radius: 8px;
  align-content: center;
  text-decoration: none;
  transition:
    background-color 180ms var(--nav-ease-out),
    transform 180ms var(--nav-ease-out);
}

.mega-col__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: var(--col-accent);
  opacity: 0;
  transform: scaleY(.4);
  transform-origin: center;
  transition: opacity 180ms var(--nav-ease-out), transform 180ms var(--nav-ease-out);
}

.mega-col__link:hover {
  background: linear-gradient(90deg, color-mix(in srgb, var(--col-accent) 10%, transparent), transparent 70%);
  transform: translateX(3px);
}

.mega-col__link:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.mega-col__link-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1c2e42;
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.35;
}

.mega-col__link:hover .mega-col__link-title {
  color: var(--col-accent);
}

.mega-col__link-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #6b7d92;
  font-size: .69rem;
  font-weight: 450;
  line-height: 1.4;
  letter-spacing: 0;
}

.mega-col__more-item {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dashed #e8eef5;
}

.mega-col__more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--col-accent);
  font-size: .75rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 180ms var(--nav-ease-out);
}

.mega-col__more-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 180ms var(--nav-ease-out);
}

.mega-col__more-link:hover {
  background: color-mix(in srgb, var(--col-accent) 7%, #f8fafc);
}

.mega-col__more-link:hover svg {
  transform: translateX(3px);
}

.mega-col__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 3px;
  background: color-mix(in srgb, var(--col-accent) 14%, #eef8fa);
  color: var(--col-accent);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Staggered link animation on open */
.dropdown.open .mega-col__link {
  animation: navLinkIn 360ms var(--nav-ease-out) both;
}
.dropdown.open .mega-col__link:nth-child(1) { animation-delay: 60ms; }
.dropdown.open .mega-col__link:nth-child(2) { animation-delay: 100ms; }
.dropdown.open .mega-col__link:nth-child(3) { animation-delay: 140ms; }
.dropdown.open .mega-col__link:nth-child(4) { animation-delay: 180ms; }
.dropdown.open .mega-col__link:nth-child(5) { animation-delay: 220ms; }
.dropdown.open .mega-col__link:nth-child(n+6) { animation-delay: 260ms; }

/* Mega menu page overview — menu cardsından önce gelen ana yönlendirme */
.mega-overview-wrap {
  padding: 16px 16px 0;
}

.mega-overview {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid rgba(14,159,170,.2);
  border-radius: 10px;
  background: linear-gradient(105deg, rgba(14,159,170,.09), rgba(14,159,170,.025) 58%, #fff 100%);
  color: #1c2e42;
  text-decoration: none;
  box-shadow: 0 8px 22px -18px rgba(8,105,119,.8);
  transition: border-color 180ms var(--nav-ease-out), box-shadow 180ms var(--nav-ease-out), transform 180ms var(--nav-ease-out);
}

.mega-overview__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid rgba(14,159,170,.2);
  color: var(--nav-brand);
}

.mega-overview__icon svg {
  width: 20px;
  height: 20px;
}

.mega-overview__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mega-overview__eyebrow {
  color: var(--nav-brand);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-overview__copy strong {
  color: #152b42;
  font-size: .88rem;
  line-height: 1.3;
}

.mega-overview__copy > span:last-child {
  color: #6f8296;
  font-size: .7rem;
  line-height: 1.4;
}

.mega-overview__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--nav-brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 7px 16px -10px rgba(7,143,157,.9);
  transition: background-color 180ms var(--nav-ease-out);
}

.mega-overview__action svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms var(--nav-ease-out);
}

.mega-overview:hover,
.mega-overview:focus-visible {
  border-color: rgba(14,159,170,.48);
  box-shadow: 0 14px 30px -20px rgba(8,105,119,.85);
  transform: translateY(-1px);
}

.mega-overview:hover .mega-overview__action,
.mega-overview:focus-visible .mega-overview__action {
  background: var(--nav-brand-dark);
}

.mega-overview:hover .mega-overview__action svg,
.mega-overview:focus-visible .mega-overview__action svg {
  transform: translateX(3px);
}

/* ── Mobile toggle ── */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--nav-line);
  border-radius: var(--nav-radius);
  background: var(--nav-surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--nav-ink);
  transition: transform var(--nav-transition), opacity var(--nav-transition);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 1360px) {
  .menu {
    max-width: 860px;
    margin-left: clamp(28px, 4vw, 64px);
    gap: 20px;
  }

  .menu-primary > a,
  .menu-primary .dropdown-toggle {
    padding: 0 11px;
    font-size: 13px;
  }
}

@media (max-width: 1220px) {
  :root {
    --nav-h: 60px;
  }

  .menu-toggle {
    display: inline-flex;
    order: -1; /* hamburger SOL tarafa geçsin */
  }

  .nav-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: var(--nav-h);
    padding: 0 4px;
  }

  /* Brand: flex-1 ile ortaya/sola yayılsın */
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
  }

  /* menu-toggle SOL'da, brand sağında */

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    margin: 0;
    max-width: none;
    padding: 14px;
    border: 1px solid var(--nav-line);
    border-radius: var(--nav-radius);
    background: var(--nav-surface);
    box-shadow: var(--nav-shadow);
    max-height: min(78vh, 640px);
    overflow-y: auto;
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    transition:
      opacity 280ms var(--nav-ease-out),
      transform 340ms var(--nav-ease-out),
      visibility 280ms var(--nav-ease-out);
  }

  .js .menu {
    display: flex;
  }

  .js .menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    animation: navMenuIn 360ms var(--nav-ease-out);
  }

  .menu-primary {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .menu-primary > a,
  .menu-primary .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    height: auto;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--nav-line);
    border-radius: var(--nav-radius);
    background: var(--nav-surface-soft);
    font-size: 15px;
  }

  .menu-primary > a::after,
  .menu-primary > a::before,
  .menu-primary .dropdown-toggle::before {
    display: none;
  }

  .menu-aux {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }

  .search-wrap { order: 0; }
  .lang-switch { order: 1; }

  .nav-cta {
    order: 2;
    justify-content: center;
    height: 40px;
    font-size: 13px;
    padding: 0 14px;
  }

  .nav-backdrop {
    display: none !important;
  }

  .dropdown-menu.mega {
    position: static;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    overflow: hidden;
    transition:
      grid-template-rows 400ms var(--nav-ease-out),
      margin 320ms var(--nav-ease-out);
  }

  .dropdown.open .dropdown-menu.mega {
    grid-template-rows: 1fr;
    margin-top: 8px;
  }

  .dropdown-menu.mega .mega-shell {
    min-height: 0;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mega-shell {
    border: 1px solid var(--nav-line);
    border-radius: var(--nav-radius);
    box-shadow: none;
    max-height: none;
    overflow: hidden;
  }

  .mega-rainbow {
    border-radius: var(--nav-radius) var(--nav-radius) 0 0;
    animation: navAccentDraw 360ms var(--nav-ease-out) both;
    transform: none;
    transform-origin: initial;
  }

  .mega-cols {
    grid-template-columns: 1fr;
    padding: 6px 0 8px;
  }

  .mega-col {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid #f0f4f8;
  }

  .mega-col:last-child {
    border-bottom: 0;
  }

  .mega-col__head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 8px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 8px;
  }

  .mega-col__num {
    margin: 0;
    font-size: .6rem;
  }

  .mega-col__title {
    margin: 0;
    font-size: .88rem;
  }

  .mega-col__lead {
    display: none;
  }

  .mega-col__list {
    gap: 0;
  }

  .mega-col__link {
    padding: 8px 8px;
  }

  .mega-overview-wrap {
    padding: 10px 10px 0;
  }

  .mega-overview {
    min-height: 62px;
    padding: 10px;
  }

  .search-wrap.open .nav-search {
    position: static;
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .menu-aux:has(.search-wrap.open) {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile actions (hamburger kapalıyken nav-row'da görünür) ── */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-mobile-search {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e4ebf2;
  border-radius: 8px;
  color: #566478;
  transition: border-color .2s, color .2s;
}
.nav-mobile-search:hover { border-color: #1098a2; color: #1098a2; }
.nav-mobile-search svg { width: 17px; height: 17px; }

.nav-mob-cta {
  display: none !important;
}

/* ── Mob menu head (drawer içinde) ──────────────────────────── */
.mob-menu-head {
  display: none;
}

/* ── Mob menu footer ─────────────────────────────────────────── */
.mob-menu-footer {
  display: none;
}

/* ── Mobile 760px ────────────────────────────────────────────── */
@media (max-width: 760px) {
  :root { --nav-h: 58px; }

  .nav__bar { background: #fff; }

  /* Hamburger: compact, solda */
  .menu-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid #e4ebf2;
    border-radius: 8px;
    flex-shrink: 0;
    order: -1;
  }

  /* Brand: hamburger'ın sağında, inline */
  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo { height: 28px; }

  .brand-text-wrap {
    position: static;
    transform: none;
    text-align: left;
    min-width: 0;
  }

  .brand-title { font-size: 13px; font-weight: 750; letter-spacing: .06em; white-space: nowrap; }
  .brand-sub { display: block; font-size: 8.5px; white-space: nowrap; }

  /* Mobile actions sağ tarafa çıkar */
  .nav-mobile-actions { display: flex; }

  /* Desktop search/lang/cta gizle */
  .search-wrap,
  .lang-switch,
  .nav-cta:not(.nav-mob-cta) { display: none; }

  /* ── DRAWER MENU ── */
  .menu {
    /* Full-screen drawer - sol taraftan slide */
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100dvh;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1400;
    background: #fff;

    /* Animate from left */
    opacity: 1 !important;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
    transform-origin: left center;
    transition:
      transform 320ms cubic-bezier(.2,.7,.2,1),
      visibility 320ms;

    display: flex;
    flex-direction: column;
  }

  .js .menu { display: flex; }

  .js .menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    animation: none;
  }

  /* ── Drawer: header ── */
  .mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    min-height: 60px;
    border-bottom: 1px solid #e8eef5;
    flex-shrink: 0;
  }

  .mob-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a2540;
    font-size: 16px;
    font-weight: 750;
    letter-spacing: .06em;
    text-decoration: none;
  }

  .mob-menu-brand img { height: 32px; }

  .mob-menu-close {
    /* X buton */
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    background: transparent;
    color: #566478;
    flex-shrink: 0;
    /* span'ları gizle */
  }

  .mob-menu-close span { display: none !important; }
  .mob-menu-close svg { width: 18px; height: 18px; display: block; }

  /* ── Drawer: nav links ── */
  .menu-primary {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px;
    flex-shrink: 0;
  }

  .menu-primary > a,
  .menu-primary .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #0a2540;
    font-size: 16px;
    font-weight: 600;
    transition: background .18s;
  }

  .menu-primary > a:hover,
  .menu-primary .dropdown-toggle:hover {
    background: #f4f7f9;
  }

  .menu-primary > a.on { color: #1098a2; }

  /* Dropdown arrow for mega items */
  .menu-primary .dropdown-toggle::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translateY(-2px);
    opacity: .4;
  }

  /* Mega menu inside drawer */
  .dropdown-menu.mega {
    position: static;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    overflow: hidden;
    transition: grid-template-rows 360ms cubic-bezier(.2,.7,.2,1),
                margin 280ms cubic-bezier(.2,.7,.2,1);
    margin: 0;
  }

  .dropdown.open .dropdown-menu.mega {
    grid-template-rows: 1fr;
    margin: 4px 0 8px;
  }

  .mega-shell {
    border: 1px solid #e8eef5;
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
    max-height: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mega-rainbow { display: none; }

  .mega-cols {
    grid-template-columns: 1fr;
    padding: 4px 0 6px;
  }

  .mega-col {
    padding: 10px 14px;
    border-right: none;
    border-bottom: 1px solid #f0f4f8;
  }
  .mega-col:last-child { border-bottom: none; }

  .mega-col__head {
    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--col-accent) 5%, #f8fafc);
  }

  .mega-col__lead { display: none; }

  .mega-col__link { padding: 7px 8px; }

  .mega-overview-wrap {
    padding: 8px 8px 2px;
  }

  .mega-overview {
    min-height: 58px;
    padding: 9px;
  }

  .mega-overview__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .mega-overview__copy > span:last-child {
    display: none;
  }

  .mega-overview__action {
    padding: 8px 9px;
    font-size: 0;
  }

  .mega-overview__action svg {
    width: 16px;
    height: 16px;
  }

  /* ── Drawer: menu-aux gizle ── */
  .menu-aux { display: none; }

  /* ── Drawer: footer ── */
  .mob-menu-footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    border-top: 1px solid #e8eef5;
    flex-shrink: 0;
  }

  .mob-quick-links {
    display: flex;
    flex-direction: column;
  }

  .mob-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f4f8;
    color: #3a5168;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s;
  }

  .mob-quick-link:hover { background: #f8fafc; }

  .mob-quick-link svg:first-child {
    width: 20px; height: 20px;
    opacity: .55;
    flex-shrink: 0;
    color: #566478;
  }

  .mob-quick-link span { flex: 1; }

  .mob-chevron {
    width: 16px; height: 16px;
    opacity: .3;
    flex-shrink: 0;
  }

  .mob-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px;
    height: 52px;
    border-radius: 14px;
    background: #1098a2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
  }

  .mob-cta-btn:hover { background: #0c7f8c; color: #fff; }
  .mob-cta-btn svg { width: 18px; height: 18px; }

  /* Backdrop */
  .nav-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,.4);
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(2px);
    transition: opacity .32s, visibility .32s;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__bar,
  .dropdown-menu.mega,
  .mega-shell,
  .mega-rainbow,
  .mega-col__link,
  .menu-toggle span,
  .menu,
  .nav-backdrop {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .dropdown.open .mega-col__link {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBİL DRAWER — header'ın dışında, backdrop-filter'dan bağımsız
   Modarenta referansı: tam ekran, sol dan slide, solid white
════════════════════════════════════════════════════════════════════ */

/* ── Mobil Drawer — Modarenta tarzı tam ekran ──────────────────── */

.mob-drawer { display: none; }

@media (max-width: 760px) {

  /* Drawer wrapper */
  .mob-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1999;
    pointer-events: none;
  }

  .mob-drawer.is-open { pointer-events: auto; }

  /* Backdrop */
  .mob-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,37,64,.48);
    opacity: 0;
    transition: opacity .25s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .mob-drawer.is-open .mob-drawer__backdrop { opacity: 1; }

  /* Panel — tam genişlik */
  .mob-drawer__panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
  }

  .mob-drawer.is-open .mob-drawer__panel { transform: translateX(0); }

  /* HEAD */
  .mob-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e8eef5;
    flex-shrink: 0;
  }

  .mob-drawer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .mob-drawer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mob-drawer__brand strong {
    font-size: 15px;
    font-weight: 750;
    color: #0a2540;
    letter-spacing: .06em;
    line-height: 1;
  }

  .mob-drawer__brand small {
    font-size: 9.5px;
    color: #8fa3b5;
    font-weight: 500;
    line-height: 1;
  }

  .mob-drawer__close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e4ecf2;
    border-radius: 8px;
    background: transparent;
    color: #566478;
    cursor: pointer;
    transition: all .18s;
    flex-shrink: 0;
  }

  .mob-drawer__close:hover {
    border-color: #1098a2;
    color: #1098a2;
    background: rgba(16,152,162,.06);
  }

  /* BODY */
  .mob-drawer__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
  }

  /* ── Drill-down nav ─── */
  .mob-drill {
    flex: 1;
    overflow: hidden;
    position: relative;
  }

  .mob-drill__panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    transform: translateX(100%);
    transition: transform .26s cubic-bezier(.4,0,.2,1);
    visibility: hidden;
  }

  .mob-drill__panel.is-active {
    transform: translateX(0);
    visibility: visible;
  }

  .mob-drill__panel.is-behind {
    transform: translateX(-30%);
    visibility: visible;
  }

  /* Her satır — hem link hem buton aynı stilde */
  .mob-drill__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-bottom: 1px solid #f0f4f8;
    background: #fff;
    color: #0a2540;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background .14s, color .14s;
  }

  .mob-drill__item:hover { background: #f4fbfc; color: #0e9faa; }
  .mob-drill__item svg { flex-shrink: 0; color: #c4d0db; }
  .mob-drill__item:hover svg { color: #0e9faa; }

  /* Geri butonu */
  .mob-drill__back {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-bottom: 2px solid #e4ecf2;
    background: #f4f7fa;
    color: #0e9faa;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: -.01em;
  }

  .mob-drill__back svg { flex-shrink: 0; }

  /* Badge */
  .mob-drill__badge {
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(14,159,170,.12);
    color: #0e9faa;
    font-size: .58rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
    flex-shrink: 0;
  }

  /* ── Accordion nav ───────────────────────────── */
  .mob-acc-nav { flex-shrink: 0; }

  /* Accordion item */
  .mob-acc-item {
    border-bottom: 1px solid #f0f4f8;
  }

  .mob-acc-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background .14s, color .14s;
  }

  .mob-acc-item__head::-webkit-details-marker { display: none; }
  .mob-acc-item__head:hover { background: #f6fbfc; color: #0e9faa; }

  .mob-acc-item__chevron {
    flex-shrink: 0;
    color: #b0bec8;
    transition: transform .22s ease;
  }

  .mob-acc-item[open] > .mob-acc-item__head { color: #0e9faa; }
  .mob-acc-item[open] > .mob-acc-item__head .mob-acc-item__chevron {
    transform: rotate(180deg);
    color: #0e9faa;
  }

  /* Açılan içerik */
  .mob-acc-item__body {
    background: #f8fafc;
    padding: 4px 0 10px;
    border-top: 1px solid #e8eef5;
  }

  .mob-acc-item__overview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 9px 8px;
    padding: 10px 11px;
    border: 1px solid rgba(14,159,170,.22);
    border-radius: 11px;
    background: linear-gradient(105deg, #fff 0%, #eef9fa 100%);
    color: #17334d;
    text-decoration: none;
    box-shadow: 0 5px 16px rgba(18,71,91,.05);
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
  }

  .mob-acc-item__overview:hover {
    border-color: rgba(14,159,170,.48);
    box-shadow: 0 8px 20px rgba(18,71,91,.09);
    transform: translateY(-1px);
  }

  .mob-acc-item__overview-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 9px;
    background: #e1f5f6;
    color: #0797a3;
  }

  .mob-acc-item__overview-icon svg { width: 17px; height: 17px; }
  .mob-acc-item__overview-copy { min-width: 0; flex: 1; }
  .mob-acc-item__overview-copy small,
  .mob-acc-item__overview-copy strong { display: block; }
  .mob-acc-item__overview-copy small {
    margin-bottom: 2px;
    color: #0797a3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
  }
  .mob-acc-item__overview-copy strong {
    overflow: hidden;
    color: #17334d;
    font-size: 12.5px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mob-acc-item__overview-arrow { width: 16px; height: 16px; flex: 0 0 16px; color: #0797a3; }

  .mob-acc-item__group-label {
    display: block;
    padding: 10px 20px 4px;
    font-size: .6rem;
    font-weight: 750;
    letter-spacing: .12em;
    color: #94a3b8;
    text-transform: uppercase;
  }

  .mob-acc-item__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    color: #2c4260;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .12s, color .12s;
  }

  .mob-acc-item__link:hover { background: #e8f5f6; color: #0e9faa; }

  .mob-acc-item__badge {
    margin-left: auto;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(14,159,170,.12);
    color: #0e9faa;
    font-size: .58rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
    flex-shrink: 0;
  }

  /* Düz link (accordion olmayan) */
  .mob-acc-item__plain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    text-decoration: none;
    border-bottom: 1px solid #f0f4f8;
    transition: background .14s, color .14s;
  }

  .mob-acc-item__plain:hover { background: #f6fbfc; color: #0e9faa; }
  .mob-acc-item__plain svg { color: #c4d0db; flex-shrink: 0; }

  /* ── İç tab sistemi (Hizmetlerimiz gibi çok gruplu) ── */
  .mob-itab {
    display: flex;
    height: 260px;
    border-top: 1px solid #e8eef5;
  }

  .mob-itab__sidebar {
    flex: 0 0 110px;
    background: #f4f7fa;
    border-right: 1px solid #e4ecf2;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
    padding: 4px 0;
  }

  .mob-itab__sidebar::-webkit-scrollbar { display: none; }

  .mob-itab__tab {
    width: 100%;
    padding: 13px 10px 13px 12px;
    border: none;
    border-left: 3px solid transparent;
    background: transparent;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.3;
    color: #425466;
    text-align: left;
    cursor: pointer;
    transition: color .15s, background .15s, border-color .15s;
  }

  .mob-itab__tab.is-active {
    color: #0e9faa;
    font-weight: 650;
    background: #fff;
    border-left-color: #0e9faa;
  }

  .mob-itab__content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    background: #fff;
  }

  .mob-itab__panel {
    display: none;
    height: 100%;
    overflow-y: auto;
    padding: 8px;
    scrollbar-width: none;
  }

  .mob-itab__panel::-webkit-scrollbar { display: none; }

  .mob-itab__panel.is-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: 6px;
  }

  .mob-itab__link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 10px 8px;
    border-radius: 10px;
    border: 1px solid #e8eef5;
    background: #fff;
    color: #2c4260;
    font-size: 12px;
    font-weight: 550;
    line-height: 1.35;
    text-decoration: none;
    min-height: 54px;
    transition: background .14s, border-color .14s, color .14s;
    gap: 6px;
  }

  .mob-itab__link span { flex: 1; }
  .mob-itab__link svg { align-self: flex-end; color: #d0dae3; }
  .mob-itab__link:hover {
    background: #eef7f8;
    border-color: #a8dde1;
    color: #0e9faa;
  }
  .mob-itab__link:hover svg { color: #0e9faa; }

  /* Eski stiller gizle */
  .mob-acc { display: none; }
  .mob-drawer__nav { display: none; }
  .mob-drill { display: none; }

  /* Düz link */
  .mob-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    text-decoration: none;
    border-bottom: 1px solid #f0f4f8;
    transition: color .15s, background .15s;
  }

  .mob-drawer__link:hover { color: #0e9faa; background: #f6fbfc; }
  .mob-drawer__link svg { color: #c4d0db; flex-shrink: 0; }

  /* Accordion */
  .mob-acc {
    border-bottom: 1px solid #f0f4f8;
  }

  .mob-acc__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    cursor: pointer;
    list-style: none;
    transition: color .15s, background .15s;
  }

  .mob-acc__toggle::-webkit-details-marker { display: none; }
  .mob-acc__toggle:hover { color: #0e9faa; background: #f6fbfc; }

  .mob-acc__chevron {
    flex-shrink: 0;
    color: #b0bec8;
    transition: transform .22s ease;
  }

  .mob-acc[open] .mob-acc__toggle { color: #0e9faa; }
  .mob-acc[open] .mob-acc__chevron { transform: rotate(180deg); }

  /* Açılan içerik */
  .mob-acc__body {
    background: #f8fafc;
    padding: 4px 0 8px;
    border-top: 1px solid #e8eef5;
  }

  .mob-acc__group {
    padding: 8px 20px 4px;
  }

  .mob-acc__group-label {
    display: block;
    padding: 4px 0 6px;
    font-size: .62rem;
    font-weight: 750;
    letter-spacing: .12em;
    color: #94a3b8;
    text-transform: uppercase;
  }

  .mob-acc__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 8px;
    border-radius: 7px;
    color: #2c4260;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background .13s, color .13s;
  }

  .mob-acc__link:hover { background: #e8f5f6; color: #0e9faa; }

  .mob-acc__badge {
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(14,159,170,.12);
    color: #0e9faa;
    font-size: .58rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
    flex-shrink: 0;
  }

  /* FOOT */
  .mob-drawer__foot {
    flex-shrink: 0;
    padding: 14px 20px 18px;
    border-top: 1px solid #e8eef5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
  }

  /* Giriş alt menüsü — Giriş butonuyla açılır */
  .mob-drawer__login-sheet {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: mobLoginSheetIn .22s cubic-bezier(.2,.7,.2,1);
  }
  .mob-drawer__login-sheet[hidden] { display: none; }
  .mob-drawer__login-sheet .mob-drawer__login-link { flex: 0 0 auto; }

  @keyframes mobLoginSheetIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Aksiyon satırı: Giriş + Randevu Al yan yana */
  .mob-drawer__actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }

  .mob-drawer__login-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 18px;
    min-height: 50px;
    border: 1px solid #cfe0e6;
    border-radius: 10px;
    background: #fff;
    color: #0a2540;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .18s, background .18s, color .18s;
  }
  .mob-drawer__login-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .mob-drawer__login-btn[aria-expanded="true"] {
    border-color: #1098a2;
    background: #f0fafb;
    color: #0c7f8c;
  }

  .mob-drawer__cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 15px;
    border-radius: 10px;
    background: #1098a2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
  }

  .mob-drawer__cta:hover { background: #0c7f8c; color: #fff; }
  .mob-drawer__cta svg { flex-shrink: 0; }

  /* Dil — sade mini satır */
  .mob-drawer__lang-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 2px;
  }
  .mob-drawer__lang-chip {
    border: 0;
    background: none;
    padding: 4px 9px;
    border-radius: 6px;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    color: #9aa8b6;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
  }
  .mob-drawer__lang-chip.is-active { background: #eef5f6; color: #0c7f8c; }
  .mob-drawer__lang-chip:disabled { cursor: not-allowed; }
  .mob-drawer__lang-chip em {
    font-style: normal;
    font-size: 9.5px;
    font-weight: 700;
    color: #aeb9c6;
    margin-left: 4px;
  }
  .mob-drawer__lang-dot { color: #cbd6e0; font-size: 12px; }

}
