/* ===== Reviews Hero Section ===== */
.reviews-hero {
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  height: 100%;
}

.reviews-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
}

/* ===== Reviews Section ===== */
.reviews-section {
  background: linear-gradient(to bottom, #fdfdfd, #f4f4f4);
  padding: 100px 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.section-heading p {
  font-size: 18px;
  color: #555;
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #cc6600;
}

.review-header h3 {
  font-size: 18px;
  margin: 0;
  color: #222;
}

.review-header span {
  font-size: 14px;
  color: #777;
}

.stars {
  color: #ffbb00;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

/* ===== Spotlight Section ===== */
.spotlight-review {
  background: #fff;
  padding: 100px 20px;
}

.spotlight-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.spotlight-text {
  flex: 1;
}

.spotlight-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.spotlight-text p {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

.spotlight-text h4 {
  font-size: 16px;
  color: #cc6600;
}

.spotlight-img {
  flex: 1;
  text-align: center;
}

.spotlight-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===== Statistics Section ===== */
.reviews-stats {
  background: #f9f9f9;
  padding: 80px 20px;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  gap: 30px;
}

.stat-box {
  flex: 1 1 200px;
}

.stat-box h2 {
  font-size: 42px;
  color: #cc6600;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #444;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .spotlight-content {
    flex-direction: column;
    text-align: center;
  }
}

/* CTA form */
.cta-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  outline: none;
}

.cta-form button {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  background: #ff7f00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-form button:hover {
  background: black;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .cta-form {
    flex-direction: column;
  }

  .cta-form input,
  .cta-form button {
    width: 100%;
  }
}

/* ===== Scroll Animation Base ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
