/* ===========================
   Testimonials Section with Owl Carousel
   =========================== */

.testimonials-section {
  position: relative;
  padding: 80px 0;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.testimonials-container {
  width: 100%;
}

/* Owl Carousel Styles */
.testimonials-carousel {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.testimonials-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonials-carousel .owl-item {
  height: auto;
  padding: 15px;
}

/* Testimonial Card */
.testimonial-card {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(200, 154, 63, 0.05));
  border: 1px solid rgba(200, 154, 63, 0.15);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  border-color: rgba(200, 154, 63, 0.35);
  box-shadow: 0 15px 50px rgba(200, 154, 63, 0.1);
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(200, 154, 63, 0.08));
}

/* Testimonial Content */
.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  letter-spacing: 1px;
}

/* Star Rating */
.testimonial-rating {
  display: flex;
  gap: 8px;
  margin: 0;
}

.testimonial-rating i {
  font-size: 14px;
  color: #c89a3f;
}

/* Author Info */
.testimonial-author {
  border-top: 1px solid rgba(200, 154, 63, 0.2);
  padding-top: 20px;
}

.author-info {
  text-align: left;
}

.author-name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: 1px;
}

.author-title {
  margin: 0;
  font-size: 13px;
  color: rgba(200, 154, 63, 0.8);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Owl Carousel Navigation */
.testimonials-carousel .owl-nav {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.testimonials-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(200, 154, 63, 0.3);
  background: transparent;
  color: #c89a3f;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.testimonials-carousel .owl-nav button:hover {
  background: rgba(200, 154, 63, 0.15);
  border-color: #c89a3f;
  box-shadow: 0 0 20px rgba(200, 154, 63, 0.2);
}

.testimonials-carousel .owl-nav button span {
  font-size: 20px;
}

/* Owl Carousel Dots */
.testimonials-carousel .owl-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
}

.testimonials-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(200, 154, 63, 0.2);
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.testimonials-carousel .owl-dot.active {
  background: #c89a3f;
  border-color: #c89a3f;
}

.testimonials-carousel .owl-dot:hover {
  border-color: #c89a3f;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-name {
    font-size: 15px;
  }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .testimonial-rating i {
    font-size: 12px;
  }

  .author-name {
    font-size: 14px;
  }

  .author-title {
    font-size: 12px;
  }

  .testimonials-carousel .owl-nav {
    bottom: -70px;
  }

  .testimonials-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .testimonials-carousel .owl-dots {
    bottom: -50px;
  }

  .testimonials-carousel .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
  }
}
