/* =========================================================================
   BAX Menajerlik — Tek dosya, temiz CSS
   - Custom properties ile tema
   - BEM benzeri sade isimlendirme
   - Mobil-first
   ========================================================================= */

/* --- Tasarim sistemi ----------------------------------------------------- */
:root {
  --bg:           #06082a;
  --bg-2:         #0a0d34;
  --card:         #0d1140;
  --card-2:       #131967;
  --line:         rgba(255,255,255,.08);
  --line-strong:  rgba(255,255,255,.16);

  --brand:        #0066ff;
  --brand-soft:   #1f6dff;
  --brand-deep:   #001a55;

  --text:         #ffffff;
  --muted:        #b9c2ff;
  --muted-2:      #8a93c5;

  --danger:       #ff4f6e;
  --success:      #2ecc71;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-1: 0 4px 18px rgba(0,0,0,.35);
  --shadow-2: 0 14px 40px rgba(0,0,0,.45);

  --container: 1200px;
  --topbar-h:  40px;
  --header-h:  76px;
  --site-header-total: calc(var(--topbar-h) + var(--header-h));

  --font:      "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Yardimcilar --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding: 80px 0; }
.section--tight { padding: 60px 0; }
.section-eyebrow {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.15;
}
.section-title em { color: var(--brand); font-style: normal; }
.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}
.text-center { text-align: center; }
.muted { color: var(--muted); }

/* --- Premium reveal animations (Hizmetlerimiz / Hakkimizda) ------------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .65s cubic-bezier(.22, .61, .36, 1),
    transform .65s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal--up { transform: translate3d(0, 18px, 0); }
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Kartlarda daha premium hover hissi */
.cards .card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .38);
  border-color: rgba(0, 102, 255, .35);
}
.cards .card .card__media {
  transition: transform .45s ease, filter .3s ease;
}
.cards .card:hover .card__media {
  transform: scale(1.03);
  filter: saturate(1.05);
}

/* Basliklarda ince vurgu cizgisi */
.section-title {
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(0, 102, 255, 0) 100%);
  opacity: .85;
}
.text-center .section-title::after {
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .cards .card,
  .cards .card .card__media {
    transition: none !important;
    transform: none !important;
  }
  .reveal { opacity: 1 !important; }
}

/* --- Butonlar ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
  box-shadow: 0 8px 22px rgba(0,102,255,.35);
}
.btn:hover { background: var(--brand-soft); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  box-shadow: none;
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); }
.btn--danger { background: var(--danger); box-shadow: 0 8px 22px rgba(255,79,110,.3); }
.btn--success { background: var(--success); box-shadow: 0 8px 22px rgba(46,204,113,.3); }
.btn--small { padding: 8px 14px; font-size: 11px; letter-spacing: 1px; }

/* --- Header -------------------------------------------------------------- */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 80;
}
.site-topbar {
  height: var(--topbar-h);
  background: linear-gradient(90deg, #0052e0 0%, var(--brand) 50%, #0088ff 100%);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
}
.site-topbar__tag { opacity: .95; }
.site-topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-topbar__right a[href^="mailto"] {
  color: #fff;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: none;
  font-size: 13px;
}
.site-topbar__right a[href^="mailto"]:hover { text-decoration: underline; }
.site-topbar__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0,0,0,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s ease, border-color .2s ease;
}
.site-topbar__search:hover {
  background: rgba(0,0,0,.2);
  border-color: rgba(255,255,255,.35);
}
.site-topbar__search svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .site-topbar__tag { display: none; }
  .site-topbar__right a[href^="mailto"] { font-size: 11px; }
}

.site-header {
  position: relative;
  background: rgba(10,12,38,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
}
.site-header__logo img { height: 38px; width: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 8px; }
.site-nav a {
  display: inline-block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--muted-2);
  border-radius: 8px;
  transition: all .2s ease;
}
.site-nav a:hover { 
  color: #fff;
  background: rgba(0,102,255,.12);
}
.site-nav a.is-active { 
  color: #fff; 
  background: var(--brand);
  box-shadow: 0 4px 12px rgba(0,102,255,.3);
}
.site-nav__item--mekanlar { display: none; }
.site-header__cta {
  margin-left: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  padding: 12px 22px;
  border-radius: 4px;
}
.site-header__cta.is-active {
  box-shadow: 0 0 0 2px rgba(255,255,255,.25);
}
.btn--nav-cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  border-radius: 4px;
}
.menu-toggle {
  display: none;
  width: 44px; 
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  align-items: center; 
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.menu-toggle:hover {
  background: rgba(0,102,255,.08);
  border-color: var(--brand-soft);
}
.menu-toggle span {
  display: block; 
  width: 20px; 
  height: 2px;
  background: #fff; 
  position: relative;
  transition: background .2s ease;
}
.menu-toggle span::before, .menu-toggle span::after {
  content:""; 
  position: absolute; 
  left: 0; 
  right: 0;
  height: 2px; 
  background: #fff;
  transition: top .3s ease, transform .3s ease;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top:  7px; }

@media (max-width: 980px) {
  .site-header__inner { gap: 10px; }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }
  .site-header__cta {
    display: inline-flex;
    order: 3;
    margin-left: 0;
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 1.6px;
    border-radius: 8px;
    white-space: nowrap;
  }
  .site-nav__item--mekanlar { display: block; list-style: none; }
  .site-nav {
    position: fixed; inset: var(--site-header-total) 0 auto 0;
    background: rgba(6,8,42,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0; 
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    margin-left: 0;
  }
  .site-nav.is-open {
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0);
  }
  .site-nav ul { 
    flex-direction: column; 
    padding: 20px; 
    gap: 8px; 
  }
  .site-nav a { 
    display: block; 
    padding: 14px 16px;
    border-radius: 8px;
  }
}
@media (max-width: 420px) {
  .site-header__cta {
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }
}

/* --- Hero Slider --------------------------------------------------------- */
.hero-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-slider-wrapper--home {
  /* tam yükseklik hissi; kontroller için alt boşluk */
  --hero-slide-pad-bottom: clamp(100px, 14vh, 150px);
}
.home-enhanced .hero-slider-wrapper--home::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(40% 35% at 20% 30%, rgba(0, 102, 255, .04), transparent 70%),
    radial-gradient(36% 30% at 80% 70%, rgba(108, 63, 255, .035), transparent 72%);
  pointer-events: none;
  z-index: 1;
  animation: homeGlow 13s ease-in-out infinite alternate;
}

.hero-slider {
  display: flex;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(70px, 12vw, 140px) 0 100px;
  overflow: hidden;
}

.hero-slider--home .hero-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(520px, calc(100svh - var(--site-header-total)), 920px);
  padding-top: clamp(56px, 10vh, 100px);
  padding-bottom: var(--hero-slide-pad-bottom, 100px);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,5,28,.66), rgba(0,26,85,.70));
  z-index: 1;
}

.hero-slider--home .hero-slide__overlay {
  background:
    radial-gradient(ellipse 85% 75% at 75% 45%, rgba(75, 40, 140, .04), transparent 55%),
    radial-gradient(ellipse 70% 60% at 15% 80%, rgba(0, 40, 120, .035), transparent 50%),
    linear-gradient(110deg, rgba(32, 34, 52, .38) 0%, rgba(22, 20, 48, .36) 38%, rgba(12, 14, 36, .38) 100%);
}

