/* ===================== Hero Banner (New Slider Design) ===================== */
.hero-banner {
  position: relative;
  display: block;
  background-color: var(--builza-black);
  z-index: 10;
}

.hero-banner__carousel .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-banner__slide-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 110px 0 80px;
}

.hero-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transition: transform 7000ms ease;
}

.hero-banner__carousel .swiper-slide-active .hero-banner__bg {
  transform: scale(1);
}

.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(var(--builza-black-rgb), .85) 0%,
      rgba(var(--builza-black-rgb), .5) 25%,
      rgba(var(--builza-black-rgb), 0) 48%,
      rgba(var(--builza-black-rgb), 0) 100%);
}

.hero-banner__content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.hero-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--builza-base);
  font-family: var(--builza-font-two);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1200ms ease;
  transition-delay: 300ms;
}

.hero-banner__eyebrow span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--builza-base);
  margin-right: 12px;
}

.hero-banner__title {
  color: var(--builza-white);
  font-family: var(--builza-font-two);
  font-size: 56px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 22px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1200ms ease;
  transition-delay: 500ms;
}

.hero-banner__title span {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-family: var(--builza-font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 14px;
}

.hero-banner__btn-box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1200ms ease;
  transition-delay: 700ms;
  margin-bottom: 36px;
}

.hero-banner__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1200ms ease;
  transition-delay: 900ms;
}

.hero-banner__tags li {
  color: var(--builza-white);
  font-family: var(--builza-font-two);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 30px;
  background-color: rgba(255, 255, 255, .06);
  backdrop-filter: blur(2px);
}

.hero-banner__carousel .swiper-slide-active .hero-banner__eyebrow,
.hero-banner__carousel .swiper-slide-active .hero-banner__title,
.hero-banner__carousel .swiper-slide-active .hero-banner__btn-box,
.hero-banner__carousel .swiper-slide-active .hero-banner__tags {
  opacity: 1;
  transform: translateY(0);
}

/* Numbered pagination, vertical on the right */
#hero-banner-pagination {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#hero-banner-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  opacity: 1;
  border-radius: 0;
  color: rgba(255, 255, 255, .5);
  font-family: var(--builza-font-two);
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 !important;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  transition: color 300ms ease;
}

#hero-banner-pagination .swiper-pagination-bullet:after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  margin: 6px auto 0;
  background-color: rgba(255, 255, 255, .25);
}

#hero-banner-pagination .swiper-pagination-bullet:last-child:after {
  display: none;
}

#hero-banner-pagination .swiper-pagination-bullet-active {
  color: var(--builza-base);
}

/* Prev / next arrows, bottom right */
.hero-banner__nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 6;
  display: flex;
  gap: 12px;
}

.hero-banner__nav-prev,
.hero-banner__nav-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--builza-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
}

.hero-banner__nav-prev:hover,
.hero-banner__nav-next:hover {
  background-color: var(--builza-base);
  border-color: var(--builza-base);
}

@media (max-width: 1199px) {
  .hero-banner__slide-inner {
    min-height: 480px;
    padding: 100px 0 70px;
  }

  .hero-banner__title {
    font-size: 42px;
  }

  #hero-banner-pagination,
  .hero-banner__nav {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .hero-banner__slide-inner {
    min-height: auto;
    padding: 120px 0 90px;
  }

  .hero-banner__title {
    font-size: 30px;
  }

  .hero-banner__title span {
    font-size: 16px;
  }

  #hero-banner-pagination {
    display: none;
  }

  .hero-banner__nav {
    right: 20px;
    bottom: 20px;
  }

  .hero-banner__nav-prev,
  .hero-banner__nav-next {
    width: 40px;
    height: 40px;
  }
}
