/* style/index-user-testimonials.css */
.page-index-user-testimonials {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A1A;
  line-height: 1.6;
}

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

.page-index-user-testimonials__hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark,gold]'); /* Abstract background for hero */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-user-testimonials__hero > * {
  position: relative;
  z-index: 1;
}

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

.page-index-user-testimonials__subtitle {
  font-size: 1.3em;
  color: #CCCCCC; /* Lighter grey for subtitle */
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-user-testimonials__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-index-user-testimonials__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
}

.page-index-user-testimonials__btn--primary:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-index-user-testimonials__testimonials-grid,
.page-index-user-testimonials__why-trust,
.page-index-user-testimonials__faq,
.page-index-user-testimonials__final-cta {
  padding: 60px 0;
  text-align: center;
}

.page-index-user-testimonials__section-heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-index-user-testimonials__card {
  background-color: #2A2A2A; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A3A3A;
}

.page-index-user-testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-index-user-testimonials__card-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

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

.page-index-user-testimonials__card-text {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-index-user-testimonials__card-author {
  font-style: italic;
  color: #AAAAAA; /* Grey for author name */
  font-size: 0.95em;
}

.page-index-user-testimonials__cta-banner {
  background-color: #FFD700; /* Gold banner for CTA */
  color: #1A1A1A; /* Dark text on gold */
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-user-testimonials__cta-heading {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-user-testimonials__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-index-user-testimonials__cta-buttons .page-index-user-testimonials__btn {
  margin: 0 10px;
}

.page-index-user-testimonials__btn--secondary {
  background-color: #1A1A1A; /* Dark button for secondary CTA */
  color: #FFD700; /* Gold text on dark */
  border: 2px solid #FFD700;
}

.page-index-user-testimonials__btn--secondary:hover {
  background-color: #333333; /* Slightly lighter dark on hover */
  transform: translateY(-2px);
}

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

.page-index-user-testimonials__feature-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A3A3A;
  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 rgba(255, 215, 0, 0.7));
}

.page-index-user-testimonials__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

.page-index-user-testimonials__faq {
  background-color: #1A1A1A;
  padding: 60px 0;
}

.page-index-user-testimonials__faq-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A3A3A;
}

.page-index-user-testimonials__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-user-testimonials__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-user-testimonials__faq-item.active .page-index-user-testimonials__faq-question::after {
  transform: rotate(45deg);
}

.page-index-user-testimonials__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-index-user-testimonials__faq-item.active .page-index-user-testimonials__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 15px;
}

.page-index-user-testimonials__final-cta {
  background-color: #333333; /* Darker background for final CTA */
  padding: 80px 0;
  border-top: 2px solid #FFD700;
}

.page-index-user-testimonials__final-cta .page-index-user-testimonials__section-heading {
  color: #FFD700;
}

.page-index-user-testimonials__final-cta .page-index-user-testimonials__section-description {
  margin-bottom: 40px;
}

/* Responsive adjustments */
@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-heading {
    font-size: 2em;
  }

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

  .page-index-user-testimonials__cta-heading {
    font-size: 1.6em;
  }

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

  .page-index-user-testimonials__cta-buttons .page-index-user-testimonials__btn {
    margin: 10px 0;
    width: 100%;
  }
}

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

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

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

  .page-index-user-testimonials__card-title {
    font-size: 1.3em;
  }

  .page-index-user-testimonials__cta-heading {
    font-size: 1.4em;
  }
}