.hero-slide__brand {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: min(42vw, 380px);
  opacity: .14;
  pointer-events: none;
}
.hero-slider--home .hero-slide__brand {
  right: 2%;
  width: min(52vw, 500px);
  opacity: .2;
}
.hero-slide__brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1);
}
.hero-slider--home .hero-slide__brand img {
  filter: none;
}

.hero-slide .hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: slideIn .6s ease-out;
}

.hero-slider--home .hero__inner {
  margin-inline: auto;
  text-align: center;
  max-width: 960px;
}
.hero-slider--home .hero__actions {
  justify-content: center;
}
.hero-slider--home .hero__stats {
  justify-items: center;
}
.home-enhanced .hero__stat {
  transition: transform .25s ease, box-shadow .25s ease;
}
.home-enhanced .hero__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, .14);
}

.hero-slide--billboard .hero__sub--billboard-extra,
.hero-slide--billboard .hero__actions--billboard-extra {
  display: none;
}

.hero__title--impact {
  font-size: clamp(40px, 8.5vw, 92px);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .24);
}
.hero__title--impact em { font-style: normal; color: #fff; }
.hero__title-line {
  display: block;
}
.hero__title-line + .hero__title-line {
  margin-top: clamp(4px, 1vw, 12px);
}
.hero__eyebrow--plain {
  background: transparent;
  border: 0;
  padding: 0 0 clamp(14px, 2.5vh, 28px);
  letter-spacing: .28em;
  font-size: clamp(10px, 1.35vw, 13px);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .2);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes homeGlow {
  from { transform: translate3d(-1.5%, -1.5%, 0) scale(1); opacity: .38; }
  to { transform: translate3d(1.5%, 1.5%, 0) scale(1.04); opacity: .52; }
}

.hero-slider__controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 20;
}

.hero-slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.hero-slider__btn:hover {
  background: rgba(0,102,255,.5);
  border-color: var(--brand);
  transform: scale(1.1);
}

.hero-slider__btn svg {
  width: 20px;
  height: 20px;
}

.hero-slider__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.hero-slider__dot:hover {
  background: rgba(255,255,255,.4);
  border-color: rgba(255,255,255,.4);
}

.hero-slider__dot.is-active {
  background: var(--brand);
  border-color: var(--brand);
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .hero-slide {
    padding: clamp(50px, 10vw, 100px) 0 80px;
  }

  .hero-slider--home .hero-slide {
    min-height: clamp(460px, calc(100svh - var(--site-header-total)), 100svh);
    padding-top: clamp(40px, 8vh, 72px);
    padding-bottom: clamp(96px, 14vh, 130px);
  }

  .hero-slider--home .hero-slide__brand {
    width: min(72vw, 320px);
    opacity: .16;
    right: -4%;
  }

  .hero-slider__controls {
    bottom: 20px;
    gap: 16px;
  }

  .hero-slider__btn {
    width: 40px;
    height: 40px;
  }

  .hero-slider__dot {
    width: 8px;
    height: 8px;
  }

  .hero-slider__dot.is-active {
    width: 24px;
  }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(70px, 12vw, 140px) 0 100px;
  background:
    radial-gradient(900px 500px at 110% -10%, rgba(0,102,255,.30), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(0,102,255,.18), transparent 60%),
    linear-gradient(180deg, #03051c 0%, var(--bg) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(0,102,255,.16);
  color: #cfdcff;
  font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(0,102,255,.35);
  margin-bottom: 22px;
}
.hero__title {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.5px;
}
.hero__title em { color: var(--brand); font-style: normal; }
.hero__sub {
  max-width: 620px;
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
}
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  position: relative; z-index: 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.hero__stat {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.hero__stat-num {
  font-size: 38px; font-weight: 900; color: #fff;
}
.hero__stat-num span { color: var(--brand); }
.hero__stat-label {
  font-size: 12px; letter-spacing: 2px; color: var(--muted-2);
  text-transform: uppercase; margin-top: 4px;
}

/* --- Page hero (alt sayfalar) ------------------------------------------- */
.page-hero {
  padding: clamp(44px, 6vw, 80px) 0 clamp(20px, 3.5vw, 36px);
  background:
    radial-gradient(700px 400px at 100% -20%, rgba(0,102,255,.28), transparent 60%),
    linear-gradient(180deg, #03051c 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero + .section {
  padding-top: 48px;
}
.page-hero__title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin: 0; }
.page-hero__title em { color: var(--brand); font-style: normal; }
.page-hero__crumb {
  margin-top: 14px;
  display: inline-flex; gap: 10px; align-items: center;
  color: var(--muted); font-size: 13px;
}
.page-hero__crumb a { color: var(--muted); }
.page-hero__crumb a:hover { color: #fff; }
/* Mekanlar — üst başlık alanını sıkıştır, haritayı yukarı al */
.page-hero--compact {
  padding: clamp(28px, 4vw, 52px) 0 clamp(10px, 2vw, 18px);
}
.page-hero--compact .page-hero__crumb { margin-top: 8px; }
.page-hero__map-title {
  margin: 12px 0 0;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: #fff;
}
.page-hero__map-title em { color: var(--brand); font-style: normal; }

/* Hakkımızda — metin bloğunun altında imza (beyaz çizim / siyah zemin PNG) */
.page-about-signature {
  margin: 32px 0 0;
  padding: 0;
  border: 0;
}
.page-about-signature img {
  display: block;
  height: clamp(52px, 7.5vw, 78px);
  width: auto;
  max-width: min(280px, 100%);
  /* Siyah alan sayfa arka planıyla birleşir; imza çizgisi soft açık gri-beyaz */
  mix-blend-mode: screen;
  opacity: 0.78;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* --- Kart Grid (hizmetler / ilanlar) ------------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: linear-gradient(180deg, var(--card) 0%, #0a0d34 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,102,255,.45);
  box-shadow: var(--shadow-2);
}
.card__media {
  aspect-ratio: 4 / 3;
  background: #050719 center/cover no-repeat;
  position: relative;
}
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55));
}
.card__body { padding: 22px 22px 26px; }
.card__title {
  margin: 0 0 8px;
  font-size: 20px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase;
}
.card__text { color: var(--muted); font-size: 14px; }
.card__more {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand);
  font-weight: 800; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase;
}
.card__more::after { content: "→"; transition: transform .15s ease; }
.card__more:hover::after { transform: translateX(3px); }

/* --- 2 kolon icerik (Hakkimizda) --------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split__media img { border-radius: var(--radius); border: 1px solid var(--line); }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
}
.split p { color: var(--muted); margin: 0 0 14px; }
.split p strong { color: var(--text); }

/* --- Accordion (SSS) ---------------------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.accordion__item.is-open { border-color: rgba(0,102,255,.55); }
.accordion__head {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  font-size: 16px; font-weight: 700;
  text-align: left;
  color: var(--text);
}
.accordion__head .num {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,102,255,.16);
  color: var(--brand);
  font-size: 13px; font-weight: 800;
}
.accordion__head .ico {
  margin-left: auto;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  transition: transform .2s ease, background .2s ease;
}
.accordion__item.is-open .accordion__head .ico {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.accordion__item.is-open .accordion__body { grid-template-rows: 1fr; }
.accordion__body > div { overflow: hidden; }
.accordion__body p {
  padding: 0 22px 18px 70px;
  color: var(--muted);
  margin: 0 0 10px;
}

/* --- Iletisim ------------------------------------------------------------ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; gap: 30px; } }
.contact__info {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.info-row:first-child { border-top: 0; padding-top: 0; }
.info-row__ico {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,102,255,.18);
  color: var(--brand);
  border-radius: 50%;
  flex: 0 0 auto;
  font-size: 18px;
}
.info-row__ico svg {
  width: 20px;
  height: 20px;
}
.info-row__label { font-size: 12px; color: var(--muted-2); letter-spacing: 2px; text-transform: uppercase; }
.info-row__val   { font-size: 16px; font-weight: 700; color: var(--text); margin-top: 2px; }
.info-row__val a { color: var(--text); }

.contact__form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand); background: var(--bg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field-row--triple { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .field-row--triple { grid-template-columns: 1fr; } }
.radio-list {
  display: grid;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.radio-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-transform: none;
  letter-spacing: .2px;
}
.radio-list input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
}
textarea { min-height: 140px; resize: vertical; }

/* --- Slider -------------------------------------------------------------- */
.slider-wrapper {
  position: relative;
  margin-top: 48px;
}

