.chauffalya-testimonials {
  background: #e8fff3;
  padding: 25px 16px 35px;
  font-family: Arial, sans-serif;
}

.testimonial-title {
  text-align: center;
  margin-bottom: 35px;
}

.testimonial-title h2 {
  font-size: 30px;
  margin: 0 0 12px;
  color: #000;
}

.testimonial-title p {
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

.google-summary {
  background: #d9f2e6;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.google-title {
  font-size: 24px;
  font-weight: 700;
}

.google-title span {
  color: #4285f4;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}

.google-rating strong {
  font-size: 28px;
  color: #000;
}

.google-rating span {
  color: #ffb400;
  font-size: 28px;
  letter-spacing: -3px;
}

.google-rating small {
  color: #777;
  font-size: 14px;
}

.google-summary a,
.google-summary a:visited,
.google-summary a:hover,
.google-summary a:active {
  background: #1a73e8;
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 16px;
}

.reviews-area {
  position: relative;
}

.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.chauffalya-review-card {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
  max-width: calc(25% - 18px);
  background: #d9f2e6;
  border-radius: 38px;
  padding: 28px;
  box-sizing: border-box;
}

.chauffalya-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.chauffalya-review-avatar {
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #4285f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

.chauffalya-review-name {
  font-weight: 700;
  font-size: 17px;
  color: #000;
}

.chauffalya-review-date {
  color: #777;
  font-size: 13px;
  margin-top: 5px;
}

.chauffalya-review-stars {
  color: #ffb400;
  font-size: 23px;
  letter-spacing: -3px;
  margin-bottom: 8px;
}

.chauffalya-review-text {
  font-size: 17px;
  line-height: 1.45;
  color: #000;
  max-height: 96px;
  overflow: hidden;
}

.chauffalya-review-text.expanded {
  max-height: none;
}

.chauffalya-read-more {
  background: none;
  border: none;
  padding: 0;
  margin-top: 8px;
  color: #777;
  font-size: 16px;
  cursor: pointer;
}

.chauffalya-read-more:hover {
  text-decoration: underline;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(80, 80, 80, 0.75);
  color: white;
  font-size: 34px;
  cursor: pointer;
}

.review-arrow-left {
  left: -10px;
}

.review-arrow-right {
  right: -10px;
}

.reviews-footer {
  text-align: center;
  margin-top: 25px;
}

.reviews-footer a,
.reviews-footer a:visited {
  color: #1a73e8;
  font-weight: 700;
  text-decoration: none;
}

.reviews-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .chauffalya-review-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .google-summary {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .chauffalya-review-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .testimonial-title p {
    font-size: 16px;
  }

  .review-arrow-left {
    left: 0;
  }

  .review-arrow-right {
    right: 0;
  }
}