/* style/index-user-testimonials.css */
.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0F1A2D; /* A slightly darker shade of primary for main background */
}

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

.page-index-user-testimonials-hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2D 100%); /* Dark blue gradient */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-index-user-testimonials-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-user-testimonials-main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-user-testimonials-intro-text {
  font-size: 1.2em;
  color: #C0C0C0; /* Lighter gray for intro text */
  margin-bottom: 30px;
}

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

.page-index-user-testimonials-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Dark blue */
}

.page-index-user-testimonials-btn-primary:hover {
  background-color: #E5C100; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-index-user-testimonials-btn-secondary {
  background-color: #1A2B4C; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-user-testimonials-btn-secondary:hover {
  background-color: #0F1A2D; /* Even darker blue */
  transform: translateY(-2px);
}

.page-index-user-testimonials-hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-user-testimonials-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-user-testimonials-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding-top: 60px;
  position: relative;
}

.page-index-user-testimonials-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-index-user-testimonials-why-trust,
.page-index-user-testimonials-featured-testimonials,
.page-index-user-testimonials-cta-bottom,
.page-index-user-testimonials-faq,
.page-index-user-testimonials-share-experience {
  padding: 60px 0;
  background-color: #1A2B4C; /* Primary dark blue for sections */
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-user-testimonials-why-trust .page-index-user-testimonials-container {
  padding-top: 0;
}

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

.page-index-user-testimonials-feature-item {
  background-color: #0F1A2D; /* Darker background for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-index-user-testimonials-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-user-testimonials-feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

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

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

.page-index-user-testimonials-testimonial-card {
  background-color: #0F1A2D; /* Darker background for testimonial cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-index-user-testimonials-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-index-user-testimonials-user-name {
  font-size: 1.5em;
  color: #FFD700; /* Gold for user names */
  margin-bottom: 10px;
}

.page-index-user-testimonials-user-quote {
  font-style: italic;
  color: #E0E0E0;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-index-user-testimonials-rating {
  color: #FFD700; /* Gold for stars */
  font-size: 1.4em;
}

.page-index-user-testimonials-cta-bottom {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD700 0%, #E5C100 100%); /* Gold gradient */
}

.page-index-user-testimonials-cta-bottom .page-index-user-testimonials-section-title {
  color: #1A2B4C; /* Dark blue on gold background */
}

.page-index-user-testimonials-cta-bottom .page-index-user-testimonials-section-title::after {
  background-color: #1A2B4C;
}

.page-index-user-testimonials-cta-bottom .page-index-user-testimonials-description {
  color: #1A2B4C; /* Dark blue text on gold background */
  margin-bottom: 40px;
}

.page-index-user-testimonials-cta-bottom .page-index-user-testimonials-btn {
  margin: 0 10px;
}

.page-index-user-testimonials-btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-user-testimonials-faq-items {
  margin-top: 40px;
}

.page-index-user-testimonials-faq-item {
  background-color: #0F1A2D; /* Darker background for FAQ items */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials-faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-user-testimonials-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-user-testimonials-faq-item.active .page-index-user-testimonials-faq-question::after {
  content: '-';
}

.page-index-user-testimonials-faq-answer {
  color: #E0E0E0;
  font-size: 1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 10px;
}

.page-index-user-testimonials-faq-item.active .page-index-user-testimonials-faq-answer {
  display: block;
}

.page-index-user-testimonials-inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-user-testimonials-inline-link:hover {
  text-decoration: underline;
}

.page-index-user-testimonials-share-experience {
  text-align: center;
  padding: 60px 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-user-testimonials-hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-index-user-testimonials-main-title {
    font-size: 2.5em;
  }

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

  .page-index-user-testimonials-features-grid,
  .page-index-user-testimonials-testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .page-index-user-testimonials-cta-bottom .page-index-user-testimonials-btn {
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .page-index-user-testimonials-hero {
    padding: 40px 15px;
  }

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

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

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

  .page-index-user-testimonials-btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-index-user-testimonials-why-trust,
  .page-index-user-testimonials-featured-testimonials,
  .page-index-user-testimonials-cta-bottom,
  .page-index-user-testimonials-faq,
  .page-index-user-testimonials-share-experience {
    padding: 40px 0;
  }
}

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

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

  .page-index-user-testimonials-btn-large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}