/* ============================================
   SUNDAS FOUNDATION — Hero / Banner Sections
   ============================================ */

/* ---- Hero Slider ---- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide--active {
  opacity: 1;
}

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

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(26, 26, 46, 0.5) 50%,
    rgba(26, 26, 46, 0.3) 100%
  );
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 var(--container-pad);
  z-index: 2;
}

.hero__subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 1px solid rgba(232, 168, 23, 0.4);
  border-radius: 30px;
}

.hero__title {
  font-size: var(--fs-5xl);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__text {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Slider Navigation ---- */
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  z-index: 3;
}

.hero__nav:hover {
  background: var(--color-primary);
}

.hero__nav--prev {
  left: 20px;
}

.hero__nav--next {
  right: 20px;
}

.hero__nav svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ---- Slider Dots ---- */
.hero__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 3;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.hero__dot--active {
  background: var(--color-primary);
  width: 32px;
  border-radius: 6px;
}

/* ---- Stats Counter Bar ---- */
.stats-bar {
  background: var(--color-primary);
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stats-bar__item {
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.2;
}

.stats-bar__number span {
  font-size: var(--fs-xl);
}

.stats-bar__label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
}
