/* Reviews Page */
.reviews-page {
  padding: 90px 0;
  background: #F8FAFC;
  font-family: 'Inter', sans-serif;
  color: #0A2540;
}

/* Header */
.reviews-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
}

.reviews-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.reviews-header p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reviews-google {
  display: inline-block;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Review Card */
.review-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: flex-start !important;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* Card Top */
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-top h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.review-top span {
  font-size: 0.9rem;
  color: #64748B;
}

/* Date */
.review-date {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 15px;
}

/* Text */
.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-header h1 {
    font-size: 2.2rem;
  }

  .reviews-page {
    padding: 50px 0px;
  }
}
