/*--------------------------------------------------------------
# Modernizovaná sekce recenzí
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background: #f8fbfe;
}

.testimonials .section-title {
  margin-bottom: 40px;
}

.testimonials .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.testimonials .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #4fa6d5;
  bottom: 0;
  left: calc(50% - 25px);
}

.testimonial-item {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-item .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f8fbfe;
  margin: 0 auto 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2e3135;
  margin-bottom: 10px;
  text-align: center;
}

.testimonial-item p {
  font-style: italic;
  font-size: 15px;
  margin: 0;
  padding: 0 0 0 25px;
  position: relative;
  color: #5e6066;
  line-height: 1.8;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
  color: #4fa6d5;
  font-size: 24px;
  line-height: 0;
}

.testimonial-item .quote-icon-left {
  display: inline-block;
  left: 0;
  position: absolute;
  top: 5px;
}

.testimonial-item .quote-icon-right {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1ecf7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4fa6d5;
}

/* Responzivní styling */
@media (max-width: 767px) {
  .testimonial-item {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .testimonial-item .testimonial-img {
    width: 70px;
    height: 70px;
  }
  
  .testimonial-item h3 {
    font-size: 18px;
  }
  
  .testimonial-item p {
    font-size: 14px;
  }
  
  .testimonials .section-title h2 {
    font-size: 28px;
  }
}