.testimonials-section {
  background: #f8f9fa;
  padding: 40px 0;
  width: 100%;
  border-top: 1px solid #eee;
}

.testimonials-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.testimonial-card {
  background: white;
  padding: 25px;
  margin: 0 15px;
  border: 1px solid #eee;
  transition: transform 0.2s;
  height: 100%;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.testimonial-country {
  color: #7f8c8d;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.testimonial-route {
  color: #3498db;
  font-size: 0.9em;
  margin-bottom: 8px;
}

.testimonial-stars {
  color: #f1c40f;
}

.testimonial-text {
  color: #34495e;
  font-style: italic;
  line-height: 1.5;
  font-size: 0.95em;
  margin: 0;
}

.testimonial-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  background: #e1f0ff;
  color: #3498db;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-size: 2em;
  font-weight: 600;
}

/* Slick slider özelleştirmeleri */
.slick-slide {
  padding: 0 10px;
}

.slick-list {
  margin: 0;
  padding-bottom: 14px;
}

.slick-dots li button {
  border: 2px solid #555c7a;
}

.slick-track {
  display: flex !important;
}

.slick-slide>div {
  height: 100%;
}

.testimonial-content {
  position: relative;
}

.original-text {
  margin-bottom: 10px;
}

.translation-summary {
  font-size: 0.9em;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 8px;
}

.translation-summary p {
  display: none;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Dil seçimine göre gösterilecek çeviri */
html[lang="tr"] .translation-summary .tr,
html[lang="de"] .translation-summary .de,
html[lang="fr"] .translation-summary .fr {
  display: block;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
  .testimonial-card {
    margin: 0 10px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    margin: 0 5px;
    padding: 15px;
  }

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