.slider {
  display: flex;
  gap: 24px;
  scroll-behavior: smooth;
  overflow: hidden;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider__item {
  flex: 0 0 100%;
  min-width: 0;
  animation: fadeIn .5s ease-out;
}

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

.testimonial {
  background: linear-gradient(135deg, rgba(13,17,64,.8), rgba(19,25,103,.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial__header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand);
}

.testimonial__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.testimonial__role {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--brand);
}

.testimonial__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
}

.testimonial__rating {
  font-size: 16px;
  letter-spacing: 2px;
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider__btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .2s ease;
  font-weight: 600;
}

.slider__btn:hover {
  background: rgba(0,102,255,.12);
  border-color: var(--brand-soft);
  color: #fff;
}

.slider__btn:active {
  transform: scale(.95);
}

.slider__dots {
  display: flex;
  gap: 8px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  padding: 0;
}

.slider__dot.is-active {
  background: var(--brand);
  width: 24px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 24px;
  }
  
  .testimonial__avatar {
    width: 40px;
    height: 40px;
  }
  
  .slider__controls {
    gap: 16px;
  }
}

/* --- Mekanlar Sayfası ---------------------------------------------------- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.city-btn {
  background: linear-gradient(135deg, rgba(13,17,64,.6), rgba(19,25,103,.6));
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.city-btn:hover {
  background: linear-gradient(135deg, rgba(0,102,255,.2), rgba(31,109,255,.2));
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,102,255,.2);
}

.mekanlar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.mekan-card {
  background: linear-gradient(135deg, rgba(13,17,64,.8), rgba(19,25,103,.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  cursor: pointer;
}

.mekan-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(0,102,255,.2);
}

.mekan-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.mekan-card__body {
  padding: 20px;
}

.mekan-card__name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.mekan-card__city {
  font-size: 13px;
  color: var(--brand);
  margin-bottom: 12px;
}

.mekan-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* --- Modal --------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  z-index: 101;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 102;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.modal__close:hover {
  background: rgba(0,102,255,.3);
  border-color: var(--brand);
}

.modal__header {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__body {
  padding: 32px;
}

.modal__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.modal__description {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.modal__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(0,102,255,.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
}

.info-item span {
  font-size: 14px;
  color: #fff;
}

.modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,102,255,.3);
}

.modal__video {
  width: 100%;
}

@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .mekanlar-grid {
    grid-template-columns: 1fr;
  }

  .modal__content {
    max-width: 100%;
  }

  .modal__body {
    padding: 20px;
  }

  .modal__info {
    grid-template-columns: 1fr;
  }

  .modal__header {
    height: 250px;
  }
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  color: var(--text);
  background: #05051a;
}
.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(180, 0, 120, .16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(0, 150, 255, .2), transparent 50%),
    linear-gradient(165deg, #0a0930 0%, #06051c 45%, #0d0a2e 100%);
  pointer-events: none;
}
.site-footer__bg::before,
.site-footer__bg::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 180%;
  top: -40%;
  background: linear-gradient(180deg, transparent, rgba(0, 200, 255, .12), transparent);
  transform: rotate(12deg);
  filter: blur(2px);
}
.site-footer__bg::before { left: -2%; opacity: .9; }
.site-footer__bg::after {
  right: -2%;
  transform: rotate(-10deg);
  background: linear-gradient(180deg, transparent, rgba(0, 102, 255, .18), transparent);
}

.site-footer__main {
  position: relative;
  z-index: 1;
  padding: 72px 20px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 400px);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .site-footer__main { grid-template-columns: 1fr; padding-top: 56px; }
}

.footer-about__logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}
.footer-about__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  max-width: 48em;
}

.footer-contact__row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}
.footer-contact__row:last-child { margin-bottom: 0; }
.footer-contact__ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,102,255,.12);
  border: 1px solid rgba(0,102,255,.28);
  color: #7ecbff;
}
.footer-contact__ico svg {
  width: 22px;
  height: 22px;
}
.footer-contact__label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.footer-contact__val {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.footer-contact__val a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.footer-contact__val a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.35);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  background: #020212;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 20px;
}
.site-footer__bottom .container {
  display: flex;
  justify-content: center;
  text-align: center;
}
.site-footer__copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .2px;
}

/* Floating WhatsApp */
.site-float-wa {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 75;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.site-float-wa__bubble {
  pointer-events: none;
  background: #fff;
  color: #1a1a2e;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.35;
  max-width: 220px;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.site-float-wa__bubble strong { font-weight: 800; }
.site-float-wa__btn {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.site-float-wa__btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
}
.site-float-wa__btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 520px) {
  .site-float-wa__bubble { display: none; }
  .site-float-wa { right: 14px; bottom: 16px; }
}

/* =========================================================================
   MEKANLAR — Harita, mekan listesi, detay modal, lightbox
   ========================================================================= */
.section.section--map-page {
  padding-top: 4px;
  padding-bottom: 40px;
}
.container--map-wide {
  max-width: min(1200px, calc(100vw - 24px));
}
.map-wrap .map-card__head {
  text-align: center;
  padding: 4px 12px 0;
}
.map-card__title {
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 900;
  margin: 0 0 4px;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
}
.map-card__title em {
  color: var(--brand);
  font-style: normal;
}
.map-card__head .map-card__crumb {
  margin-top: 0;
  margin-bottom: 6px;
  justify-content: center;
}
.map-card__head .map-page__intro {
  margin-bottom: 6px;
}
.map-card__head .map-card__lead {
  font-size: 14px;
  line-height: 1.45;
}
body.page-mekanlar .map-card__head .city-quicknav {
  margin-bottom: 8px;
  margin-inline: auto;
  max-width: 920px;
  gap: 8px;
}
body.page-mekanlar .map-card__head .city-quicknav__btn {
  min-height: 38px;
  padding: 6px 12px;
  font-size: 12px;
}
.section.section--map-page .map-wrap.map-wrap--flush {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0 0 8px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.section.section--map-page .map-wrap.map-wrap--flush .map-wrap__hint {
  margin-bottom: 4px;
  padding-inline: clamp(10px, 2vw, 18px);
}
/* Türkiye haritası — tam kart genişliği, yükseklik ekranın büyük kısmı (oran korunur) */
.section.section--map-page #map-view-tr {
  width: 100%;
  line-height: 0;
  text-align: center;
}
.section.section--map-page #map-view-tr .map-svg {
  display: inline-block;
  width: min(100%, calc(min(78vh, 1100px) * 3 / 2));
  height: auto;
  max-height: min(78vh, 1100px);
  vertical-align: top;
  margin-top: -70px;
}
/* İlçe görünümü: yapay min-height üstte/altta geniş boşluk yaratıyordu; kaldırıldı */
.section.section--map-page #map-view-district {
  width: 100%;
  line-height: 0;
}
.section.section--map-page .map-wrap {
  padding: 18px;
}
.map-wrap {
  background: radial-gradient(120% 140% at 30% 20%, #111532 0%, #090b1f 52%, #050612 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  transition: border-color .22s ease, box-shadow .22s ease;
}
.map-wrap:hover {
  border-color: rgba(0, 102, 255, .28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .3);
}
.map-wrap__hint {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  color: #c7d4ff; font-size: 14px;
  margin-bottom: 8px;
}
.map-wrap__hint .dot {
  width: 14px; height: 14px; border-radius: 4px; background: #4237ff;
  display: inline-block; margin-right: 6px; vertical-align: middle;
}
.map-wrap__hint--city .map-wrap__city-title {
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 15px;
  color: #e8eaf2;
  padding: 4px 10px;
  background: linear-gradient(180deg, rgba(0,180,255,.18), rgba(0,102,255,.18));
  border: 1px solid rgba(0,180,255,.5);
  border-radius: 8px;
  margin-right: 6px;
}
/* İki "view" map-wrap içinde sıralı yer alır; sadece biri görünür. */
.map-view { width: 100%; }
.map-view[hidden] { display: none !important; }
/* İlçe haritası view'ı — map-wrap içinde tam alanı kaplasın */
#map-view-district .bax-district-svg {
  max-height: min(96vh, 1200px);
  margin: 0 auto;
}
.map-svg {
  width: 100%; height: auto;
}
.map-svg path {
  fill: #07080f;
  transition: fill .2s ease, opacity .2s ease, filter .2s ease;
  cursor: default;
}
.map-svg path[data-city] {
  cursor: pointer;
  stroke: rgba(79, 101, 255, 0.92);
  stroke-width: 1;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.map-svg path[data-city]:hover:not(.is-map-selected) {
  fill: #0088f5;
  filter: none;
}
.map-svg path.is-active {
  fill: #3227ff;
  filter: drop-shadow(0 0 8px rgba(66, 55, 255, .42));
}
.map-svg path.is-map-selected {
  fill: #00c2ff !important;
  filter: drop-shadow(0 0 15px rgba(0, 194, 255, .8));
  stroke: rgba(170, 235, 255, .7);
  stroke-width: 0.8px;
  animation: mapPulse 1.8s ease-in-out infinite;
}
.map-svg path[data-city].is-map-selected {
  stroke: rgba(170, 235, 255, 0.85);
  stroke-width: 1.1px;
}
.map-svg text {
  fill: rgba(240,245,255,.9);
  pointer-events: none;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .9);
}

