/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --cab: 'Cabinet Grotesk', sans-serif;
  --serif: 'Instrument Serif', serif;
  --mono: 'Geist Mono', monospace;

  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-soft:  rgba(201,168,76,0.12);
  --gold-glow:  rgba(201,168,76,0.25);

  --r: 16px; --r-lg: 26px; --r-xl: 40px;
}

[data-theme="dark"] {
  --bg:      #0A0A0C;
  --bg2:     #0F0F12;
  --surface: #13131A;
  --surface2:#1A1A24;
  --surface3:#22222E;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text:    #F0EDE6;
  --text2:   #A8A49C;
  --muted:   #5C5852;
  --shadow:  0 4px 24px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
  --nav-bg:  rgba(10,10,12,0.8);
}

[data-theme="light"] {
  --bg:      #F8F6F1;
  --bg2:     #F0EDE6;
  --surface: #FFFFFF;
  --surface2:#F4F2ED;
  --surface3:#EAE7E0;
  --border:  rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.12);
  --text:    #12100C;
  --text2:   #5C5852;
  --muted:   #A8A49C;
  --shadow:  0 4px 24px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  --nav-bg:  rgba(248,246,241,0.85);
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--cab); overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ══════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
    .animate-fade, .reveal {
        animation: none !important;
        transition: none !important;
    }
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
.navbar.scrolled {
  height: 60px;
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.nav-emblem {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gold); color: #0A0A0C;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-wordmark { display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
.nav-brand { font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text); }
.nav-city  { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  padding: 8px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 700; color: var(--text2);
  transition: all 0.2s; cursor: pointer;
}
.nav-link:hover { color: var(--text); background: var(--surface2); }

.nav-right {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; min-width: 0;
}
#navActions {
  display: flex; align-items: center; gap: 8px;
  min-width: 0;
}
#navActions > div { display: flex; align-items: center; gap: 8px; min-width: 0; }
#navActions .btn-cta,
#navActions .nav-link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}
.navbar .btn-cta {
  padding: 8px 14px;
  font-size: 11px;
  border-radius: 10px;
  letter-spacing: 0.4px;
}
.navbar .btn-cta i { font-size: 14px; }
.navbar #navActions .nav-link { font-size: 12px; padding: 6px 10px; }

/* Tema toggle & hamburger — nav ile uyumlu, gold vurgu */
.theme-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease;
}
.theme-btn:hover {
  color: var(--gold); border-color: rgba(201,168,76,0.4);
  background: var(--gold-soft); box-shadow: 0 0 0 1px rgba(201,168,76,0.1);
}
.theme-btn:active { transform: scale(0.96); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 12px;
  background: var(--gold); color: #0A0A0C;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
  transition: all 0.2s; cursor: pointer; border: none;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }
.btn-cta i { font-size: 16px; }

/* Hamburger — tema butonu ile aynı kutu, gold hover */
.hamburger {
  display: none;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; padding: 0;
  transition: all 0.25s ease;
}
.hamburger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--text2); transition: all 0.3s;
}
.hamburger:hover {
  border-color: rgba(201,168,76,0.4); background: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1);
}
.hamburger:hover span { background: var(--gold); }
.hamburger:active { transform: scale(0.96); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 499;
  background: var(--bg); padding: 90px 30px 40px;
  flex-direction: column; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 22px; font-weight: 800; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); border-radius: 0; }

