/* CUSTOMER REVIEWS SECTION */
.reviews-section {
  /* Slightly tighter padding so the band isn't so tall */
  padding: 60px 40px;
  /* Soft neutral background to match site palette (no green) */
  background: #f8f9fa;
}

.reviews-container {
  /* Comfortable width so cards are centered and not too skinny */
  max-width: 1300px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  /* Always show three horizontal cards on desktop */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-items: stretch;
}

.review-card {
  background: #ffffff;
  border-radius: 18px;
  /* Reduce inner padding so cards feel less tall */
  padding: 20px 22px 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote-icon {
  font-size: 32px;
  /* Use primary brand red for quote icon instead of green */
  color: var(--primary-red);
  margin-bottom: 16px;
}

.review-quote {
  font-size: 15px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 18px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-blue);
}

.author-location {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