@keyframes mapPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 194, 255, .55)); }
  50% { filter: drop-shadow(0 0 19px rgba(0, 194, 255, .95)); }
}

/* Sehir mekan listesi */
.venue-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #050626 100%);
  border-top: 1px solid var(--line);
}
.venue-section[hidden] { display: none; }
.venue-section h2 { text-align: center; font-size: 26px; letter-spacing: 4px; margin: 0 0 28px; }
.venue-section h2 em { color: var(--brand); font-style: normal; }
/* ---- Üst hızlı navigasyon (TÜRKİYE / IST / BUR / IZM) ---- */
.city-quicknav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 18px;
  max-width: 720px;
}
.city-quicknav__btn {
  flex: 1 1 130px;
  min-height: 42px;
  padding: 8px 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 13px;
  background: rgba(0, 102, 255, .08);
  border: 1px solid rgba(0, 102, 255, .35);
  color: #5fbcff;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.city-quicknav__btn.is-default {
  background: rgba(0, 102, 255, .18);
  color: #fff;
  border-color: rgba(0, 102, 255, .55);
}
.city-quicknav__btn:hover {
  background: rgba(0, 102, 255, .28);
  color: #fff;
  border-color: rgba(0, 102, 255, .65);
}
.city-quicknav__btn.is-current {
  background: rgba(0, 102, 255, .35);
  color: #fff;
  border-color: rgba(0, 180, 255, .8);
  box-shadow: 0 0 0 2px rgba(0, 180, 255, .15);
}
.city-quicknav__btn.is-disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ---- İlçe seçici grid (özel şehir tıklanınca açılır) ---- */
.district-intro {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
}
.district-intro .dot--brand { background: var(--brand); }
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.district-tile {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 18px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .12s, background .15s, border-color .15s, color .15s;
  color: #b8bdc9;
  text-align: center;
  font: 700 14px/1.2 inherit;
  letter-spacing: .3px;
}
.district-tile:hover { transform: translateY(-2px); }
.district-tile.is-active {
  background: linear-gradient(180deg, rgba(0,180,255,.16), rgba(0,102,255,.16));
  border-color: rgba(0,180,255,.55);
  color: #fff;
}
.district-tile.is-active:hover {
  background: linear-gradient(180deg, rgba(0,180,255,.26), rgba(0,102,255,.26));
  border-color: rgba(0,180,255,.85);
}
.district-tile.is-inactive {
  opacity: .55;
  cursor: not-allowed;
}
.district-tile__name { font-weight: 800; }
.district-tile__count {
  position: absolute;
  top: 8px; right: 10px;
  background: rgba(0,180,255,.25);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---- İlçe SVG haritası (Public + Admin) ----
 * Mevcut Türkiye haritasını taklit eden bir görünüm sağlıyor:
 * pasif ilçeler koyu, aktif (mekanı olanlar) parlak mavi.
 */
.district-legend-dot {
  display: inline-block;
  width: 12px; height: 12px;
  background: #2196f3;
  border-radius: 999px;
  vertical-align: -2px;
  margin: 0 4px;
}
.district-map,
.admin-district-map {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #0f1320;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.admin-district-map { margin-bottom: 16px; max-width: none; }
.district-map__loading {
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.bax-district-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(96vh, 1200px);
}
/* İlçe haritası sınırları — ince parlak mavi kontur (.map-svg path[data-city] ile aynı değerler) */
.bax-district-svg path.bax-district,
.bax-district-svg polygon.bax-district,
.bax-district-svg g.bax-district > path,
.bax-district-svg g.bax-district > polygon {
  stroke: rgba(79, 101, 255, 0.92);
  stroke-width: 1;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.bax-district-svg .bax-district--unknown,
.bax-district-svg g.bax-district--unknown > path,
.bax-district-svg g.bax-district--unknown > polygon {
  stroke: rgba(79, 101, 255, 0.35);
}
/* İlçe haritası — renkler ve geçişler Türkiye `.map-svg path` ile birebir */
.bax-district {
  fill: #07080f;
  stroke: transparent;
  stroke-width: 0;
  transition: fill .2s ease, opacity .2s ease, filter .2s ease;
}
.bax-district polygon,
.bax-district path { fill: inherit; stroke: inherit; }
path.bax-district {
  stroke-width: 0;
}

/* Pasif ilçe hover — Türkiye haritası ile aynı #0088f5 */
.bax-district[data-district]:hover:not(.is-selected) {
  fill: #0088f5;
  filter: none;
}

/* Aktif ilçe — `.map-svg path.is-active` */
.bax-district.is-active {
  fill: #3227ff;
  filter: drop-shadow(0 0 8px rgba(66, 55, 255, .42));
}
/* Seçili ilçe — `.map-svg path.is-map-selected` ile aynı (pulse dahil) */
.bax-district.is-selected {
  fill: #00c2ff !important;
  filter: drop-shadow(0 0 15px rgba(0, 194, 255, .8));
  stroke: rgba(170, 235, 255, .7);
  stroke-width: 0.8px;
  animation: mapPulse 1.8s ease-in-out infinite;
}
.bax-district-svg path.bax-district.is-selected,
.bax-district-svg polygon.bax-district.is-selected,
.bax-district-svg g.bax-district.is-selected > path,
.bax-district-svg g.bax-district.is-selected > polygon {
  stroke: rgba(170, 235, 255, 0.85);
  stroke-width: 1.1px;
}

.bax-district.is-admin { cursor: pointer; }
.bax-district--unknown {
  fill: #07080f;
  stroke: transparent;
  pointer-events: none;
  opacity: 0.45;
}
.bax-district-label,
.bax-district-svg .maplabels1,
.bax-district-svg .maplabels {
  font-family: "Inter", "Tahoma", sans-serif;
  font-weight: 700;
  fill: #e8eaf2;
  paint-order: stroke;
  stroke: rgba(0,0,0,.55);
  stroke-width: 2.4px;
  stroke-linejoin: round;
  pointer-events: none;
}
.bax-district-label { font-size: 11px; }
.bax-district.is-active .bax-district-label { fill: #ffffff; }
@media (max-width: 720px) {
  .bax-district-label { font-size: 9px; stroke-width: 1.8px; }
  .bax-district-svg .maplabels1 { stroke-width: 1.8px; }
}

/* İlçe mekan listesi başlığındaki "← şehir ilçeleri" geri linki */
.venue-back {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: .8px;
  color: #5fbcff;
  text-decoration: none;
  font-weight: 700;
}
.venue-back:hover { color: #fff; }

/* ---- Admin: ilçe yönetim grid'i ---- */
.admin-district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.admin-district {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.admin-district:hover { border-color: rgba(0,180,255,.45); }
.admin-district.is-active {
  border-color: rgba(40,200,120,.45);
  background: linear-gradient(180deg, rgba(40,200,120,.06), transparent);
}
.admin-district__head {
  display: flex; align-items: center; justify-content: space-between;
}
.admin-district__head h4 {
  margin: 0; font-size: 16px; font-weight: 800; color: #fff;
}
.admin-district__toggle {
  width: 36px; height: 18px; border-radius: 999px;
  background: #2a2f4a; position: relative;
  transition: background .15s;
}
.admin-district__toggle::after {
  content: "";
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; transition: transform .15s;
}
.admin-district__toggle.is-on {
  background: linear-gradient(135deg, #28c878, #1ea65f);
}
.admin-district__toggle.is-on::after { transform: translateX(18px); }
.admin-district__meta {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: var(--muted-2);
  flex-wrap: wrap;
}
.admin-district__status {
  font-weight: 800; letter-spacing: .8px;
  padding: 2px 8px; border-radius: 6px; font-size: 10px;
  background: rgba(255,76,76,.12); color: #ff8c8c; border: 1px solid rgba(255,76,76,.25);
  margin-left: auto;
}
.admin-district.is-active .admin-district__status {
  background: rgba(40,200,120,.14);
  color: #28c878;
  border-color: rgba(40,200,120,.4);
}
.admin-district__open { align-self: flex-start; }

/* Sol şehir listesinde özel şehir işaretçisi */
.city-special-mark {
  color: #ffaa00;
  font-size: 9px;
  margin-left: 4px;
  vertical-align: middle;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .venue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .venue-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Kompakt info-table tarzı mekan kartı (görsel referansa göre). */
.venue-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.venue-block:hover {
  border-color: rgba(0, 102, 255, .35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}
.venue-block--featured {
  border-color: rgba(255, 215, 0, .35);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, .12);
}
.venue-block__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(0,102,255,.18), rgba(0,102,255,.08));
  border-bottom: 1px solid rgba(0,102,255,.18);
  text-align: center;
}
.venue-block__header-label {
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
}
.venue-block__header-label strong {
  color: #5fbcff;
  font-weight: 900;
  margin-left: 4px;
}
.venue-block__featured-tag {
  background: linear-gradient(135deg, #ffd700, #f5a623);
  color: #1a1020;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 999px;
}
.venue-block__meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px 2px;
}
.venue-block__meta-row span {
  font-size: 10px;
  letter-spacing: 1.2px;
  background: rgba(0, 102, 255, .16);
  color: var(--brand);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}
.venue-block__info {
  padding: 4px 14px;
}
.venue-block__info-row {
  display: grid;
  grid-template-columns: minmax(0, 65%) 1fr;
  gap: 8px;
  padding: 4px 0;
  font-size: 12px;
  border-bottom: 1px dashed rgba(255,255,255,.05);
  align-items: baseline;
  line-height: 1.25;
}
.venue-block__info-row:last-child { border-bottom: 0; }
.venue-block__info-row span {
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 10.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.venue-block__info-row strong {
  color: #fff;
  font-weight: 800;
  text-align: right;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 720px) {
  .venue-block__info-row {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .venue-block__info-row strong { text-align: left; white-space: normal; }
  .venue-block__info-row span { white-space: normal; }
}
.venue-block__cta {
  margin: 10px 14px 12px;
  padding: 9px 12px;
  background: rgba(0, 102, 255, .14);
  border: 1px solid rgba(0, 102, 255, .35);
  color: #5fbcff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3px;
  cursor: pointer;
  text-align: center;
  transition: background .15s, color .15s, border-color .15s;
}
.venue-block__cta:hover {
  background: rgba(0, 102, 255, .25);
  color: #fff;
  border-color: rgba(0, 102, 255, .55);
}

/* --- Eski layout için geriye uyumluluk (admin önizleme vb. başka yerlerde kullanılabilir) --- */
.venue-block__layout {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 768px) {
  .venue-block__layout { grid-template-columns: 1fr; }
  .venue-block__thumb {
    height: 130px;
    min-height: 130px;
  }
}
.venue-block__thumb {
  min-height: 120px;
  height: 180px;
  aspect-ratio: auto;
  background: #050719 center/cover no-repeat;
  position: relative;
}
.venue-block__thumb--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 2px;
}
.venue-block__noimg { opacity: .7; margin-top: 8px; }
.venue-block__kod {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
}
.venue-block__featured {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #ffd700, #f5a623);
  color: #1a1020;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 999px;
}
.venue-block__content {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.venue-block__head { margin-bottom: 4px; }
.venue-block__title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: #fff;
  letter-spacing: .3px;
}
.venue-block__title--muted { color: var(--muted-2); }
.venue-block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.venue-block__meta span {
  font-size: 11px;
  letter-spacing: 1.5px;
  background: rgba(0, 102, 255, .16);
  color: var(--brand);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.venue-block__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.venue-block__summary {
  display: grid;
  gap: 0;
  background: rgba(0, 0, 0, .2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 14px;
}
.venue-block__sum-row {
  display: grid;
  grid-template-columns: minmax(140px, 46%) 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .08);
  font-size: 13px;
  align-items: start;
}
.venue-block__sum-row:last-child { border-bottom: 0; }
.venue-block__sum-row span {
  color: var(--muted-2);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.venue-block__sum-row strong {
  color: #fff;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 540px) {
  .venue-block__sum-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .venue-block__sum-row strong { text-align: left; }
}
.venue-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.venue-block__otel {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.venue-block__otel-group + .venue-block__otel-group {
  margin-top: 16px;
}
.venue-block__otel-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #5ecbff;
  text-transform: uppercase;
}
.venue-block__otel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}
.venue-block__otel-img {
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  background: #000;
  line-height: 0;
}
.venue-block__otel-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.venue-block__otel-empty { margin: 0; font-size: 13px; }

.venue-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.venue-card:hover { transform: translateY(-4px); border-color: rgba(0,102,255,.45); }
.venue-card__thumb {
  aspect-ratio: 4/3;
  background: #050719 center/cover no-repeat;
  position: relative;
}
.venue-card__thumb--empty {
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); font-size: 12px; letter-spacing: 2px;
}
.venue-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  color: #fff; font-weight: 800; font-size: 12px; letter-spacing: 1.5px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
}
.venue-card__featured {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #ffd700, #f5a623);
  color: #1a1020; font-size: 10px; font-weight: 900;
  letter-spacing: 1px; padding: 5px 10px; border-radius: 999px;
}
.venue-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.venue-card__name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .3px;
  line-height: 1.25;
}
.venue-card--featured { border-color: rgba(255, 215, 0, .35); }
.venue-card__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.venue-card__meta span {
  font-size: 11px; letter-spacing: 1.5px;
  background: rgba(0,102,255,.16); color: var(--brand);
  padding: 5px 10px; border-radius: 999px;
}
.venue-card__btn { margin-top: auto; }
.venue-empty {
  text-align: center; padding: 50px 20px;
  color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius);
}

/* Detay modal */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2,3,18,.78);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  background: linear-gradient(180deg, var(--card) 0%, #0a0d34 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  width: min(960px, 100%);
  max-height: 92vh;
  overflow: auto;
  position: relative;
  box-shadow: var(--shadow-2);
}
.modal__box--venue {
  border-color: rgba(0, 102, 255, .35);
  box-shadow: 0 0 0 1px rgba(94, 203, 255, .12), var(--shadow-2);
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  font-size: 22px; color: #fff;
  border: 1px solid var(--line);
  z-index: 2;
}
.modal__close:hover { background: var(--danger); border-color: var(--danger); }
.modal__head {
  padding: 28px 30px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.modal__head--venue { flex-direction: column; align-items: stretch; }
.modal__head-text { width: 100%; }
.modal__eyebrow {
  margin: 0 0 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 4px;
  text-transform: uppercase; color: #5ecbff;
}
.modal__venue-name {
  margin: 0 0 12px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: #fff;
  letter-spacing: .5px;
}
.modal__venue-name:empty { display: none; }
.modal__kod {
  font-size: 12px; letter-spacing: 3px; color: var(--muted-2);
}
.modal__kod b { color: #fff; font-size: clamp(20px, 3.5vw, 28px); letter-spacing: 1px; }
.modal__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.modal__tags span {
  background: rgba(0,102,255,.16); color: var(--brand);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
}
.modal__body { padding: 24px 30px 30px; }
.modal__desc {
  margin: 0 0 20px;
  padding: 16px;
  background: rgba(0,102,255,.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.info-table { display: grid; grid-template-columns: 1fr; }
.info-table--venue .info-table__row span { text-align: right; color: #fff; font-weight: 600; }
.info-table__row {
  display: grid;
  grid-template-columns: minmax(160px, 42%) 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  align-items: start;
}
.info-table__row:last-child { border-bottom: 0; }
.info-table__row b {
  color: var(--muted-2); font-weight: 600; letter-spacing: 1px; font-size: 12px;
  text-transform: uppercase;
}
@media (max-width: 540px) { .info-table__row { grid-template-columns: 1fr; gap: 2px; } }

.modal__sec-title { margin: 24px 0 14px; font-size: 14px; letter-spacing: 3px; color: var(--brand); text-transform: uppercase; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.gallery img {
  aspect-ratio: 1/1; object-fit: cover; cursor: zoom-in;
  border-radius: 10px; border: 1px solid var(--line);
}
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.videos > div {
  position: relative; aspect-ratio: 16/9;
  background: #000; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
}
.videos iframe, .videos video { width: 100%; height: 100%; border: 0; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox button {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: 24px; color: #fff;
}

/* =========================================================================
   ADMIN PANELI (admin/index.html veya overlay)
   ========================================================================= */
.admin-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg);
  display: none;
  flex-direction: column;
}
.admin-overlay.is-open { display: flex; }
.admin-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: #03041a;
  border-bottom: 1px solid var(--line);
}
.admin-topbar h1 {
  margin: 0; font-size: 16px; font-weight: 800; letter-spacing: 1.5px;
}
.admin-topbar h1 span { color: var(--muted-2); font-weight: 500; font-size: 13px; letter-spacing: 1px; }
.admin-topbar .spacer { flex: 1; }

.admin-layout {
  flex: 1; display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 0;
}
@media (max-width: 880px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { max-height: 40vh; }
}
.admin-layout--tablolar {
  grid-template-columns: 1fr;
}
.admin-layout--tablolar .admin-sidebar {
  display: none;
}
.admin-layout--tablolar .admin-main {
  padding: 12px 16px;
}
.admin-topbar .btn.is-pressed {
  background: rgba(0, 102, 255, 0.22);
  border-color: rgba(0, 180, 255, 0.5);
  color: #fff;
}
.bax-sheet-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0a1128;
}
.bax-sheet {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35px;
}
.bax-sheet thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 10px 12px;
  text-align: left;
  vertical-align: bottom;
  background: #0d1a35;
  color: #7ee8ff;
  border: 1px solid rgba(0, 180, 255, 0.18);
  text-transform: uppercase;
  font-size: 10px;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.bax-sheet tbody td {
  padding: 6px 10px;
  border: 1px solid rgba(30, 60, 100, 0.45);
  color: #b8f0ff;
  text-transform: uppercase;
  white-space: nowrap;
  background: #0a162e;
}
.bax-sheet tbody tr:nth-child(even) td {
  background: #081326;
}
.bax-sheet tbody td.bax-sheet__cell--ok {
  background: rgba(40, 200, 120, 0.42) !important;
  color: #fff;
}
.bax-sheet tbody td.bax-sheet__cell--bad {
  background: rgba(200, 50, 70, 0.48) !important;
  color: #fff;
}
.bax-sheet tbody td.bax-sheet__cell--warn {
  background: rgba(255, 170, 0, 0.42) !important;
  color: #fff;
}
.bax-sheet tbody td.bax-sheet__cell--dark {
  background: rgba(8, 10, 20, 0.96) !important;
  color: #e8eaef;
  border-color: rgba(80, 80, 100, 0.5);
}
.bax-sheet-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px 18px;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.bax-sheet-toolbar__search {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: #fff;
  font-size: 13px;
  min-width: 200px;
}
.bax-sheet-toolbar__select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: #fff;
  font-size: 12px;
  max-width: 220px;
}
.bax-sheet-toolbar__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-2, #9aa3b2);
}
.bax-sheet-toolbar__label {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--muted);
}
.bax-sheet-toolbar__hint {
  font-size: 11px;
  max-width: 280px;
  line-height: 1.35;
}
.bax-sheet th.bax-sheet__col-act,
.bax-sheet td.bax-sheet__col-act {
  position: sticky;
  left: 0;
  z-index: 3;
  min-width: 160px;
  background: #0d1a35;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.35);
  vertical-align: middle;
}
.bax-sheet td.bax-sheet__col-act {
  background: #0a162e;
  z-index: 2;
}
.bax-sheet tbody tr:nth-child(even) td.bax-sheet__col-act {
  background: #081326;
}
.bax-sheet td.bax-sheet__col-act .btn {
  margin: 2px 4px 2px 0;
}

.admin-sidebar {
  background: #050720;
  border-right: 1px solid var(--line);
  overflow: auto;
  display: flex; flex-direction: column;
}
.admin-sidebar__search {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #050720; z-index: 1;
}
.admin-sidebar__search input {
  width: 100%; padding: 10px 14px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px;
  color: #fff; font-size: 13px; outline: none;
}
.city-list { padding: 8px; }
.city-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s ease;
}
.city-list li:hover { background: rgba(255,255,255,.04); }
.city-list li.is-selected { background: rgba(0,102,255,.16); }
.city-list .name { flex: 1; font-size: 14px; font-weight: 600; }
.city-list .count {
  font-size: 11px; padding: 2px 7px; background: rgba(255,255,255,.06);
  border-radius: 999px; color: var(--muted);
}
.city-list li.is-active .name::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; background: var(--brand); border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
}
.toggle {
  width: 38px; height: 22px;
  background: rgba(255,255,255,.08);
  border-radius: 999px; position: relative;
  flex: 0 0 auto;
  transition: background .2s ease;
}
.toggle::after {
  content:""; position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; background: #fff; border-radius: 50%;
  transition: left .2s ease;
}
.toggle.is-on { background: var(--brand); }
.toggle.is-on::after { left: 19px; }

.admin-main { padding: 22px; overflow: auto; }
.admin-empty { padding: 60px 20px; text-align: center; color: var(--muted); }
.admin-main__head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.admin-main__head h2 { margin: 0; font-size: 20px; }
.admin-main__head h2 small { font-size: 12px; letter-spacing: 2px; color: var(--muted-2); margin-left: 8px; }
.admin-main__head .spacer { flex: 1; }

.venues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.mini-venue {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.mini-venue .thumbs { display: flex; gap: 4px; flex-wrap: wrap; }
.mini-venue .thumbs img {
  width: 48px; height: 48px; border-radius: 8px; object-fit: cover;
}
.mini-venue .kod { font-size: 18px; font-weight: 800; color: var(--brand); letter-spacing: 1px; }
.mini-venue .info { font-size: 13px; color: var(--muted); }
.mini-venue .actions { display: flex; gap: 8px; margin-top: auto; }
.mini-venue.is-featured { border-color: rgba(255, 215, 0, .4); }

.admin-venue-toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 18px; padding: 14px;
  background: rgba(0,0,0,.2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.admin-venue-toolbar input[type="search"],
.admin-venue-toolbar select {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: #fff;
  font-size: 13px;
  min-width: 180px;
}
.admin-venue-toolbar select { cursor: pointer; }

.form-modal .vf-section-title {
  grid-column: 1 / -1;
  margin: 18px 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand);
  text-transform: uppercase;
}
.form-modal .vf-days {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 8px;
}
.form-modal .vf-days label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  color: var(--muted);
}
.form-modal .vf-flag {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 14px;
}

/* Form modal */
.form-backdrop {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(2,3,18,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; overflow: auto;
}
.form-modal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  width: min(900px, 100%);
  max-height: 92vh;
  overflow: auto;
}
.form-modal__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  position: sticky; top: 0; background: var(--card); z-index: 2;
}
.form-modal__head h3 { margin: 0; font-size: 18px; }
.form-modal__body { padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-modal__body .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-modal__body { grid-template-columns: 1fr; } }
.form-modal__foot {
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  display: flex; gap: 10px; justify-content: flex-end;
  position: sticky; bottom: 0; background: var(--card);
}
.media-block {
  background: var(--bg-2);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 16px;
}
.media-block h4 { margin: 0 0 10px; font-size: 13px; letter-spacing: 2px; }
.media-row { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.media-row input[type="text"] { flex: 1; min-width: 180px; }
.media-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
.media-list__item { position: relative; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #000; }
.media-list__item img, .media-list__item video, .media-list__item iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.media-list__item .remove {
  position: absolute; top: 4px; right: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0,0,0,.7); color: #fff; font-size: 14px;
}
.media-list__item .remove:hover { background: var(--danger); }

/* Auth gate */
.gate {
  position: fixed; inset: 0; z-index: 250;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.gate__box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: min(420px, 100%);
}
.gate__box h2 { margin: 0 0 8px; font-size: 22px; letter-spacing: 1px; }
.gate__box p { color: var(--muted); margin: 0 0 18px; }
.gate__box input {
  width: 100%; padding: 14px 16px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  color: #fff; font-size: 14px; outline: none; margin-bottom: 10px;
}
.gate__box input:focus { border-color: var(--brand); }
.gate__err { color: var(--danger); font-size: 13px; min-height: 18px; }

/* Toast */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px;
  box-shadow: 0 14px 30px rgba(0,102,255,.4);
  z-index: 400;
  opacity: 0; transition: opacity .15s ease;
  pointer-events: none;
}
.toast.is-show { opacity: 1; }

