/* ============================================
   TESTIMONIANZE SECTION
   ============================================ */
/* Swiper Container */
.testimonials-swiper {
  padding: 20px 5px 60px 5px;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
@media (min-width: 768px) {
  .testimonials-swiper {
    padding: 20px 40px 60px 40px;
  }
}

section.visible .testimonials-swiper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  width: 100%;
  max-width: 100%;
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .testimonial-card {
    max-width: 450px;
    padding: 30px;
  }
}

.testimonial-card:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(100, 150, 255, 0.15);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  color: #FFD700;
  font-size: 20px;
}

.testimonial-text {
  line-height: 1.8;
  color: #c7cdd8;
  margin: 0 0 25px 0;
  opacity: 1;
  transform: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(100, 150, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #4da6ff;
  border: 2px solid rgba(100, 150, 255, 0.3);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-info strong {
  font-size: 18px;
  color: #fff;
}

.author-info span {
  font-size: 15px;
  color: #a0a8b8;
}

/* Swiper Navigation Buttons */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  display: none;
  color: #4da6ff;
  width: 40px;
  height: 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: flex;
    width: 50px;
    height: 50px;
  }
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 20px;
  }
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.5);
  transform: scale(1.1);
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(100, 150, 255, 0.3);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #4da6ff;
  width: 30px;
  border-radius: 6px;
}

.client-logos-section {
  margin-top: 60px;
  text-align: center;
}

.logos-title {
  font-size: 24px;
  color: #4da6ff;
  margin: 0 0 30px 0;
  opacity: 1;
  transform: none;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.client-logo-placeholder {
  height: 80px;
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a8b8;
  transition: all 0.3s ease;
}

.client-logo-placeholder:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}