/* Reviews Page Styles */
/* Reviews-specific wrapper override */
.wrapper {
  max-width: 1200px;
  padding: 0 20px;
}

.content {
  width: 100%;
  flex-grow: 1;
  padding-bottom: 48px;
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
  background: #f8f9fa;
  color: #2c3e50;
  border-radius: 30px;
  margin-bottom: 80px;
  border: 1px solid #e9ecef;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0 0 24px 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
  color: #2c3e50;
}

.hero .subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  color: #5a6c7d;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: #5a6c7d;
  font-weight: 500;
}

/* Category Filter */
.category-filter {
  margin-bottom: 80px;
  text-align: center;
}

.category-filter h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c3e50;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #e9ecef;
  background: white;
  color: #5a6c7d;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border-color: #ff6b35;
}

/* Reviews Sections */
.featured-reviews,
.more-reviews {
  margin-bottom: 80px;
}

.featured-reviews h2,
.more-reviews h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #2c3e50;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.review-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.review-card.featured {
  border: 2px solid #ff6b35;
  background: linear-gradient(135deg, #fff9f6 0%, #fff 100%);
}

/* Hide/Show animation for filtering */
.review-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.review-card.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Review Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.reviewer-title {
  font-size: 0.9rem;
  color: #5a6c7d;
}

/* Review Rating */
.review-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

/* Review Content */
.review-content {
  margin-bottom: 24px;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 24px;
}

/* Review Metrics */
.review-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.85rem;
  color: #5a6c7d;
  font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
  margin-bottom: 80px;
  padding: 80px 60px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.trust-indicators h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #2c3e50;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.trust-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2c3e50;
}

.trust-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a6c7d;
}

/* CTA Section */
.reviews-cta {
  margin-bottom: 80px;
  padding: 80px 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 20px;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Reviews-specific button overrides */
.btn-primary {
  background: white;
  color: #ff6b35;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #ff6b35;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #ff6b35;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Leave Review Section */
.leave-review {
  text-align: center;
  padding: 80px 60px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.leave-review h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c3e50;
}

.leave-review p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #5a6c7d;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.leave-review .btn-secondary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: 2px solid #ff6b35;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.leave-review .btn-secondary:hover {
  background: white;
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .filter-buttons {
    gap: 12px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .featured-reviews h2,
  .more-reviews h2,
  .trust-indicators h2,
  .cta-content h2,
  .leave-review h2 {
    font-size: 2rem;
  }
  
  .trust-indicators,
  .reviews-cta,
  .leave-review {
    padding: 60px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .review-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .review-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .review-rating {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 0 16px;
  }
  
  .hero {
    padding: 80px 24px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  .featured-reviews h2,
  .more-reviews h2,
  .trust-indicators h2,
  .cta-content h2,
  .leave-review h2 {
    font-size: 1.8rem;
  }
  
  .review-card {
    padding: 24px;
  }
  
  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .trust-icon {
    font-size: 2.5rem;
  }
  
  .trust-item {
    padding: 24px 16px;
  }
}