/* Form fields icin compact varyantlar (form-modal icin) */
.form-modal__body label {
  display: block;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin-bottom: 6px;
}
.form-modal__body label input, .form-modal__body label textarea, .form-modal__body label select {
  width: 100%; padding: 10px 12px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  color: #fff; font-size: 13px; outline: none;
  margin-top: 4px;
}
.form-modal__body label select { cursor: pointer; }
.form-modal__body label input:focus, .form-modal__body label textarea:focus, .form-modal__body label select:focus { border-color: var(--brand); }

.form-modal__body .vf-time-row {
  display: flex; align-items: center; gap: 10px; margin-top: 6px;
}
.form-modal__body .vf-time-row input[type="time"] {
  flex: 1; min-width: 0;
  padding: 10px 12px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  color: #fff; font-size: 13px;
  color-scheme: dark;
}
.form-modal__body .vf-time-row input[type="time"]:focus { border-color: var(--brand); outline: none; }
.form-modal__body .vf-time-sep { color: var(--muted); font-weight: 800; flex-shrink: 0; }

.form-modal__body .vf-triple-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .form-modal__body .vf-triple-row { grid-template-columns: 1fr; }
}
.form-modal__body .vf-triple-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-modal__body .vf-triple-hint {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--muted-2);
  text-transform: uppercase;
}
.form-modal__body .vf-triple-inp {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  outline: none;
}
.form-modal__body .vf-triple-inp:focus { border-color: var(--brand); }