/* Header: masaüstünde tam menü, mobilde tek ikon dropdown — çift menü olmasın */
.nav-user-dropdown { display: none; position: relative; }
.nav-actions-inner { display: flex; align-items: center; gap: 12px; min-width: 0; }
@media (min-width: 901px) {
  .nav-actions-inner { display: flex !important; }
  .nav-user-dropdown { display: none !important; }
}
@media (max-width: 900px) {
  .navbar { padding: 0 16px; gap: 10px; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }
  .nav-actions-inner { display: none !important; }
  .nav-user-dropdown { display: block; flex-shrink: 0; }
  .nav-user-dropdown-toggle {
    width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text2); font-size: 18px;
    display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s;
  }
  .nav-user-dropdown-toggle:hover { color: var(--gold); border-color: rgba(201,168,76,0.4); background: var(--gold-soft); }
  .nav-user-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 8px); right: 0; min-width: 180px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-xl);
    padding: 8px; z-index: 600;
  }
  .nav-user-dropdown-menu.open { display: block; }
  .nav-dropdown-item, .nav-dropdown-item-btn {
    display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 14px;
    border: none; background: none; color: var(--text); font-size: 14px; font-weight: 600;
    font-family: inherit; cursor: pointer; text-align: left; border-radius: 8px; text-decoration: none;
  }
  .nav-dropdown-item:hover, .nav-dropdown-item-btn:hover { background: var(--surface2); color: var(--gold); }
  .nav-dropdown-item-btn { width: 100%; }
  .nav-dropdown-logout { color: var(--gold) !important; }
  #navActions .btn-cta { max-width: 100px; padding: 6px 12px; font-size: 10px; }
  #navActions .nav-link { font-size: 11px; padding: 6px 8px; max-width: 90px; }
  .nav-right { gap: 6px; }
  .nav-brand { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
  .nav-city { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
}

/* ══════════════════════════════════════════
   HERO / SLIDER
══════════════════════════════════════════ */
/* Slider: header altında geniş boşlukla başlar */
.hero {
  position: relative;
  padding-top: 140px;
  height: 82vh; min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  isolation: isolate;
}
/* Slider alanı aşağı kaydırıldığında kesinti olmasın, bir sonraki bölüm temiz başlasın */
#features { position: relative; z-index: 1; background: var(--bg); }

/* slider arka planı — header altında (140px’ten) */
.slides {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  bottom: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active { opacity: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-0 .slide-bg {
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(79,107,255,0.12) 0%, transparent 55%),
              var(--bg2);
}
[data-theme="light"] .slide-0 .slide-bg {
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.22) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(79,107,255,0.1) 0%, transparent 55%),
              #EDE9E0;
}
.slide-1 .slide-bg {
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(34,197,94,0.1) 0%, transparent 55%),
              var(--bg2);
}
.slide-2 .slide-bg {
  background: radial-gradient(ellipse at 50% 30%, rgba(79,107,255,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(201,168,76,0.12) 0%, transparent 55%),
              var(--bg2);
}

/* grid overlay — slider ile aynı hizada (140px’ten) */
.hero-grid {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  opacity: 0.5;
}

/* floating geometric shapes */
.geo-shape {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: geoFloat 8s ease-in-out infinite;
  opacity: 0.04;
}
.geo-1 { width: 500px; height: 500px; border: 1.5px solid var(--gold); top: -100px; right: -100px; border-radius: 50%; animation-delay: 0s; }
.geo-2 { width: 300px; height: 300px; border: 1.5px solid var(--gold); bottom: 80px; left: -80px; animation-delay: -3s; opacity: 0.06; }
.geo-3 { width: 180px; height: 180px; background: var(--gold); top: 30%; left: 10%; animation-delay: -5s; filter: blur(60px); opacity: 0.08; }
@keyframes geoFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(8deg); }
}

