/* style/index-user-testimonials.css */
.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark grey for general text on light backgrounds */
  line-height: 1.6;
  background-color: #F8F8F8; /* Light grey background for overall page */
}

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

/* Hero Section */
.page-index-user-testimonials__hero-section {
  background: linear-gradient(135deg, #B22222 0%, #FFD700 100%); /* Red to Gold gradient */
  color: #FFFFFF; /* White text on dark/gradient background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-user-testimonials__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFEB99; /* Lighter gold for subtitle */
}

.page-index-user-testimonials__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #B22222; /* Deep red text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-user-testimonials__cta-button:hover {
  background-color: #FFC107; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* Testimonials Intro Section */
.page-index-user-testimonials__testimonials-intro {
  padding: 80px 0;
  text-align: center;
  background-color: #FFFFFF;
}

.page-index-user-testimonials__section-title {
  font-size: 2.5em;
  color: #B22222; /* Deep red for section titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-user-testimonials__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-index-user-testimonials__stat-item {
  background-color: #FFF8E1; /* Light yellow background for stat items */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-user-testimonials__stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-index-user-testimonials__stat-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #B22222; /* Deep red for numbers */
  margin-bottom: 5px;
}

.page-index-user-testimonials__stat-text {
  font-size: 1em;
  color: #666666;
}

/* Testimonials Grid Section */
.page-index-user-testimonials__testimonials-grid-section {
  padding: 80px 0;
  background-color: #F8F8F8;
  text-align: center;
}

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

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

.page-index-user-testimonials__testimonial-card:hover {
  transform: translateY(-10px);
}

.page-index-user-testimonials__testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700; /* Gold border for avatar */
}

.page-index-user-testimonials__testimonial-name {
  font-size: 1.4em;
  font-weight: bold;
  color: #B22222; /* Deep red for testimonial name */
  margin-bottom: 10px;
}

.page-index-user-testimonials__stars {
  color: #FFD700; /* Gold for stars */
  font-size: 1.2em;
  margin-bottom: 15px;
}

.page-index-user-testimonials__testimonial-quote {
  font-style: italic;
  color: #555555;
  font-size: 1.05em;
  flex-grow: 1;
}

/* Trust Section */
.page-index-user-testimonials__trust-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index-user-testimonials__trust-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-index-user-testimonials__trust-text {
  flex: 1;
  min-width: 300px;
}

.page-index-user-testimonials__trust-text p {
  margin-bottom: 15px;
  color: #444444;
}

.page-index-user-testimonials__features-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-user-testimonials__features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-index-user-testimonials__feature-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  filter: drop-shadow(0 0 2px #B22222); /* Red shadow for icons */
}

.page-index-user-testimonials__trust-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-user-testimonials__trust-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CTA Banner */
.page-index-user-testimonials__cta-banner {
  background-color: #B22222; /* Deep red background */
  color: #FFFFFF; /* White text on deep red */
  padding: 60px 0;
  text-align: center;
}

.page-index-user-testimonials__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-index-user-testimonials__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFEB99; /* Lighter gold for description */
}

.page-index-user-testimonials__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-user-testimonials__cta-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #B22222; /* Deep red text */
  border: 2px solid #FFD700;
}

.page-index-user-testimonials__cta-button--primary:hover {
  background-color: #FFC107;
  border-color: #FFC107;
}

.page-index-user-testimonials__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-user-testimonials__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #B22222;
}

/* FAQ Section */
.page-index-user-testimonials__faq-section {
  padding: 80px 0;
  background-color: #F8F8F8;
  text-align: center;
}

.page-index-user-testimonials__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-index-user-testimonials__faq-question {
  font-size: 1.3em;
  color: #B22222; /* Deep red for FAQ questions */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-user-testimonials__faq-answer {
  color: #555555;
  font-size: 1.05em;
}

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

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

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

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

  .page-index-user-testimonials__trust-content {
    flex-direction: column;
  }

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

  .page-index-user-testimonials__cta-description {
    font-size: 1em;
  }

  .page-index-user-testimonials__cta-buttons {
    flex-direction: column;
  }
}

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

  .page-index-user-testimonials__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-index-user-testimonials__section-title {
    font-size: 1.8em;
  }

  .page-index-user-testimonials__testimonial-name {
    font-size: 1.2em;
  }

  .page-index-user-testimonials__testimonial-quote {
    font-size: 0.95em;
  }

  .page-index-user-testimonials__cta-title {
    font-size: 1.8em;
  }
}