/* Swiper Container */
.swiper-multi {
  width: 100%;
  max-width: 1280px;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.swiper-multi .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.swiper-multi .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center!important;
  align-items: center!important;
}

.swiper-multi .swiper-slide .container {
  width: 100%;
  max-width: 1280px;
  height: auto;
  min-height: 500px;
  margin: 0 auto;
}

/* Pagination container */
.swiper-pagination {
  position: absolute;
  left: 30px;
  bottom: 30px;
  margin-top: 20px;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Progress bar'lar */
.swiper-pagination-bullet {
  width: 55px;
  height: 4px;
  background: rgb(255, 255, 255);
  opacity: 1;
  margin: 0;
  cursor: pointer;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: none;
}

.swiper-pagination-bullet:hover {
  background: #ccc;
}

/* Dolma efekti */
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #11A6C3;
  border-radius: 20px;
  transition: width 0.1s linear;
}

/* Aktif bullet - dolma animasyonu */
.swiper-pagination-bullet-active::before {
  width: calc(var(--progress, 0) * 100%);
}

/* Geçmiş slide'lar tamamen dolu */
.swiper-pagination-bullet-active ~ .swiper-pagination-bullet::before {
  width: 0%;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 45px;
    height: 3px;
  }
}

/* Video responsive */
.swiper-multi video {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .swiper-multi .swiper-slide .container {
    min-height: 400px;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .swiper-pagination-bullet-active::before {
    width: 18px;
    height: 18px;
  }
}
