/* Modern Testimonial Carousel Styles */
.testimonials-section {
  background: linear-gradient(135deg, #F4EFEA 0%, #DCD9D5 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAwIDAgTDIwMCAxMDAgTDEwMCAyMDAgTDAgMTAwIFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==');
  opacity: 0.5;
  z-index: 0;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.testimonials-heading {
  color: #181616;
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-size: 4.5vw;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  line-height: 4vw;
  max-width: 80%;
  margin: 0 auto 60px;
}

.testimonials-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.prev-btn, .next-btn {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #181616;
  transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.prev-btn:active, .next-btn:active {
  transform: translateY(0);
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #181616;
  transform: scale(1.2);
}

/* Testimonials Track and Cards */
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #38002A;
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta {
  margin-left: 20px;
}

.testimonial-name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-title {
  font-size: 16px;
  line-height: 16px;
  color: #777;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 16px;
}

.testimonial-content {
  position: relative;
  padding: 20px 0;
  flex-grow: 1;
}

.quote-mark {
  font-size: 60px;
  line-height: 0.5;
  position: absolute;
  color: rgba(252, 105, 97, 0.1);
  font-family: Georgia, serif;
}

.quote-open {
  top: 10px;
  left: -10px;
}

.quote-close {
  bottom: 0;
  right: -10px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.testimonial-footer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.client-logo {
  max-height: 50px;
  display: flex;
  align-items: center;
}

.client-logo img {
  max-height: 100%;
  max-width: 150px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.client-logo img:hover {
  opacity: 1;
}

/* Brands Section */
.testimonials-brands {
  margin-top: 80px;
  text-align: center;
}

.brands-heading {
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.brands-logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.brand-logo {
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.brand-logo img {
  height: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.brand-logo:hover img {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .testimonials-heading {
	font-size: 36px;
  }
  
  .testimonial-card {
	padding: 25px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
	padding: 60px 0;
  }
  
  .testimonials-heading {
	font-size: 28px;
	margin-bottom: 40px;
  }
  
  .testimonial-header {
	flex-direction: column;
	text-align: center;
  }
  
  .testimonial-meta {
	margin-left: 0;
	margin-top: 15px;
  }
  
  .testimonial-content p {
	font-size: 15px;
  }
  
  .brand-logo {
	height: 30px;
	padding: 8px 15px;
  }
}