/* Custom Testimonials Section Inspired by Reference Image */
.section-testimonials-custom {
  background-color: transparent;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.testimonials-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-left {
  flex: 1;
  max-width: 450px;
}

.testimonials-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: -0.03em;
}

.testimonials-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.testimonials-btn {
  display: inline-block;
  background: linear-gradient(90deg, #A01010, #FF4326);
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 67, 38, 0.3);
}

.testimonials-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 67, 38, 0.4);
}

.testimonials-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.testimonial-box {
  background: white;
  border-radius: 8px;
  padding: 24px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  display: flex;
  gap: 20px;
  max-width: 480px;
  width: 100%;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.testimonial-box:hover {
  transform: translateX(-5px);
}

/* Staggering layout from the image */
.testimonial-box:nth-child(1) {
  margin-left: auto;
  margin-right: 40px;
}

.testimonial-box:nth-child(2) {
  margin-left: 20px;
  border-left: 5px solid #FF4326; /* Brand red highlight */
  box-shadow: 0 15px 50px rgba(255, 67, 38, 0.1);
}

.testimonial-box:nth-child(3) {
  margin-left: auto;
  margin-right: 0px;
}

.testi-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: white;
  background-color: #222;
  background-size: cover;
  background-position: center;
}

/* Avatar Colors if no image */
.testimonial-box:nth-child(1) .testi-avatar { background-color: #2b3a55; }
.testimonial-box:nth-child(2) .testi-avatar { background-color: #e9a1a1; color: #111; }
.testimonial-box:nth-child(3) .testi-avatar { background-color: #d1d8e0; color: #111; }

.testi-content {
  flex: 1;
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.testi-name {
  font-weight: 800;
  color: #111;
  font-size: 17px;
  font-family: 'Inter Tight', sans-serif;
}

.testi-quote-icon {
  color: #FF4326;
  opacity: 0.4;
  font-size: 28px;
  line-height: 1;
  font-family: serif;
}

.testi-text {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .testimonials-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .testimonials-left {
    max-width: 100%;
  }
  
  .testimonials-title {
    font-size: 40px;
  }
  
  .testimonial-box {
    margin: 0 auto !important; /* Remove staggering on mobile */
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-testimonials-custom {
    padding: 60px 0;
  }

  .testimonial-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 15px;
  }
  
  .testi-header {
    flex-direction: column;
    gap: 5px;
  }
}
