/* ── Hero Slider ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.slider-container {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}
.slider-container .slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.slider-container .slide.active { opacity: 1; }
.slider-container .slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,17,32,0.92) 0%, rgba(11,17,32,0.7) 50%, rgba(11,17,32,0.88) 100%);
}
.slider-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.slider-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dots span.active { background: var(--accent); transform: scale(1.3); }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 24px; z-index: 2; pointer-events: none;
}
.slider-arrows button {
  pointer-events: auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,17,32,0.6); border: 1px solid var(--border-subtle);
  color: var(--text-primary); font-size: 1.2rem; cursor: pointer;
  transition: all 0.25s; backdrop-filter: blur(4px);
}
.slider-arrows button:hover { background: var(--accent); color: #0b1120; border-color: var(--accent); }

.hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 760px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px; border-radius: 100px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: var(--accent-light); font-size: 0.82rem; font-weight: 500;
  margin-bottom: 24px;
}
.hero-content h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.hero-content h1 span { color: var(--accent); }
.hero-content .hero-title { font-size: 1.2rem; font-weight: 400; color: var(--text-secondary); margin-bottom: 8px; }
.hero-content .hero-location { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
