/* style/index-user-testimonials.css */
.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-index-user-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-user-testimonials-hero {
  background: linear-gradient(135deg, #007BFF, #FFC107);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
  z-index: 0;
}

.page-index-user-testimonials-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-index-user-testimonials-btn-primary {
  background-color: #FFC107; /* Auxiliary color */
  color: #000; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-index-user-testimonials-btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-index-user-testimonials-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin-left: 20px;
}

.page-index-user-testimonials-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-index-user-testimonials-section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-user-testimonials-section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-user-testimonials-testimonials-grid {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-index-user-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-user-testimonials-testimonial-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-user-testimonials-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-user-testimonials-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFC107;
}

.page-index-user-testimonials-card-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-index-user-testimonials-card-text {
  font-size: 1em;
  color: #444;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-user-testimonials-card-date {
  font-size: 0.9em;
  color: #888;
}

.page-index-user-testimonials-why-trust {
  background-color: #e6f2ff; /* Light variant of primary color */
  padding: 80px 0;
}

.page-index-user-testimonials-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-user-testimonials-feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-user-testimonials-feature-item:hover {
  transform: translateY(-5px);
}

.page-index-user-testimonials-feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.2));
}

.page-index-user-testimonials-feature-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-user-testimonials-feature-item p {
  font-size: 0.95em;
  color: #555;
}

.page-index-user-testimonials-cta-bottom {
  background-color: #007BFF;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-user-testimonials-cta-bottom .page-index-user-testimonials-section-title {
  color: #fff;
}

.page-index-user-testimonials-cta-bottom .page-index-user-testimonials-section-description {
  color: #e0e0e0;
}

.page-index-user-testimonials-cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-user-testimonials-cta-buttons .page-index-user-testimonials-btn-secondary {
  border-color: #FFC107;
  color: #FFC107;
}

.page-index-user-testimonials-cta-buttons .page-index-user-testimonials-btn-secondary:hover {
  background-color: rgba(255, 193, 7, 0.2);
}

.page-index-user-testimonials-faq {
  padding: 80px 0;
  background-color: #fff;
}

.page-index-user-testimonials-faq-item {
  background-color: #f0f8ff; /* Very light primary */
  border: 1px solid #d0e8ff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-index-user-testimonials-faq-item:hover {
  background-color: #e0f0ff;
}

.page-index-user-testimonials-faq-item h3 {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-index-user-testimonials-faq-item p {
  font-size: 1em;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-user-testimonials-title {
    font-size: 2.5em;
  }

  .page-index-user-testimonials-subtitle {
    font-size: 1.1em;
  }

  .page-index-user-testimonials-section-title {
    font-size: 2em;
  }

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

  .page-index-user-testimonials-hero, 
  .page-index-user-testimonials-testimonials-grid, 
  .page-index-user-testimonials-why-trust, 
  .page-index-user-testimonials-cta-bottom, 
  .page-index-user-testimonials-faq {
    padding: 50px 0;
  }

  .page-index-user-testimonials-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-user-testimonials-btn-secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-index-user-testimonials-title {
    font-size: 2em;
  }

  .page-index-user-testimonials-subtitle {
    font-size: 1em;
  }

  .page-index-user-testimonials-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}