/* style/vip-program-levels.css */

:root {
  --page-vip-program-levels-primary-color: #26A9E0;
  --page-vip-program-levels-secondary-color: #FFFFFF;
  --page-vip-program-levels-dark-text-color: #ffffff;
  --page-vip-program-levels-light-text-color: #333333;
  --page-vip-program-levels-background-dark: #000000;
  --page-vip-program-levels-background-light: #f8f9fa;
  --page-vip-program-levels-login-color: #EA7C07;
}

/* Base styles for the page content, ensuring text color contrast with body background */
.page-vip-program-levels {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-vip-program-levels-dark-text-color); /* Body background is #000000, so text is white */
  background-color: var(--page-vip-program-levels-background-dark); /* Ensure consistency if section background is transparent */
}

/* --- Hero Section --- */
.page-vip-program-levels__hero-section {
  position: relative;
  padding: 80px 20px;
  background-color: var(--page-vip-program-levels-background-dark);
  color: var(--page-vip-program-levels-dark-text-color);
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
}

.page-vip-program-levels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-vip-program-levels__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-vip-program-levels-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-program-levels__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-vip-program-levels__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-vip-program-levels__btn-primary {
  background-color: var(--page-vip-program-levels-primary-color);
  color: var(--page-vip-program-levels-secondary-color);
  border: 2px solid var(--page-vip-program-levels-primary-color);
}

.page-vip-program-levels__btn-primary:hover {
  background-color: darken(var(--page-vip-program-levels-primary-color), 10%);
  border-color: darken(var(--page-vip-program-levels-primary-color), 10%);
}

.page-vip-program-levels__btn-secondary {
  background-color: transparent;
  color: var(--page-vip-program-levels-primary-color);
  border: 2px solid var(--page-vip-program-levels-primary-color);
}

.page-vip-program-levels__btn-secondary:hover {
  background-color: var(--page-vip-program-levels-primary-color);
  color: var(--page-vip-program-levels-secondary-color);
}

/* --- General Section Styles --- */
.page-vip-program-levels__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-program-levels__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program-levels__dark-bg {
  background-color: var(--page-vip-program-levels-background-dark);
  color: var(--page-vip-program-levels-dark-text-color);
}

.page-vip-program-levels__light-bg {
  background-color: var(--page-vip-program-levels-background-light);
  color: var(--page-vip-program-levels-light-text-color);
}

/* --- Introduction Section --- */
.page-vip-program-levels__introduction-section {
  padding: 60px 20px;
}

.page-vip-program-levels__introduction-section .page-vip-program-levels__section-title {
  color: var(--page-vip-program-levels-primary-color);
}

.page-vip-program-levels__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-vip-program-levels__text-content {
  flex: 1;
  min-width: 300px;
}

.page-vip-program-levels__text-content p {
  margin-bottom: 15px;
  color: var(--page-vip-program-levels-light-text-color);
}

.page-vip-program-levels__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-vip-program-levels__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Levels Section --- */
.page-vip-program-levels__levels-section {
  padding: 60px 20px;
}

.page-vip-program-levels__levels-section .page-vip-program-levels__section-title,
.page-vip-program-levels__levels-section .page-vip-program-levels__section-subtitle {
  color: var(--page-vip-program-levels-secondary-color);
}

.page-vip-program-levels__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program-levels__level-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-program-levels__level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-program-levels__level-card .page-vip-program-levels__card-title {
  font-size: 1.8em;
  color: var(--page-vip-program-levels-primary-color);
  margin-bottom: 15px;
}

.page-vip-program-levels__level-card .page-vip-program-levels__card-text {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.page-vip-program-levels__level-card .page-vip-program-levels__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  min-width: 200px;
  min-height: 200px;
}

/* --- Benefits Section --- */
.page-vip-program-levels__benefits-section {
  padding: 60px 20px;
}

.page-vip-program-levels__benefits-section .page-vip-program-levels__section-title {
  color: var(--page-vip-program-levels-primary-color);
}

.page-vip-program-levels__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-vip-program-levels__benefit-card {
  background-color: var(--page-vip-program-levels-secondary-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--page-vip-program-levels-light-text-color);
}

.page-vip-program-levels__benefit-card:hover {
  transform: translateY(-5px);
}

.page-vip-program-levels__benefit-card .page-vip-program-levels__card-title {
  font-size: 1.5em;
  color: var(--page-vip-program-levels-primary-color);
  margin-bottom: 10px;
}

.page-vip-program-levels__benefit-card .page-vip-program-levels__card-text {
  font-size: 0.95em;
  color: var(--page-vip-program-levels-light-text-color);
}

.page-vip-program-levels__image-full-width {
  text-align: center;
  margin-top: 40px;
}

.page-vip-program-levels__image-full-width .page-vip-program-levels__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* --- How To Join Section --- */
.page-vip-program-levels__how-to-join-section {
  padding: 60px 20px;
}