.form-modal__body .vf-segment {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; align-items: center;
}
.form-modal__body .vf-seg-btn {
  flex: 1; min-width: 76px;
  padding: 10px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg-2);
  color: var(--muted); font-size: 13px; font-weight: 800;
  cursor: pointer; letter-spacing: 0.5px;
}
.form-modal__body .vf-seg-btn:hover { border-color: var(--brand); color: #fff; }
.form-modal__body .vf-seg-btn.is-on {
  border-color: var(--brand);
  background: rgba(0, 102, 255, 0.15);
  color: #fff;
}
.form-modal__body .vf-seg-btn:disabled {
  cursor: default; opacity: 0.85;
}

/* Basvuru listesi (admin) */
.form-modal--leads {
  width: min(1080px, 100%);
}
.leads-list {
  display: grid;
  gap: 14px;
}
.lead-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.lead-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.lead-card__head h4 {
  margin: 0;
  font-size: 16px;
}
.lead-card__head span {
  color: var(--muted-2);
  font-size: 12px;
}
.lead-card__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.lead-card__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.lead-card__grid b {
  color: #fff;
}
.lead-card__photos {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
}
.lead-card__photos img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #000;
  cursor: zoom-in;
}
.lead-card__actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}
.lead-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.lead-lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}
.lead-lightbox__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 760px) {
  .lead-card__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ GALERI GRID ============ */
.section--gallery {
  padding: 0;
  background: var(--bg);
}
.section--gallery > .container {
  max-width: none;
  width: 100%;
  padding: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}
.gallery-grid__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: #0a0d34;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.gallery-grid__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 102, 0.55);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.gallery-grid__item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-grid__item:hover::before,
.gallery-grid__item:focus-visible::before {
  opacity: 1;
}
.gallery-grid__item:hover::after,
.gallery-grid__item:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-grid__item:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid__item {
    aspect-ratio: 4 / 3;
  }
  .gallery-grid__item::after {
    font-size: 48px;
  }
}

