/* style/index-user-testimonials.css */
.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for contrast on dark background */
  background-color: #0A1A3A; /* Main dark blue background */
}

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

.page-index-user-testimonials__hero-section {
  background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, rgba(10, 26, 58, 0) 70%);
  opacity: 0.3;
  animation: page-index-user-testimonials__bg-pulse 15s infinite alternate;
}

@keyframes page-index-user-testimonials__bg-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-index-user-testimonials__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-index-user-testimonials__cta-button--secondary {
  background-color: #0A1A3A; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue button */
  border: 2px solid #FFD700;
}

.page-index-user-testimonials__cta-button--secondary:hover {
  background-color: #1A3A6A; /* Slightly lighter dark blue on hover */
  transform: translateY(-3px);
}

.page-index-user-testimonials__content-section,
.page-index-user-testimonials__testimonials-grid-section,
.page-index-user-testimonials__trust-section,
.page-index-user-testimonials__faq-section {
  padding: 60px 0;
  background-color: #0A1A3A;
}

.page-index-user-testimonials__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-index-user-testimonials__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-index-user-testimonials__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #C0C0C0; /* Lighter gray for descriptions */
}

.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: #1A2A4A; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-user-testimonials__feature-item:hover {
  transform: translateY(-10px);
  background-color: #2A3A5A;
}

.page-index-user-testimonials__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

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

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

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

.page-index-user-testimonials__testimonial-card:hover {
  transform: translateY(-10px);
  background-color: #2A3A5A;
}

.page-index-user-testimonials__avatar {
  width: 90px;
  height: 90px;
  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__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-user-testimonials__quote {
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #F0F0F0;
}

.page-index-user-testimonials__author {
  font-weight: bold;
  color: #FFD700;
  margin-top: auto; /* Pushes author to the bottom */
  margin-bottom: 10px;
}

.page-index-user-testimonials__rating {
  color: #FFD700;
  font-size: 1.2em;
}

.page-index-user-testimonials__trust-section {
  background-color: #0A1A3A;
  padding: 80px 0;
  text-align: center;
}

.page-index-user-testimonials__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 20px auto;
  color: #C0C0C0;
}

.page-index-user-testimonials__faq-section {
  background-color: #1A2A4A;
  padding: 80px 0;
}

.page-index-user-testimonials__faq-item {
  background-color: #0A1A3A;
  border: 1px solid #3A4A6A;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: background-color 0.3s ease;
}

.page-index-user-testimonials__faq-item:hover {
  background-color: #2A3A5A;
}

.page-index-user-testimonials__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 15px;
  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-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-user-testimonials__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-user-testimonials__faq-answer.open {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-user-testimonials__hero-title {
    font-size: 2.8em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 2em;
  }
  .page-index-user-testimonials__testimonial-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-user-testimonials__hero-section {
    padding: 80px 0;
  }
  .page-index-user-testimonials__hero-title {
    font-size: 2.2em;
  }
  .page-index-user-testimonials__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__features-grid,
  .page-index-user-testimonials__testimonial-cards {
    grid-template-columns: 1fr;
  }
  .page-index-user-testimonials__content-section,
  .page-index-user-testimonials__testimonials-grid-section,
  .page-index-user-testimonials__trust-section,
  .page-index-user-testimonials__faq-section {
    padding: 40px 0;
  }
  .page-index-user-testimonials__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-user-testimonials__hero-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__hero-subtitle {
    font-size: 1em;
  }
  .page-index-user-testimonials__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.5em;
  }
  .page-index-user-testimonials__feature-item,
  .page-index-user-testimonials__testimonial-card {
    padding: 20px;
  }
  .page-index-user-testimonials__quote {
    font-size: 0.95em;
  }
  .page-index-user-testimonials__faq-item {
    padding: 20px;
  }
  .page-index-user-testimonials__faq-question {
    font-size: 1em;
  }
}