.review-section {
  background: #0d0d0d;
  color: #fff;
  padding: 90px 0;
  font-family: 'Poppins', sans-serif;
}

.review-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-subtitle {
  font-size: 1rem;
  opacity: 0.75;
}

/* Review card */
.review-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.review-card.active {
  border: 1px solid #e6b65c;
}

.review-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, #222, #141414);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* User info */
.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e6b65c;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-user h6 {
  margin: 0;
  font-size: 0.95rem;
}

.review-user span {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .review-title {
    font-size: 2.2rem;
  }
}