/* hero content — geniş, az yükseklik (slider kartı) */
.hero-content {
  position: relative; z-index: 10;
  width: 100%; max-width: 1400px;
  margin: 0 auto;
  padding: 28px 64px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

/* Glassmorphism & Gradient Orbs — kart daha yassı */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
[data-theme="light"] .glass-panel {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gradient-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.4; pointer-events: none;
    animation: orbFloat 20s infinite ease-in-out;
}
.orb-1 { width: 400px; height: 400px; background: linear-gradient(135deg, #d4a84c, #ff6b6b); top: -200px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: linear-gradient(135deg, #4f6bff, #22c55e); bottom: -150px; left: -50px; animation-delay: -10s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}
@media (max-width: 900px) {
  .hero { padding-top: 180px; min-height: 520px; }
  .slides { top: 180px; }
  .hero-grid { top: 180px; }
  .hero-content { grid-template-columns: 1fr; padding: 24px 24px 28px; gap: 28px; align-items: center; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 40px;
  border: 1px solid var(--gold-soft); background: var(--gold-soft);
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
}
.hero-eyebrow::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: geoFloat 2s ease-in-out infinite; }

.hero-title {
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 900; line-height: 0.92; letter-spacing: -3px;
  color: var(--text); margin-bottom: 12px;
}
.hero-title em {
  font-family: var(--serif); font-style: italic;
  color: var(--gold); letter-spacing: -2px;
  display: block;
}
.hero-sub {
  font-size: 16px; font-weight: 500; color: var(--text2); line-height: 1.65;
  max-width: 420px; margin-bottom: 20px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 24px; border-radius: 12px;
  background: transparent; border: 1px solid var(--border2);
  color: var(--text2); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  transition: all 0.2s; cursor: pointer;
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 12px;
  background: var(--gold); color: #0A0A0C;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
  box-shadow: 0 6px 24px var(--gold-glow);
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 36px var(--gold-glow); }
.btn-hero-primary i { font-size: 18px; }

/* hero right — quick portals */
.hero-right { display: flex; flex-direction: column; gap: 14px; }

.portal-card-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
  transition: all 0.3s; cursor: pointer;
  box-shadow: var(--shadow);
  text-decoration: none; color: inherit;
}
.portal-card-mini:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: 0 8px 40px var(--gold-glow);
}
.pcm-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--gold-soft); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); flex-shrink: 0;
}
.pcm-body { flex: 1; min-width: 0; }
.pcm-title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pcm-desc  { font-size: 12px; color: var(--text2); font-weight: 500; line-height: 1.4; }
.pcm-arrow { font-size: 22px; color: var(--muted); transition: all 0.2s; }
.portal-card-mini:hover .pcm-arrow { color: var(--gold); transform: translateX(4px); }

/* slider nav — hero altında simetrik (sol 80px = sayaç sağ 80px) */
.slider-nav {
  position: absolute; bottom: 24px; left: 80px; z-index: 20;
  display: flex; align-items: center; gap: 16px;
}
@media (max-width: 900px) { .slider-nav { left: 24px; bottom: 20px; } }

.slider-dots { display: flex; gap: 8px; }
.sdot {
  width: 28px; height: 3px; border-radius: 3px;
  background: var(--muted); cursor: pointer; transition: all 0.3s;
}
.sdot.active { background: var(--gold); width: 52px; }

.slider-timer {
  font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--muted);
  letter-spacing: 1px;
}

/* slide counter — hero içinde sabit */
.slide-counter {
  position: absolute; right: 80px; bottom: 24px; z-index: 20;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  display: flex; align-items: flex-end; gap: 4px;
}
.sc-current { font-size: 32px; font-weight: 600; color: var(--gold); line-height: 1; }
.sc-total   { font-size: 13px; opacity: 0.5; margin-bottom: 4px; }
@media (max-width: 900px) { .slide-counter { right: 24px; bottom: 20px; } }

/* progress bar */
.slide-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--border); z-index: 20;
}
.slide-progress-bar {
  height: 100%; background: var(--gold);
  width: 0%; transition: none;
}
.slide-progress-bar.animating {
  transition: width 4s linear;
  width: 100%;
}

/* ══════════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════════ */
section { padding: 120px 80px; }
@media (max-width: 900px) { section { padding: 80px 24px; } }
@media (max-width: 600px) { section { padding: 60px 20px; } }

.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.sec-eyebrow::before { content:''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }

.sec-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; letter-spacing: -2px; line-height: 1;
  color: var(--text); margin-bottom: 18px;
}
.sec-title em { font-family: var(--serif); font-style: italic; color: var(--gold); }