/* ===== LIGHTBOX (galeri büyütme) ===== */
.bax-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 28, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  animation: bax-lb-in .2s ease;
}
.bax-lightbox[hidden] { display: none; }
@keyframes bax-lb-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.bax-lightbox img {
  max-width: min(1400px, 96vw);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.1);
}
.bax-lightbox__close,
.bax-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.bax-lightbox__close {
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.bax-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 22px;
}
.bax-lightbox__nav--prev { left: 24px; }
.bax-lightbox__nav--next { right: 24px; }
.bax-lightbox__close:hover,
.bax-lightbox__nav:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.bax-lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
@media (max-width: 720px) {
  .bax-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .bax-lightbox__nav--prev { left: 10px; }
  .bax-lightbox__nav--next { right: 10px; }
  .bax-lightbox__close { top: 12px; right: 14px; width: 38px; height: 38px; }
}

/* ============ EGLENEREK KAZAN BANNER ============ */
.fun-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  isolation: isolate;
  color: #fff;
}
.fun-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/dans-bax.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(.8);
  z-index: -2;
}
.fun-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0, 175, 255, .55) 0%, rgba(0, 102, 255, 0) 60%),
    linear-gradient(135deg, rgba(0, 168, 232, .92) 0%, rgba(0, 102, 255, .92) 100%);
  z-index: -1;
}
.fun-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.fun-banner__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  opacity: .9;
  margin-bottom: 14px;
}
.fun-banner__title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 30, 80, .35);
}
.fun-banner__title em {
  font-style: normal;
  background: linear-gradient(120deg, #fff 0%, #cfe7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fun-banner__lead {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 600px;
  color: rgba(255,255,255,.92);
}
.fun-banner__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.fun-banner__btn {
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  border: 0;
}
.fun-banner__btn:hover {
  background: #f5f9ff;
  color: var(--brand-deep);
  transform: translateY(-1px);
}
.fun-banner__btn-ghost {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.fun-banner__btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* Dekoratif şekiller */
.fun-banner__shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.fun-banner__shape--ring {
  top: 22%;
  right: 9%;
  width: 70px;
  height: 70px;
  border: 5px solid #fff;
  border-radius: 50%;
  opacity: .85;
}
.fun-banner__shape--circle {
  top: 30%;
  right: 4%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #b7e244;
  opacity: .95;
  mix-blend-mode: screen;
}
.fun-banner__shape--triangle {
  bottom: 18%;
  right: 6%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 28px solid #ff4ea1;
  opacity: .9;
}
.fun-banner__shape--squiggle {
  top: 35%;
  left: 5%;
  width: 110px;
  height: 46px;
  opacity: .9;
  transform: rotate(-8deg);
}
@media (max-width: 720px) {
  .fun-banner { padding: 60px 16px; }
  .fun-banner__shape--ring { width: 46px; height: 46px; border-width: 4px; right: 6%; top: 14%; }
  .fun-banner__shape--circle { width: 50px; height: 50px; right: 2%; top: 22%; }
  .fun-banner__shape--triangle { border-left-width: 12px; border-right-width: 12px; border-bottom-width: 20px; right: 5%; bottom: 10%; }
  .fun-banner__shape--squiggle { width: 80px; height: 32px; left: 2%; top: 18%; }
  .fun-banner__lead { font-size: 14px; }
}

/* ============ ILETISIM FORM PRO ============ */
.contact__form--pro {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,102,255,.06) 0%, rgba(0,102,255,0) 18%),
    var(--card);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.contact__form--pro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #0099ff 50%, var(--brand) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}
.form-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.form-head__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0,102,255,.12);
  border: 1px solid rgba(0,102,255,.3);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.contact__form--pro .req {
  color: #ff5b6e;
  font-weight: 800;
  margin-left: 2px;
}
.contact__form--pro .field {
  position: relative;
}
.contact__form--pro .field input,
.contact__form--pro .field textarea {
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.contact__form--pro .field input:hover,
.contact__form--pro .field textarea:hover {
  border-color: rgba(0,102,255,.4);
}
.contact__form--pro .field input:focus,
.contact__form--pro .field textarea:focus {
  background: var(--bg);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,102,255,.18);
}
.contact__form--pro .field input::placeholder,
.contact__form--pro .field textarea::placeholder {
  color: rgba(255,255,255,.32);
}

