/* style/index-why-choose-188v-link.css */

/* Base styles for the page content */
.page-index-why-choose-188v-link {
  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-why-choose-188v-link__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-why-choose-188v-link__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-why-choose-188v-link__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-index-why-choose-188v-link__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Color contrast management */
.page-index-why-choose-188v-link__dark-bg {
  background-color: #1a1a2e; /* Inherited from body, but explicitly set for sections */
  color: #ffffff; /* Light text for dark background */
  padding: 80px 0;
}

.page-index-why-choose-188v-link__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
  padding: 80px 0;
}

/* Hero Section */
.page-index-why-choose-188v-link__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-index-why-choose-188v-link__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-why-choose-188v-link__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-why-choose-188v-link__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  text-align: center;
}

.page-index-why-choose-188v-link__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-why-choose-188v-link__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-index-why-choose-188v-link__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

/* Buttons */
.page-index-why-choose-188v-link__btn-primary,
.page-index-why-choose-188v-link__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-index-why-choose-188v-link__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-index-why-choose-188v-link__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-index-why-choose-188v-link__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-index-why-choose-188v-link__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Feature Section */
.page-index-why-choose-188v-link__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-why-choose-188v-link__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-why-choose-188v-link__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-why-choose-188v-link__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-index-why-choose-188v-link__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-index-why-choose-188v-link__feature-description {
  font-size: 1em;
  line-height: 1.6;
}

/* Product Tabs Section */
.page-index-why-choose-188v-link__product-tabs {
  margin-top: 40px;
}

.page-index-why-choose-188v-link__tab-header {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.page-index-why-choose-188v-link__tab-button {
  background-color: transparent;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #555555;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  white-space: nowrap;
}

.page-index-why-choose-188v-link__tab-button--active {
  color: #26A9E0;
  border-bottom: 3px solid #26A9E0;
}

.page-index-why-choose-188v-link__tab-button:hover:not(.page-index-why-choose-188v-link__tab-button--active) {
  color: #26A9E0;
}

.page-index-why-choose-188v-link__tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.page-index-why-choose-188v-link__tab-pane--active {
  display: flex;
}

.page-index-why-choose-188v-link__tab-media {
  flex: 1;
  min-width: 300px;
}

.page-index-why-choose-188v-link__tab-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-why-choose-188v-link__tab-text {
  flex: 2;
  color: #333333;
}

.page-index-why-choose-188v-link__product-subtitle {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index-why-choose-188v-link__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-why-choose-188v-link__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-why-choose-188v-link__promo-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-why-choose-188v-link__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-why-choose-188v-link__promo-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-index-why-choose-188v-link__promo-description {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Experience Section */
.page-index-why-choose-188v-link__content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-index-why-choose-188v-link__text-content {
  flex: 1;
}

.page-index-why-choose-188v-link__image-content {
  flex: 1;
  min-width: 300px;
}

.page-index-why-choose-188v-link__responsive-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Support Section */
.page-index-why-choose-188v-link__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-why-choose-188v-link__channel-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-why-choose-188v-link__channel-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-why-choose-188v-link__channel-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-why-choose-188v-link__channel-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-index-why-choose-188v-link__channel-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-index-why-choose-188v-link__faq-list {
  margin-top: 40px;
}

.page-index-why-choose-188v-link__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f9f9f9;
  color: #333333;
}

.page-index-why-choose-188v-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-index-why-choose-188v-link__faq-question:hover {
  background-color: #f0f0f0;
}

.page-index-why-choose-188v-link__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-index-why-choose-188v-link__faq-item.active .page-index-why-choose-188v-link__faq-toggle {
  transform: rotate(45deg);
}

.page-index-why-choose-188v-link__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-index-why-choose-188v-link__faq-item.active .page-index-why-choose-188v-link__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-index-why-choose-188v-link__faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

/* CTA Bottom Section */
.page-index-why-choose-188v-link__cta-bottom-section {
  text-align: center;
  padding: 80px 0;
}

.page-index-why-choose-188v-link__cta-bottom-section .page-index-why-choose-188v-link__section-title {
  margin-bottom: 20px;
}

.page-index-why-choose-188v-link__cta-bottom-section .page-index-why-choose-188v-link__text-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-why-choose-188v-link__hero-title {
    font-size: 2.8em;
  }

  .page-index-why-choose-188v-link__section-title {
    font-size: 2em;
  }

  .page-index-why-choose-188v-link__tab-pane {
    flex-direction: column;
  }

  .page-index-why-choose-188v-link__content-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-why-choose-188v-link {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-why-choose-188v-link__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header */
    padding: 60px 0;
  }

  .page-index-why-choose-188v-link__hero-title {
    font-size: 2em;
  }

  .page-index-why-choose-188v-link__hero-description {
    font-size: 1em;
  }

  .page-index-why-choose-188v-link__section-title {
    font-size: 1.8em;
  }

  .page-index-why-choose-188v-link__btn-primary,
  .page-index-why-choose-188v-link__btn-secondary {
    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-why-choose-188v-link__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-why-choose-188v-link__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-why-choose-188v-link__feature-grid,
  .page-index-why-choose-188v-link__promo-grid,
  .page-index-why-choose-188v-link__support-channels {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-index-why-choose-188v-link__promo-image {
    height: 200px;
  }

  .page-index-why-choose-188v-link__tab-header {
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: none;
  }

  .page-index-why-choose-188v-link__tab-button {
    flex-grow: 1;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
  }

  .page-index-why-choose-188v-link__tab-button--active {
    border-bottom: 1px solid #26A9E0;
  }

  .page-index-why-choose-188v-link__tab-pane {
    padding: 20px;
  }

  .page-index-why-choose-188v-link__product-subtitle {
    font-size: 1.5em;
  }

  /* Image responsive rules */
  .page-index-why-choose-188v-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-index-why-choose-188v-link__section,
  .page-index-why-choose-188v-link__card,
  .page-index-why-choose-188v-link__container,
  .page-index-why-choose-188v-link__hero-section,
  .page-index-why-choose-188v-link__intro-section,
  .page-index-why-choose-188v-link__features-section,
  .page-index-why-choose-188v-link__products-section,
  .page-index-why-choose-188v-link__promotions-section,
  .page-index-why-choose-188v-link__experience-section,
  .page-index-why-choose-188v-link__support-section,
  .page-index-why-choose-188v-link__faq-section,
  .page-index-why-choose-188v-link__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* No specific video element in this page, but adding for completeness */
  .page-index-why-choose-188v-link video,
  .page-index-why-choose-188v-link__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-index-why-choose-188v-link__video-section,
  .page-index-why-choose-188v-link__video-container,
  .page-index-why-choose-188v-link__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

/* Contrast Fixes */
.page-index-why-choose-188v-link__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* Ensure light text on dark backgrounds for default text blocks */
.page-index-why-choose-188v-link__dark-bg .page-index-why-choose-188v-link__text-block {
  color: #f0f0f0;
}