.feedback-section-section {
  background-color: transparent;
  background-image: linear-gradient(160deg, #93cd3d 0%, #009354 40%);
}

.feedback-section {
  backdrop-filter: blur(10px);
  padding: 40px;
  max-width: 1245px;
  width: 100%;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  padding: 0 45px;
}

.feedback-item {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-item:hover {
  transform: translateY(-8px);
}

.feedback-image {
  width: 100%;
  height: 280px;
  margin: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.379);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
  /* backdrop-filter: blur(10px); */
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-controls:hover {
  background: rgba(255, 255, 255, 1);
  color: #2d3748;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(223, 223, 224, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator.active {
  background: #fff;
  transform: scale(1.3);
}

.indicator:hover {
  background: rgba(222, 222, 222, 0.6);
  transform: scale(1.1);
}

.mobile-slide {
  display: none;
}

/* Mobile styles - 1 image per slide */
@media (max-width: 768px) {
  .carousel-slide:not(.mobile-slide) {
    display: none;
  }

  .mobile-slide {
    display: flex;
  }

  .feedback-section {
    padding: 20px;
  }

  .section-title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .carousel-slide {
    gap: 0;
    padding: 0;
    justify-content: center;
  }

  .feedback-image {
    height: 300px;
  }

  .carousel-controls {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 42px;
  }

  .feedback-image {
    height: 180px;
  }

  .carousel-slide {
    gap: 10px;
  }

  .feedback-item {
    border-radius: 8px;
  }
}

/* Desktop specific - 3 images per slide */
@media (min-width: 769px) {
  .feedback-item {
    max-width: calc(33.333% - 14px);
  }
}

/* Mobile specific - 1 image per slide */
@media (max-width: 768px) {
  .feedback-item {
    max-width: 100%;
    margin: 0 auto;
  }
}