.sec-sub {
  font-size: 16px; color: var(--text2); font-weight: 500; line-height: 1.65; max-width: 520px;
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
#features { background: var(--bg); }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }
@media (min-width: 601px) and (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative; overflow: hidden;
}
.modern-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
[data-theme="light"] .modern-card { background: var(--surface); }

.modern-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(-2deg);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 60px var(--gold-glow);
}

.card-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.15), transparent 70%);
    opacity: 0; transition: opacity 0.4s;
}
.modern-card:hover .card-glow { opacity: 1; }

.feat-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--gold-soft); border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold); margin-bottom: 24px;
}
.magnetic-icon { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.modern-card:hover .magnetic-icon { transform: scale(1.15) translateY(-5px); color: var(--gold-light); }

.feat-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.5px; }
.feat-desc  { font-size: 14px; color: var(--text2); line-height: 1.65; font-weight: 500; }

.feat-num {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--mono); font-size: 13px; color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   HOW IT WORKS — HORIZONTAL STEPS
══════════════════════════════════════════ */
#howitworks { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 60px; position: relative;
}
@media (max-width: 900px) { .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 500px) { .steps-row { grid-template-columns: 1fr; } }

.timeline-container { position: relative; width: 100%; }
.timeline-line {
    position: absolute; top: 30px; left: 60px; right: 60px; height: 2px;
    background: var(--border2); z-index: 0;
}
@media (max-width: 900px) { .timeline-line { display: none; } }

.timeline-progress {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--gold), #ff6b6b);
    transition: width 1s ease-out;
}

.step {
  padding: 0 32px 0 0; position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
}
@media (max-width: 900px) { .step { padding: 24px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); } }

.step-dot {
    position: relative; width: 60px; height: 60px; border-radius: 50%;
    background: var(--surface); border: 2px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    z-index: 2; transition: all 0.4s;
}
.step.active .step-dot {
    background: var(--gold); border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
}
.step.active .step-num { color: #0A0A0C; }

.step-num {
  font-family: var(--mono); font-size: 18px; font-weight: 800;
  color: var(--text2); transition: color 0.4s;
}

.step-pulse {
    position: absolute; inset: -10px; border-radius: 50%;
    border: 2px solid var(--gold); opacity: 0; pointer-events: none;
}
.step.active .step-pulse { animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1); }
@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.step-content { margin-top: 8px; }
.step-title { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--text2); line-height: 1.65; font-weight: 500; }

/* ══════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════ */
#stats {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.stats-panel-toggle {
  display: none;
}
@media (max-width: 700px) {
  .stats-panel-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 16px 20px; margin: 0; border: none; border-bottom: 1px solid var(--border);
    background: var(--surface); color: var(--text); font-size: 16px; font-weight: 700; font-family: inherit;
    cursor: pointer; text-align: left;
  }
  .stats-panel-toggle .stats-panel-icon { font-size: 22px; transition: transform 0.3s; color: var(--text2); }
  #stats[data-expanded="true"] .stats-panel-icon { transform: rotate(180deg); }
  .stats-panel-inner { overflow: hidden; transition: max-height 0.35s ease; }
  #stats:not([data-expanded="true"]) .stats-panel-inner { max-height: 0; }
  #stats[data-expanded="true"] .stats-panel-inner { max-height: 800px; }
}
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; background: var(--surface);
}
@media (max-width: 700px) { .stats-band { grid-template-columns: 1fr 1fr; } }

.stat-item {
  padding: 40px 32px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.3s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface2); }
@media (max-width: 700px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }
}

