/* Testimonials Page - Theme: Pink/Orange Gradient */
:root {
  --testi-primary: #db2777;
  --testi-secondary: #f97316;
  --testi-accent: #fbbf24;
  --testi-bg: linear-gradient(135deg, #fdf2f8 0%, #ffedd5 50%, #fffbeb 100%);
}

.hero-testimonials {
  padding: 80px 0 60px;
  background: var(--testi-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23db2777' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-testimonials h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--testi-primary), var(--testi-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.hero-testimonials p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.navbar-testimonials {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2e8f0;
}

.navbar-testimonials .nav-menu a {
  color: #334155;
  font-weight: 600;
}

.navbar-testimonials .nav-menu a.active,
.navbar-testimonials .nav-menu a:hover {
  color: var(--testi-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testi-card {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid var(--testi-primary);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(219, 39, 119, 0.15);
}

.testi-card .stars {
  color: #fbbf24;
  margin-bottom: 12px;
  font-size: 1rem;
}

.testi-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed #e2e8f0;
}

.testi-author img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.testi-author strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--testi-primary);
}

.testi-author span {
  color: #64748b;
  font-size: 0.85rem;
}

.bg-light {
  background: #fff0f5;
}

.testimonials-cta {
  background: linear-gradient(135deg, var(--testi-primary), var(--testi-secondary));
  border-radius: 16px;
  padding: 48px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(219, 39, 119, 0.3);
}

.testimonials-cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}

.testimonials-cta p {
  color: #fed7e2;
  font-size: 1rem;
  margin-bottom: 24px;
}

.testimonials-cta .btn {
  background: #fff;
  color: var(--testi-primary);
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 700;
}

.testimonials-cta .btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer-testimonials {
  background: #0e2533;
  color: #d7e5ee;
  padding: 48px 0 20px;
}

@media (max-width: 768px) {
  .hero-testimonials {
    padding: 60px 0 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-cta {
    padding: 32px;
  }
}
