/* ==========================================
   Testimonials Page Specific Styles
   ========================================== */

/* Hero Section */
.testimonials-hero {
  padding: 4rem 0;
}

.testimonials-hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonials-hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Trust Stats Section */
.trust-stats-section {
  background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-stat-number {
  font-size: 3rem;
  color: #2c7a4b;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.trust-stat-label {
  color: #666;
  font-size: 1.1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Testimonial Card */
.testimonial-card {
  padding: 2rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c7a4b, #55bb88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Avatar Gradient Variations */
.gradient-green {
  background: linear-gradient(135deg, #2c7a4b, #55bb88);
}

.gradient-orange {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
}

.gradient-blue {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.gradient-pink {
  background: linear-gradient(135deg, #e84393, #fd79a8);
}

.gradient-purple {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.gradient-teal {
  background: linear-gradient(135deg, #00b894, #55efc4);
}

.gradient-yellow {
  background: linear-gradient(135deg, #fdcb6e, #ffeaa7);
  color: #1a3d2b;
}

.gradient-red {
  background: linear-gradient(135deg, #ff7675, #fab1a0);
}

.gradient-light-blue {
  background: linear-gradient(135deg, #74b9ff, #a29bfe);
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1.2rem;
  color: #1a3d2b;
  margin-bottom: 0.25rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.2rem;
}

.star.filled {
  color: #ffd166;
}

.star.empty {
  color: #ddd;
}

.testimonial-message {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-date {
  color: #999;
  font-size: 0.9rem;
}

/* Testimonial Form Section */
.testimonial-form-section {
  background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-form-card {
  padding: 2.5rem;
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a3d2b;
}

.form-error {
  color: #dc3545;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.form-help {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.25rem;
}

.form-notice {
  background: #fff4e5;
  padding: 1rem;
  border-radius: 8px;
  color: #856404;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
}

/* CTA Section */
.testimonials-cta-section {
  background: linear-gradient(135deg, #1e4d35 0%, #2c7a4b 100%);
  color: white;
  text-align: center;
}

.testimonials-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.testimonials-cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonials-cta-primary {
  background: #ffd166;
  color: #1a3d2b;
}

.testimonials-cta-primary:hover {
  background: #ffbe3d;
  color: #1a3d2b;
}

.testimonials-cta-secondary {
  background: transparent;
  border-color: white;
  color: white;
}

.testimonials-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-hero-title {
    font-size: 2.5rem;
  }

  .testimonials-hero-subtitle {
    font-size: 1.1rem;
  }

  .trust-stat-number {
    font-size: 2.5rem;
  }

  .trust-stat-label {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-form-card {
    padding: 2rem;
  }

  .testimonials-cta-title {
    font-size: 2rem;
  }

  .testimonials-cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .testimonials-hero {
    padding: 3rem 0;
  }

  .testimonials-hero-title {
    font-size: 2rem;
  }

  .testimonials-hero-subtitle {
    font-size: 1rem;
  }

  .trust-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .trust-stat-number {
    font-size: 2rem;
  }

  .trust-stat-label {
    font-size: 0.95rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-avatar,
  .testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .testimonial-author-name {
    font-size: 1.1rem;
  }

  .star {
    font-size: 1rem;
  }

  .testimonial-form-card {
    padding: 1.5rem;
  }

  .testimonials-cta-title {
    font-size: 1.75rem;
  }

  .testimonials-cta-description {
    font-size: 1rem;
  }

  .testimonials-cta-buttons {
    flex-direction: column;
  }

  .testimonials-cta-buttons .btn-primary,
  .testimonials-cta-buttons .btn-secondary {
    width: 100%;
  }
}