.stat-modern { text-align: center; }
.stat-circle {
    position: relative; width: 120px; height: 120px; margin: 0 auto 16px;
}
.progress-ring { transform: rotate(-90deg); position: absolute; top:0; left:0; }
.progress-ring-bg {
    fill: none; stroke: var(--border2); stroke-width: 4;
}
.progress-ring-fill {
    fill: none; stroke: url(#gradientModern); stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.292; stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-inner {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 900; color: var(--text); font-variant-numeric: tabular-nums;
}
.stat-unit { font-size: 16px; margin-left:2px; color: var(--gold); }

.stat-lbl  { font-size: 13px; font-weight: 700; color: var(--text2); letter-spacing: 0.5px; }

.stat-particles {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: radial-gradient(ellipse at bottom, var(--gold-soft) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.stat-modern:hover .stat-particles { opacity: 1; }

/* ══════════════════════════════════════════
   PORTALS — BIG CARDS
══════════════════════════════════════════ */
#portals { background: var(--bg2); }

.portals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
@media (max-width: 700px) { .portals-grid { grid-template-columns: 1fr; } }

.big-portal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 48px 40px;
  display: flex; flex-direction: column; gap: 24px;
  text-decoration: none; color: inherit;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.big-portal::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--gold-soft), transparent 65%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.big-portal:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.2); }
.big-portal:hover::after { opacity: 1; }

.bp-icon {
  width: 64px; height: 64px; border-radius: 20px;
  background: var(--gold-soft); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold);
}
.bp-title { font-size: 28px; font-weight: 900; letter-spacing: -1px; }
.bp-desc  { font-size: 15px; color: var(--text2); line-height: 1.65; font-weight: 500; flex: 1; }
.bp-action {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px;
  background: var(--gold); color: #0A0A0C;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
  align-self: flex-start;
  transition: all 0.2s;
}
.big-portal:hover .bp-action { background: var(--gold-light); }

/* ══════════════════════════════════════════
   TESTIMONIALS — MARQUEE
══════════════════════════════════════════ */
#testimonials { padding: 80px 0; background: var(--bg); overflow: hidden; border-top: 1px solid var(--border); }
#testimonials .sec-wrap { padding: 0 80px; margin-bottom: 48px; }
@media (max-width: 900px) { #testimonials .sec-wrap { padding: 0 24px; } }

.testimonials-3d {
    position: relative; padding: 20px 0 60px;
}
.carousel-container {
    perspective: 1200px; overflow: hidden; position: relative;
    padding: 40px 0; display: flex; justify-content: center; align-items: center;
}
.carousel-track {
    display: flex; align-items: center; justify-content: center;
    position: relative; width: 100%; height: 260px;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 340px; background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--border2); border-radius: 20px;
    padding: 32px; display: flex; flex-direction: column; gap: 16px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0; pointer-events: none; transform: scale(0.8) translateZ(-200px);
}
[data-theme="light"] .testimonial-card { background: var(--surface); border-color: var(--border); }
.testimonial-card.active {
    position: relative; opacity: 1; pointer-events: auto; z-index: 5;
    transform: scale(1) translateZ(0); box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(201,168,76,0.3);
}
[data-theme="light"] .testimonial-card.active { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.testimonial-card.prev, .testimonial-card.next {
    opacity: 0.5; pointer-events: auto; cursor: pointer; z-index: 4;
}
.testimonial-card.prev { transform: translateX(-65%) scale(0.85) rotateY(25deg) translateZ(-100px); }
.testimonial-card.next { transform: translateX(65%) scale(0.85) rotateY(-25deg) translateZ(-100px); }
@media (max-width: 900px) {
    .testimonial-card.prev { transform: translateX(-40%) scale(0.85) translateZ(-100px); opacity: 0; pointer-events:none;}
    .testimonial-card.next { transform: translateX(40%) scale(0.85) translateZ(-100px); opacity: 0; pointer-events:none;}
}

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--surface2); border: 1px solid var(--border);
    color: var(--text); font-size: 24px; cursor: pointer;
    display: flex; justify-content: center; align-items: center; transition: all 0.3s;
}
.carousel-btn:hover { background: var(--gold); color: #0A0A0C; border-color: var(--gold); }
.carousel-btn.prev { left: 40px; }
.carousel-btn.next { right: 40px; }
@media (max-width: 900px) {
    .carousel-btn.prev { left: 10px; } .carousel-btn.next { right: 10px; }
}

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border2); cursor: pointer; transition: all 0.3s; }
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

