/* style/index-sv88-user-reviews.css */

/* Base styles for the page */
.page-index-sv88-user-reviews {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

.page-index-sv88-user-reviews__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-sv88-user-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-sv88-user-reviews__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #B0B0B0; /* Slightly darker light gray for descriptions */
}

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

.page-index-sv88-user-reviews__btn--primary {
  background-color: #FFD700; /* Accent color for primary buttons */
  color: #0A192F; /* Dark text on accent background */
  border: 2px solid #FFD700;
}

.page-index-sv88-user-reviews__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-sv88-user-reviews__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent text on dark background */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-index-sv88-user-reviews__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-index-sv88-user-reviews__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

/* Hero Section */
.page-index-sv88-user-reviews__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1a3055 100%); /* Dark blue gradient */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-sv88-user-reviews__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-index-sv88-user-reviews__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for hero title */
  line-height: 1.2;
}

.page-index-sv88-user-reviews__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-index-sv88-user-reviews__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-sv88-user-reviews__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show part of the image */
  right: -100px; /* Adjust position */
  opacity: 0.1;
  z-index: 0;
}

.page-index-sv88-user-reviews__hero-image {
  width: 600px;
  height: auto;
  max-width: none;
}

/* Testimonials Section */
.page-index-sv88-user-reviews__section--testimonials {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  color: #E0E0E0;
}

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

.page-index-sv88-user-reviews__testimonial-card {
  background-color: #0A192F; /* Main dark background for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-index-sv88-user-reviews__testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-index-sv88-user-reviews__testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #FFD700;
}

.page-index-sv88-user-reviews__testimonial-info {
  display: flex;
  flex-direction: column;
}

.page-index-sv88-user-reviews__testimonial-name {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-index-sv88-user-reviews__testimonial-rating {
  color: #FFD700;
  font-size: 1.1em;
}

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

.page-index-sv88-user-reviews__testimonial-date {
  font-size: 0.85em;
  color: #999;
}

.page-index-sv88-user-reviews__cta-bottom {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-index-sv88-user-reviews__cta-bottom p {
  font-size: 1.2em;
  color: #E0E0E0;
  font-weight: bold;
}

/* Features Section */
.page-index-sv88-user-reviews__section--features {
  background-color: #0A192F;
}

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

.page-index-sv88-user-reviews__feature-item {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-index-sv88-user-reviews__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

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

.page-index-sv88-user-reviews__feature-text {
  font-size: 1em;
  color: #B0B0B0;
}

/* Guide Section */
.page-index-sv88-user-reviews__section--guide {
  background-color: #1a2a47;
}

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

.page-index-sv88-user-reviews__step-card {
  background-color: #0A192F;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-index-sv88-user-reviews__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-index-sv88-user-reviews__step-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-sv88-user-reviews__step-text {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* FAQ Section */
.page-index-sv88-user-reviews__section--faq {
  background-color: #0A192F;
  text-align: left;
}

.page-index-sv88-user-reviews__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-index-sv88-user-reviews__faq-item {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.page-index-sv88-user-reviews__faq-item.active .page-index-sv88-user-reviews__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Final CTA Section */
.page-index-sv88-user-reviews__section--cta-final {
  background-color: #1a2a47;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-index-sv88-user-reviews__cta-final-content {
  max-width: 800px;
  z-index: 1;
}

.page-index-sv88-user-reviews__cta-final-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-sv88-user-reviews__cta-final-text {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-index-sv88-user-reviews__cta-final-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: auto;
  opacity: 0.08;
  z-index: 0;
}

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

  .page-index-sv88-user-reviews__hero-subtitle,
  .page-index-sv88-user-reviews__section-description {
    font-size: 1em;
  }

  .page-index-sv88-user-reviews__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-sv88-user-reviews__btn--secondary {
    margin-left: 0;
  }

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

  .page-index-sv88-user-reviews__testimonials-grid,
  .page-index-sv88-user-reviews__features-grid,
  .page-index-sv88-user-reviews__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-index-sv88-user-reviews__hero-image-wrapper,
  .page-index-sv88-user-reviews__cta-final-image {
    display: none;
  }

  .page-index-sv88-user-reviews__cta-final-title {
    font-size: 2em;
  }
  .page-index-sv88-user-reviews__cta-final-text {
    font-size: 1em;
  }
}