


/* ==========================================
   TESTIMONIALS SECTION - DIOR LUXURY STYLE
   ========================================== */

.testimonials-dior-luxury {
  padding: 120px 0;
  background: linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
}

.testimonials-dior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 80px;
}

.testimonial-dior-card {
  background: white;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #f0f0f0;
}

.testimonial-dior-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transition: width 0.5s ease;
}

.testimonial-dior-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.testimonial-dior-card:hover::before {
  width: 100%;
}

.testimonial-dior-quote {
  margin-bottom: 25px;
}

.testimonial-dior-quote i {
  font-size: 32px;
  color: #ff8c42;
  opacity: 0.3;
}

.testimonial-dior-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.testimonial-dior-rating i {
  font-size: 14px;
  color: #ff8c42;
}

.testimonial-dior-text {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 35px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-dior-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}



.testimonial-dior-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-dior-author h5 {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-dior-author span {
  font-size: 12px;
  color: #999;
}

/* ==========================================
   RESPONSIVE - TESTIMONIALS SECTION
   ========================================== */

/* Large Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .testimonials-dior-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .testimonial-dior-card {
    padding: 40px 30px;
  }
}

/* Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .testimonials-dior-luxury {
    padding: 90px 0;
  }

  .testimonials-dior-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .testimonial-dior-card {
    padding: 35px 25px;
  }

  .testimonial-dior-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .testimonial-dior-author img {
    width: 45px;
    height: 45px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .testimonial-dior-card {
    padding: 30px 20px;
  }

  .testimonial-dior-quote i {
    font-size: 26px;
  }

  .testimonial-dior-text {
    font-size: 13px;
  }

  .testimonial-dior-author h5 {
    font-size: 13px;
  }

  .testimonial-dior-author span {
    font-size: 11px;
  }
}