.tc-stars { display: flex; gap: 4px; color: var(--gold); font-size: 14px; }
.tc-text   { font-size: 15px; color: var(--text2); line-height: 1.7; font-weight: 500; font-style: italic; position: relative; }
.tc-text::before { content: '"'; font-family: var(--serif); font-size: 40px; color: var(--gold-soft); position: absolute; top: -15px; left: -10px; pointer-events: none; }
.tc-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--gold); }
.tc-name { font-size: 15px; font-weight: 800; color: var(--text); }
.tc-loc  { font-size: 12px; color: var(--muted); font-weight: 600; }

/* ══════════════════════════════════════════
   CONTACT / CTA BANNER
══════════════════════════════════════════ */
#contact {
  background: var(--bg2); border-top: 1px solid var(--border);
}
.cta-modern {
    position: relative; background: var(--surface);
    border-radius: 28px; padding: 2px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.cta-border {
    position: absolute; inset: -50%; z-index: 0;
    background: conic-gradient(from 0deg, var(--gold), #ff6b6b, #4f6bff, #22c55e, var(--gold));
    animation: ctaRotate 5s linear infinite;
}
@keyframes ctaRotate { 100% { transform: rotate(360deg); } }

.cta-content {
    position: relative; background: var(--bg); border: 1px solid var(--border);
    border-radius: 26px; padding: 60px; z-index: 1;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px;
}
.cta-content-text { flex: 1; min-width: 0; }
.cta-actions { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.cta-actions .btn-magnetic { margin-bottom: 2px; }
@media (max-width: 700px) {
  .cta-content { padding: 40px 24px; flex-direction: column !important; text-align: center; }
  .cta-actions { justify-content: center; }
}

.cta-title { font-size: clamp(32px, 5vw, 48px); font-weight: 900; letter-spacing: -2px; margin-bottom: 8px; line-height: 1; }

.shimmer-text {
    font-size: 16px; font-weight: 700;
    background: linear-gradient(90deg, var(--text2) 0%, var(--gold) 50%, var(--text2) 100%);
    background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.btn-magnetic {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--gold), #ffb347);
    border: none; padding: 18px 36px; border-radius: 16px;
    font-size: 15px; font-family: var(--cab); text-transform: uppercase; font-weight: 800; letter-spacing: 1px; color: #0A0A0C;
    cursor: pointer; transition: transform 0.3s;
    box-shadow: 0 10px 30px var(--gold-glow);
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none;
}
.btn-magnetic:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 40px var(--gold-glow); }
.btn-shine {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg); transition: none; pointer-events: none; z-index: 1;
}
.btn-magnetic:hover .btn-shine { animation: shine 0.6s; }
@keyframes shine { to { left: 200%; } }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 40px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
@media (max-width: 700px) { footer { padding: 32px 24px; flex-direction: column; text-align: center; } }
.foot-copy { font-size: 13px; color: var(--muted); font-weight: 500; }
.foot-links { display: flex; gap: 24px; }
.foot-link  { font-size: 12px; color: var(--muted); font-weight: 600; transition: color 0.2s; }
.foot-link:hover { color: var(--gold); }
.foot-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.foot-badge span { color: var(--gold); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   TICKER — sliderın hemen altında, features’tan önce
══════════════════════════════════════════ */
.ticker-wrap {
  position: relative;
  width: 100%;
  height: 44px;
  background: var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0;
}
.ticker-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 20px;
  background: rgba(10,10,12,0.25);
  color: #0A0A0C;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker-label i { font-size: 16px; opacity: 0.95; }
.ticker-track {
  flex: 1;
  display: flex;
  white-space: nowrap;
  min-width: 0;
  animation: ticker 35s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0A0A0C;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(10,10,12,0.45);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MODALS UI
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px;
}
.modal-content {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-xl); padding: 56px 48px; width: 100%; max-width: 440px;
  position: relative; box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.modal-content::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
}

.modal-close {
  position: absolute; top: 24px; right: 24px; width: 40px; height: 40px;
  border-radius: 12px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); color: var(--muted);
  background: var(--surface2);
}
.modal-close:hover { color: var(--text); border-color: var(--gold); transform: rotate(90deg); background: var(--gold-soft); }