/* Hata durumu */
.contact__form--pro .field.has-error input,
.contact__form--pro .field.has-error textarea,
.contact__form--pro .field.has-error .input-suffix {
  border-color: #ff5b6e !important;
  box-shadow: 0 0 0 4px rgba(255,91,110,.14);
  background: rgba(255,91,110,.06);
}
.contact__form--pro .field.has-error .input-suffix input {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}
.field__error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #ff8a96;
  font-weight: 600;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.field__error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff5b6e;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

/* Suffix (cm/kg) */
.input-suffix {
  display: flex;
  align-items: stretch;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.input-suffix:hover {
  border-color: rgba(0,102,255,.4);
}
.input-suffix:focus-within {
  border-color: var(--brand);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(0,102,255,.18);
}
.input-suffix input {
  flex: 1;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.input-suffix__unit {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(0,102,255,.12);
  border-left: 1px solid var(--line);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Tarih input ikon rengi */
.contact__form--pro input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.85);
  cursor: pointer;
}

/* Dosya input görseli */
.contact__form--pro input[type="file"] {
  padding: 12px 14px;
  cursor: pointer;
}
.contact__form--pro input[type="file"]::file-selector-button {
  background: rgba(0,102,255,.18);
  color: var(--brand);
  border: 1px solid rgba(0,102,255,.4);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 12px;
  transition: background .2s ease, color .2s ease;
}
.contact__form--pro input[type="file"]::file-selector-button:hover {
  background: var(--brand);
  color: #fff;
}

/* KVKK onay */
.field--consent { margin-top: 6px; }
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: .2px !important;
  color: var(--muted) !important;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 !important;
}
.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--brand);
  flex: 0 0 auto;
}

/* Submit */
.contact__form--pro .btn--submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand) 0%, #0099ff 100%);
  border: 0;
  box-shadow: 0 12px 30px rgba(0,102,255,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact__form--pro .btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,102,255,.45);
}
.contact__form--pro .btn--submit svg {
  transition: transform .25s ease;
}
.contact__form--pro .btn--submit:hover svg {
  transform: translateX(4px);
}

/* Sonuç mesajı */
.form-result {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
  min-height: 0;
}
.form-result:empty { display: none; }
.form-result.is-error {
  background: rgba(255,91,110,.12);
  border: 1px solid rgba(255,91,110,.4);
  color: #ff8a96;
}
.form-result.is-success {
  background: rgba(40,200,120,.14);
  border: 1px solid rgba(40,200,120,.45);
  color: #6fe2a4;
}