.page-vip-program-levels__how-to-join-section .page-vip-program-levels__section-title,
.page-vip-program-levels__how-to-join-section .page-vip-program-levels__section-subtitle {
  color: var(--page-vip-program-levels-secondary-color);
}

.page-vip-program-levels__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program-levels__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--page-vip-program-levels-dark-text-color);
}

.page-vip-program-levels__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--page-vip-program-levels-primary-color);
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.page-vip-program-levels__step-card .page-vip-program-levels__card-title {
  font-size: 1.6em;
  color: var(--page-vip-program-levels-secondary-color);
  margin-bottom: 10px;
}

.page-vip-program-levels__step-card .page-vip-program-levels__card-text {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.8);
}

.page-vip-program-levels__note-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.9);
}

/* --- FAQ Section --- */
.page-vip-program-levels__faq-section {
  padding: 60px 20px;
}

.page-vip-program-levels__faq-section .page-vip-program-levels__section-title {
  color: var(--page-vip-program-levels-primary-color);
}

.page-vip-program-levels__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-vip-program-levels__faq-item {
  background-color: var(--page-vip-program-levels-secondary-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: var(--page-vip-program-levels-light-text-color);
}

.page-vip-program-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-vip-program-levels__faq-question:hover {
  background-color: #f5f5f5;
}

.page-vip-program-levels__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: var(--page-vip-program-levels-primary-color);
}

.page-vip-program-levels__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--page-vip-program-levels-primary-color);
  transition: transform 0.3s ease;
}

.page-vip-program-levels__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-vip-program-levels__faq-answer p {
  margin-bottom: 15px;
  color: var(--page-vip-program-levels-light-text-color);
}

.page-vip-program-levels__faq-item.active .page-vip-program-levels__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-vip-program-levels__faq-item.active .page-vip-program-levels__faq-toggle {
  transform: rotate(0deg); /* '+' to '-' handled by JS textContent */
}

/* --- Bottom CTA Section --- */
.page-vip-program-levels__cta-bottom-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--page-vip-program-levels-primary-color);
  color: var(--page-vip-program-levels-secondary-color);
}

.page-vip-program-levels__cta-bottom-section .page-vip-program-levels__section-title {
  color: var(--page-vip-program-levels-secondary-color);
}

.page-vip-program-levels__cta-bottom-section .page-vip-program-levels__section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-vip-program-levels__cta-bottom-section .page-vip-program-levels__btn-primary {
  background-color: var(--page-vip-program-levels-login-color); /* Use login color for strong CTA */
  border-color: var(--page-vip-program-levels-login-color);
}

.page-vip-program-levels__cta-bottom-section .page-vip-program-levels__btn-primary:hover {
  background-color: darken(var(--page-vip-program-levels-login-color), 10%);
  border-color: darken(var(--page-vip-program-levels-login-color), 10%);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .page-vip-program-levels__hero-title {
    font-size: 2.2em;
  }
  .page-vip-program-levels__section-title {
    font-size: 1.8em;
  }
  .page-vip-program-levels__content-wrapper {
    flex-direction: column;
  }
  .page-vip-program-levels__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-program-levels__btn-primary,
  .page-vip-program-levels__btn-secondary {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-vip-program-levels__hero-title {
    font-size: 1.8em;
  }
  .page-vip-program-levels__hero-description {
    font-size: 1em;
  }
  .page-vip-program-levels__section-title {
    font-size: 1.5em;
  }
  .page-vip-program-levels__section-subtitle {
    font-size: 0.95em;
  }
  .page-vip-program-levels__introduction-section,
  .page-vip-program-levels__levels-section,
  .page-vip-program-levels__benefits-section,
  .page-vip-program-levels__how-to-join-section,
  .page-vip-program-levels__faq-section,
  .page-vip-program-levels__cta-bottom-section {
    padding: 40px 15px;
  }

  /* Mobile image responsiveness */
  .page-vip-program-levels img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-program-levels__image-wrapper,
  .page-vip-program-levels__image-full-width,
  .page-vip-program-levels__levels-grid,
  .page-vip-program-levels__benefits-grid,
  .page-vip-program-levels__steps-grid,
  .page-vip-program-levels__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-vip-program-levels__container {
    padding: 0 15px;
  }
  
  /* Mobile button responsiveness */
  .page-vip-program-levels__cta-button,
  .page-vip-program-levels__btn-primary,
  .page-vip-program-levels__btn-secondary,
  .page-vip-program-levels a[class*="button"],
  .page-vip-program-levels 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-vip-program-levels__cta-buttons,
  .page-vip-program-levels__button-group,
  .page-vip-program-levels__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
  .page-vip-program-levels__faq-question,
  .page-vip-program-levels__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-program-levels__faq-item.active .page-vip-program-levels__faq-answer {
    padding: 15px 15px;
  }
}