.modal-header { margin-bottom: 32px; }
.modal-title { font-size: 32px; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 8px; line-height: 1; }
.modal-sub   { font-size: 14px; color: var(--text2); font-weight: 500; line-height: 1.5; }

.input-container { margin-bottom: 24px; }
.input-label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 10px; }
.input-wrap {
  position: relative; display: flex; align-items: center;
}
.input-wrap i { 
    position: absolute; left: 18px; color: var(--muted); font-size: 18px; 
    transition: color 0.3s;
}
.input-wrap input {
  width: 100%; padding: 18px 20px 18px 54px; border-radius: 16px;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--cab); font-size: 15px; font-weight: 600;
  transition: all 0.3s;
}
.input-wrap input:focus { 
    outline: none; border-color: var(--gold); background: var(--surface); 
    box-shadow: 0 0 0 5px var(--gold-soft); 
}
.input-wrap input:focus + i { color: var(--gold); }

.btn-auth-submit {
    width: 100%; height: 60px; border-radius: 18px;
    background: var(--gold); color: #0A0A0C;
    font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px;
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    gap: 12px; transition: all 0.3s;
    box-shadow: 0 8px 24px var(--gold-glow);
}
.btn-auth-submit:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--gold-glow);
}
.btn-auth-submit:disabled {
    opacity: 0.6; cursor: not-allowed; transform: none;
}

.auth-footer {
    margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
    text-align: center; font-size: 14px; color: var(--text2); font-weight: 500;
}
.auth-switch-link {
    color: var(--gold); font-weight: 800; text-decoration: none;
    margin-left: 5px; transition: color 0.2s;
}
.auth-switch-link:hover { color: var(--gold-light); text-decoration: underline; }

/* Auth modal: slightly smaller inputs & button */
#authModal .input-wrap input {
  padding: 14px 18px 14px 50px;
  border-radius: 14px;
  font-size: 14px;
}
#authModal .btn-auth-submit {
  height: 52px;
  border-radius: 16px;
  font-size: 13px;
}

/* ══════════════════════════════════════════
   BOOKING MODAL SELECT
══════════════════════════════════════════ */
#addressSelect:hover {
    border-color: var(--border2);
}
#addressSelect:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-soft);
    background: var(--surface);
}
#addressSelect option {
    background: var(--surface);
    color: var(--text);
    padding: 10px;
}

