/* style/index-yoo-88-features.css */

.page-index-yoo-88-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-index-yoo-88-features__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-yoo-88-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index-yoo-88-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 100px 20px 60px; /* Adjusted padding to account for header offset, then more padding for content */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-index-yoo-88-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-index-yoo-88-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-index-yoo-88-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-index-yoo-88-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-index-yoo-88-features__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-yoo-88-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-yoo-88-features__btn-primary,
.page-index-yoo-88-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-index-yoo-88-features__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-index-yoo-88-features__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-index-yoo-88-features__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-yoo-88-features__btn-secondary:hover {
  background-color: #ffffff;
  color: #C30808;
}

/* About Section */
.page-index-yoo-88-features__about-section {
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-index-yoo-88-features__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-index-yoo-88-features__section-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-index-yoo-88-features__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: left;
}

/* Features Grid */
.page-index-yoo-88-features__features-grid {
  background-color: #0a0a0a; /* Body background color */
  color: #ffffff;
}

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

.page-index-yoo-88-features__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-index-yoo-88-features__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-yoo-88-features__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min size enforcement */
  min-height: 200px; /* Min size enforcement */
}

.page-index-yoo-88-features__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #017439; /* Brand color for titles */
}

.page-index-yoo-88-features__card-description {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
}

/* Mobile Experience Section */
.page-index-yoo-88-features__mobile-experience {
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-index-yoo-88-features__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-yoo-88-features__mobile-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-index-yoo-88-features__mobile-cta {
  text-align: left;
  max-width: 400px;
}

.page-index-yoo-88-features__mobile-cta .page-index-yoo-88-features__text-block {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Why Choose Us Section */
.page-index-yoo-88-features__why-choose-us {
  background-color: #017439;
  color: #ffffff;
}

.page-index-yoo-88-features__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-index-yoo-88-features__list-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  position: relative;
  padding-left: 45px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-yoo-88-features__list-item::before {
  content: '✓';
  color: #FFFF00; /* Highlight color */
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3em;
}

/* FAQ Section */
.page-index-yoo-88-features__faq-section {
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-index-yoo-88-features__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-yoo-88-features__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-yoo-88-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-index-yoo-88-features__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-index-yoo-88-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-yoo-88-features__faq-item.active .page-index-yoo-88-features__faq-toggle {
  transform: rotate(45deg); /* Change to '−' visual */
}

.page-index-yoo-88-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
  color: #cccccc;
}

.page-index-yoo-88-features__faq-item.active .page-index-yoo-88-features__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

/* CTA Bottom Section */
.page-index-yoo-88-features__cta-bottom {
  background-color: #0a0a0a;
  padding: 80px 20px;
  color: #ffffff;
}

.page-index-yoo-88-features__text-center {
  text-align: center;
}

.page-index-yoo-88-features__cta-bottom .page-index-yoo-88-features__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-index-yoo-88-features__cta-bottom .page-index-yoo-88-features__text-block {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-yoo-88-features__large-btn {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-yoo-88-features__hero-title {
    font-size: 3em;
  }
  .page-index-yoo-88-features__section-title {
    font-size: 2em;
  }
  .page-index-yoo-88-features__cta-bottom .page-index-yoo-88-features__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-yoo-88-features {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-index-yoo-88-features__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }
  .page-index-yoo-88-features__hero-title {
    font-size: 2.2em;
  }
  .page-index-yoo-88-features__hero-description {
    font-size: 1.1em;
  }
  .page-index-yoo-88-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-yoo-88-features__btn-primary,
  .page-index-yoo-88-features__btn-secondary,
  .page-index-yoo-88-features a[class*="button"],
  .page-index-yoo-88-features a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-yoo-88-features__section,
  .page-index-yoo-88-features__card,
  .page-index-yoo-88-features__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-yoo-88-features__section-title {
    font-size: 1.8em;
  }
  .page-index-yoo-88-features__section-subtitle {
    font-size: 1em;
  }
  .page-index-yoo-88-features__grid {
    grid-template-columns: 1fr;
  }
  .page-index-yoo-88-features__mobile-content {
    flex-direction: column;
  }
  .page-index-yoo-88-features__mobile-cta {
    text-align: center;
  }
  .page-index-yoo-88-features__why-list {
    grid-template-columns: 1fr;
  }
  .page-index-yoo-88-features__list-item {
    padding-left: 20px;
    text-align: center;
  }
  .page-index-yoo-88-features__list-item::before {
    left: 5px;
    top: 10px;
    transform: none;
  }
  .page-index-yoo-88-features__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-index-yoo-88-features__faq-answer {
    padding: 15px;
  }
  .page-index-yoo-88-features__cta-bottom .page-index-yoo-88-features__section-title {
    font-size: 2em;
  }
  .page-index-yoo-88-features__cta-bottom .page-index-yoo-88-features__text-block {
    font-size: 1.1em;
  }
  .page-index-yoo-88-features img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-yoo-88-features video,
  .page-index-yoo-88-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-yoo-88-features__video-section,
  .page-index-yoo-88-features__video-container,
  .page-index-yoo-88-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-index-yoo-88-features__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}