/* ===== REVIEWS PAGE ===== */

.active-link { color: #2e7d32 !important; font-weight: 700; }

/* HERO */
.rv-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('PHOTOS/9270e634-23de-470e-9e83-fe91a43be8af.webp') center/cover no-repeat;
  text-align: center;
  padding-top: 160px;
}
.rv-hero-overlay { position: absolute; inset: 0; background: rgba(0,20,10,0.65); }
.rv-hero-content { position: relative; z-index: 1; padding: 40px 20px; }
.rv-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.rv-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

/* STATS BAR */
.rv-stats {
  background: #2e7d32;
  padding: 30px 0;
}
.rv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.rv-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.rv-stat .stars { color: #f9a825; font-size: 14px; margin: 4px 0; }
.rv-stat span { font-size: 13px; color: rgba(255,255,255,0.8); }

/* REVIEWS SECTION */
.rv-section { padding: 100px 0; background: #f8fdf8; }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rv-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }

.rv-card-featured {
  grid-column: span 2;
  border-left: 4px solid #2e7d32;
}

.rv-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rv-avatar { font-size: 44px; color: #bdbdbd; flex-shrink: 0; }
.rv-meta { flex: 1; }
.rv-meta strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a; }
.rv-meta span { font-size: 12px; color: #888; display: block; margin-bottom: 6px; }
.rv-meta .stars { color: #f9a825; font-size: 14px; }

.rv-platform { flex-shrink: 0; }
.rv-fb { font-size: 22px; color: #1877f2; }

.rv-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.rv-service-tag {
  font-size: 12px;
  color: #2e7d32;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
}

/* LEAVE A REVIEW */
.rv-leave {
  padding: 60px 0;
  background: #e8f5e9;
}
.rv-leave-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.rv-leave-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.rv-leave-text p { color: #555; font-size: 15px; }

/* CTA BANNER */
.rv-cta-banner {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background: url('PHOTOS/b46b7335-b8f9-4cca-814f-d0402a6d99df.webp') center/cover no-repeat;
}
.rv-cta-overlay { position: absolute; inset: 0; background: rgba(0,30,10,0.68); }
.rv-cta-content { position: relative; z-index: 1; }
.rv-cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.rv-cta-content p { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 32px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-card-featured { grid-column: span 2; }
  .rv-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-card-featured { grid-column: span 1; }
  .rv-leave-inner { flex-direction: column; text-align: center; }
  .rv-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
