/* style/index-review-one88.css */

/* Custom properties for brand colors */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #4B0082; /* Deep Purple */
  --dark-bg-1: #0d0d0d; /* Assuming from shared.css */
}

/* General page styling */
.page-index-review-one88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
}

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

/* Fixed navigation bar padding */
.page-index-review-one88__hero-review-banner {
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
}

/* Highlight for keywords */
.page-index-review-one88__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Review Banner Section */
.page-index-review-one88__hero-review-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Gold and Deep Purple */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-review-one88__hero-review-banner .page-index-review-one88__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.page-index-review-one88__banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-review-one88__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-one88__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
}

.page-index-review-one88__banner-image {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}

.page-index-review-one88__responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88__image-content {
  margin: 30px auto; /* Centering images within content */
  max-width: 800px;
  border-radius: 8px;
}

/* CTA Button */
.page-index-review-one88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: var(--secondary-color); /* Deep Purple text on white button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index-review-one88__cta-button:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Review Content Section */
.page-index-review-one88__review-section {
  background: #f9f9f9; /* Light background for review content */
  padding: 60px 0;
  color: #333333; /* Dark text for light background */
}

.page-index-review-one88__review-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  line-height: 1.7;
}

.page-index-review-one88__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color); /* Deep Purple */
  text-align: center;
  margin-bottom: 40px;
}

.page-index-review-one88__sub-section-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color); /* Deep Purple */
  margin-top: 35px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color); /* Gold underline */
  padding-bottom: 10px;
}

.page-index-review-one88 p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-index-review-one88__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-review-one88__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
}

.page-index-review-one88__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Gold checkmark */
  font-weight: bold;
}

.page-index-review-one88__pros-cons {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-index-review-one88__pros-card,
.page-index-review-one88__cons-card {
  flex: 1;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-review-one88__pros-card h4 {
  color: #28a745; /* Green for pros */
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-review-one88__cons-card h4 {
  color: #dc3545; /* Red for cons */
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-review-one88__conclusion-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: bold;
}

.page-index-review-one88__conclusion-cta a {
  color: var(--secondary-color); /* Deep Purple */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-one88__conclusion-cta a:hover {
  text-decoration: underline;
  color: var(--primary-color); /* Gold on hover */
}

/* Links within content */
.page-index-review-one88__review-card a {
  color: var(--secondary-color); /* Deep Purple for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-one88__review-card a:hover {
  color: var(--primary-color); /* Gold on hover */
  text-decoration: underline;
}

/* FAQ Section */
.page-index-review-one88__faq-section {
  background: #f1f3f5; /* Light background */
  padding: 60px 0;
  color: #333333; /* Dark text for light background */
}

.page-index-review-one88__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-review-one88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-review-one88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-review-one88__faq-item.active .page-index-review-one88__faq-answer {
  max-height: 2000px !important; /* Ensures it expands fully */
  padding: 20px 15px !important; /* Re-adds padding for active state */
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-index-review-one88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-one88__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-review-one88__faq-question:active {
  background: #eeeeee;
}

.page-index-review-one88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Allows click on parent div */
  color: var(--secondary-color); /* Deep Purple for FAQ questions */
}

.page-index-review-one88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color); /* Gold for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Allows click on parent div */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-one88__faq-item.active .page-index-review-one88__faq-toggle {
  color: var(--secondary-color); /* Deep Purple when active */
  transform: rotate(45deg); /* Rotate to form an 'X' or similar for close */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-one88__main-title {
    font-size: 36px;
  }
  .page-index-review-one88__subtitle {
    font-size: 18px;
  }
  .page-index-review-one88__section-title {
    font-size: 30px;
  }
  .page-index-review-one88__sub-section-title {
    font-size: 24px;
  }
  .page-index-review-one88__pros-cons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  /* Fixed navigation bar padding for mobile */
  .page-index-review-one88__hero-review-banner {
    padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
  }

  /* Ensure all images are responsive */
  .page-index-review-one88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-one88__container,
  .page-index-review-one88__review-card,
  .page-index-review-one88__pros-card,
  .page-index-review-one88__cons-card,
  .page-index-review-one88__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-review-one88__hero-review-banner .page-index-review-one88__container {
    flex-direction: column;
    gap: 20px;
  }

  .page-index-review-one88__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-index-review-one88__subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-index-review-one88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-one88__review-section,
  .page-index-review-one88__faq-section {
    padding: 40px 0;
  }
  .page-index-review-one88__review-card {
    padding: 25px;
  }
  .page-index-review-one88__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-index-review-one88__sub-section-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-index-review-one88 p,
  .page-index-review-one88__list-item {
    font-size: 15px;
  }
  .page-index-review-one88__faq-question {
    padding: 15px;
    flex-wrap: wrap; /* Allow question and toggle to wrap */
  }
  .page-index-review-one88__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px); /* Adjust width to make space for toggle */
    margin-bottom: 0;
  }
  .page-index-review-one88__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-index-review-one88__faq-item.active .page-index-review-one88__faq-answer {
    padding: 15px !important;
  }
}