/* Customer Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  width: 100%;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.reviews-section h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #333, #f7be16);
  margin: 20px auto 0;
  border-radius: 2px;
}

.reviews-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #f7be16;
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.review-stars i {
  color: #f7be16;
  font-size: 1.2rem;
}

.review-text {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 25px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f7be16, #ffc107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info h4 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f7be16;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

.reviews-cta {
  text-align: center;
}

.reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f7be16, #ffc107);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 280px;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(247, 190, 22, 0.3);
}

.reviews-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 190, 22, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-section h2 {
    font-size: 2.2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .review-card {
    padding: 30px 25px;
  }

  .reviews-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 25px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .reviews-btn {
    min-width: 250px;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .reviews-section h2 {
    font-size: 1.8rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    padding: 25px 20px;
  }

  .reviews-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .reviews-btn {
    font-size: 1rem;
    padding: 15px 25px;
  }
}