.hidden { display: none !important; }
.call-status-pill { display: flex; align-items: center; gap: 25px; }
.animate-fade { animation: modalFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes modalFade { 
    from { opacity:0; transform: scale(0.95) translateY(20px); } 
    to { opacity:1; transform: scale(1) translateY(0); } 
}
@keyframes homeToastIn { from { opacity: 0; transform: translateX(-50%) translateY(12px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes homeToastOut { from { opacity: 1; transform: translateX(-50%) translateY(0); } to { opacity: 0; transform: translateX(-50%) translateY(-8px); } }

/* ══════════════════════════════════════════
   MOBİL / KÜÇÜK EKRAN — Taşma önleme, nesneler sığsın
══════════════════════════════════════════ */
html, body { min-width: 0; }
body > * { max-width: 100vw; }

@media (max-width: 480px) {
  .navbar { padding: 0 10px 0 12px; gap: 6px; }
  .nav-logo { gap: 8px; }
  .nav-brand { font-size: 12px; max-width: 90px; }
  .nav-city { font-size: 8px; letter-spacing: 2px; max-width: 90px; }
  .nav-emblem { width: 32px; height: 32px; flex-shrink: 0; }
  .nav-wordmark { min-width: 0; }
  .theme-btn { width: 34px; height: 34px; flex-shrink: 0; }
  .nav-user-dropdown-toggle { width: 34px; height: 34px; font-size: 16px; }
  .hamburger { width: 34px; height: 34px; flex-shrink: 0; }
  .nav-right { gap: 4px; }
  .hero { padding-top: 200px; }
  .slides { top: 200px; }
  .hero-grid { top: 200px; }
  .hero-content { padding: 20px 16px 24px; gap: 24px; }
  .glass-panel { padding: 20px 18px; border-radius: 20px; }
  .hero-title { font-size: clamp(28px, 8vw, 42px); letter-spacing: -1.5px; }
  .hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 24px; }
  .hero-actions { gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 18px; font-size: 12px; }
  .portal-card-mini { padding: 16px 18px; gap: 14px; }
  .pcm-icon { width: 44px; height: 44px; font-size: 18px; }
  .pcm-title { font-size: 14px; }
  .pcm-desc { font-size: 11px; }
  section { padding: 48px 16px; }
  .sec-title { font-size: clamp(26px, 6vw, 36px); }
  .feat-card { padding: 28px 20px; }
  .feat-title { font-size: 18px; }
  .feat-desc { font-size: 13px; }
  .step { padding: 20px 16px 20px 0; }
  .step-title { font-size: 16px; }
  .step-desc { font-size: 12px; }
  .stat-item { padding: 28px 20px; }
  .stat-circle { transform: scale(0.82); transform-origin: center top; }
  .stat-inner .count-up { font-size: 22px; }
  .stat-unit { font-size: 14px; }
  .stat-lbl { font-size: 12px; }
  .cta-modern { margin: 0 16px; border-radius: 20px; }
  .cta-content { padding: 28px 20px !important; gap: 20px !important; }
  .cta-title { font-size: clamp(22px, 6vw, 28px); }
  .cta-actions { flex-wrap: wrap !important; justify-content: center !important; gap: 10px !important; }
  .btn-magnetic { padding: 14px 20px; font-size: 13px; border-radius: 14px; }
  footer { padding: 24px 16px; gap: 16px; }
  .foot-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .foot-badge { flex-wrap: wrap; justify-content: center; text-align: center; }
  .modal-overlay { padding: 12px; align-items: flex-start; padding-top: 40px; }
  .modal-content { padding: 32px 20px; max-width: calc(100vw - 24px); border-radius: 20px; }
  /* Auth modal mobile tuning: deter ve daha küçük genişlik */
  #authModal .modal-content {
    max-width: 360px;
    padding: 26px 18px 24px;
  }
  .modal-title { font-size: 24px; }
  .modal-sub { font-size: 13px; }
  .slider-nav { left: 16px; bottom: 20px; }
  .slide-counter { right: 16px; bottom: 20px; }
  .slide-counter .sc-current { font-size: 24px; }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 20px; }
  #testimonials .sec-wrap { padding: 0 16px; margin-bottom: 32px; }
  .testimonial-card { width: min(340px, calc(100vw - 32px)); }
}

@media (max-width: 380px) {
  .navbar { padding: 0 8px 0 10px; gap: 4px; }
  .nav-brand { font-size: 11px; max-width: 72px; }
  .nav-city { max-width: 72px; }
  .nav-emblem { width: 28px; height: 28px; }
  .theme-btn, .nav-user-dropdown-toggle, .hamburger { width: 32px; height: 32px; }
  .theme-btn { font-size: 16px; }
  .nav-user-dropdown-toggle { font-size: 15px; }
  .glass-panel { padding: 18px 14px; }
  .hero-title { font-size: 26px; }
  section { padding: 40px 12px; }
  .cta-content { padding: 24px 16px !important; }
  .btn-magnetic { padding: 12px 16px; font-size: 12px; }
  footer { padding: 20px 12px; }
}

/* Contact panel ve status pill taşmasın */
#contact .cta-content { box-sizing: border-box; }
#contact .cta-actions { max-width: 100%; }
.call-status-pill {
  left: 50%; transform: translateX(-50%);
  max-width: calc(100vw - 24px); min-width: 0;
  padding: 8px 12px 8px 16px; gap: 12px;
}
@media (max-width: 480px) {
  .call-status-pill { max-width: calc(100vw - 16px); min-width: 260px; }
}
