:root {
  --primary-color: #ffffff;
}

.promo {
  padding: 80px 0;
  overflow: hidden;
  margin-top: 30px;
}

.promo__slider {
  border-radius: 40px;
  overflow: hidden;
}

.promo__wrapper {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  width: 100%;
}

@media (max-width: 991.98px) {
  .promo__wrapper {
    padding: 60px 30px;
    min-height: auto;
  }
}

.promo__title {
  color: #ffffff;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 991.98px) {
  .promo__title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
  }
}

.promo__image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo__image {
  max-width: 110%;
  height: auto;
  transform-origin: center;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.15));
  will-change: transform;
}

@media (max-width: 991.98px) {
  .promo__image {
    max-width: 80%;
  }
}

/* Swiper Pagination Styling */
.promo__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  left: 80px;
  bottom: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
  width: auto;
  z-index: 10;
}

@media (max-width: 991.98px) {
  .promo__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}

.promo__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo__pagination .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.promo__pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
  transform: scale(1.2);
}