/* style/index-user-testimonials.css */

.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #000000; /* Black background for high contrast */
}

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

.page-index-user-testimonials__hero {
  background: linear-gradient(135deg, #1A237E 0%, #000000 70%); /* Deep Royal Blue to Black */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.page-index-user-testimonials__hero-content {
  max-width: 600px;
  color: #FFD700; /* Gold for main title */
}

.page-index-user-testimonials__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold */
}

.page-index-user-testimonials__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF; /* White */
}

.page-index-user-testimonials__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #1A237E; /* Deep Royal Blue for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-user-testimonials__hero-cta:hover {
  background-color: #e5c100; /* Darker gold on hover */
  color: #000000;
}

.page-index-user-testimonials__hero-image-wrapper {
  max-width: 500px;
}

.page-index-user-testimonials__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-index-user-testimonials__section {
  padding: 80px 0;
  background-color: #121212; /* Dark gray for sections */
  border-bottom: 1px solid #222;
}

.page-index-user-testimonials__section:nth-child(even) {
  background-color: #0d0d0d;
}

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

.page-index-user-testimonials__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1A237E; /* Deep Royal Blue */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-user-testimonials__section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Light gray */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-index-user-testimonials__feature-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: #1A237E; /* Deep Royal Blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-user-testimonials__feature-item:hover {
  transform: translateY(-10px);
  background-color: #2c389c; /* Lighter blue on hover */
}

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

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

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

.page-index-user-testimonials__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #1A237E; /* Deep Royal Blue */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials__cta-block p {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-user-testimonials__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Deep Royal Blue */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
}

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

.page-index-user-testimonials__btn-secondary {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #FFD700; /* Gold border */
  color: #FFD700; /* Gold text */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
}

.page-index-user-testimonials__btn-secondary:hover {
  background-color: #FFD700; /* Gold background */
  color: #1A237E; /* Deep Royal Blue text */
  transform: translateY(-3px);
}

.page-index-user-testimonials__testimonial-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: #1A237E; /* Deep Royal Blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__testimonial-card::before {
  content: '“';
  font-size: 6em;
  color: rgba(255, 215, 0, 0.2); /* Faded gold quote */
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 0;
}

.page-index-user-testimonials__testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700; /* Gold border */
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.page-index-user-testimonials__testimonial-quote {
  font-style: italic;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials__testimonial-rating {
  color: #FFD700; /* Gold */
  font-size: 1.2em;
}

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

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

.page-index-user-testimonials__sub-title {
  font-size: 2em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-index-user-testimonials__mobile-app-text p {
  font-size: 1.1em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-user-testimonials__mobile-app-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-user-testimonials__mobile-app-text ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #E0E0E0;
  font-size: 1em;
}

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

.page-index-user-testimonials__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.page-index-user-testimonials__mobile-app-image:hover {
  transform: scale(1.02);
}

.page-index-user-testimonials__blockquote {
  background-color: #1A237E; /* Deep Royal Blue */
  border-left: 5px solid #FFD700; /* Gold border */
  padding: 30px;
  margin: 50px auto;
  max-width: 800px;
  font-style: italic;
  font-size: 1.3em;
  color: #FFFFFF; /* White */
  line-height: 1.8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials__blockquote cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 1em;
  color: #FFD700; /* Gold */
  font-weight: bold;
}

.page-index-user-testimonials__faq {
  padding-bottom: 100px;
}

.page-index-user-testimonials__faq-item {
  background-color: #1A237E; /* Deep Royal Blue */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  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: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
  display: none; /* Hidden by default */
  padding-top: 10px;
}

.page-index-user-testimonials__faq-answer a {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-index-user-testimonials__faq-answer a:hover {
  color: #FFFFFF; /* White on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-user-testimonials__hero {
    flex-direction: column;
    padding: 80px 20px;
  }

  .page-index-user-testimonials__hero-content {
    max-width: 100%;
  }

  .page-index-user-testimonials__hero-title {
    font-size: 2.8em;
  }

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

  .page-index-user-testimonials__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index-user-testimonials__mobile-app-text ul {
    text-align: left;
  }

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

@media (max-width: 768px) {
  .page-index-user-testimonials__feature-grid, .page-index-user-testimonials__testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-index-user-testimonials__hero {
    padding: 60px 15px;
  }

  .page-index-user-testimonials__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-index-user-testimonials__feature-item, .page-index-user-testimonials__testimonial-card {
    padding: 25px;
  }

  .page-index-user-testimonials__feature-title {
    font-size: 1.4em;
  }

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

  .page-index-user-testimonials__blockquote {
    font-size: 1.1em;
    padding: 25px;
  }

  .page-index-user-testimonials__faq-question {
    font-size: 1.2em;
  }

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