/* style/vip-program-levels.css */
.page-vip-program-levels {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for default light body background */
  background-color: #f8f8f8; /* Slightly off-white background for main content */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-vip-program-levels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-vip-program-levels__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000080; /* Midnight blue background */
  color: #ffffff; /* White text for dark background */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-vip-program-levels__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-vip-program-levels__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-vip-program-levels__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-vip-program-levels__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Midnight blue text */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-program-levels__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #000066; /* Darker blue on hover */
  transform: translateY(-3px);
}

.page-vip-program-levels__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-vip-program-levels__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay for background image */
}

/* General Section Styles */
.page-vip-program-levels__overview-section,
.page-vip-program-levels__levels-section,
.page-vip-program-levels__benefits-showcase,
.page-vip-program-levels__how-to-join,
.page-vip-program-levels__faq-section,
.page-vip-program-levels__cta-section {
  padding: 60px 0;
}

.page-vip-program-levels__section-title {
  font-size: 2.5em;
  color: #000080; /* Midnight blue for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-program-levels__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-vip-program-levels__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* VIP Levels Cards */
.page-vip-program-levels__levels-section {
  background-color: #ffffff;
}

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

.page-vip-program-levels__level-card {
  background-color: #000080;
  color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-program-levels__level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.page-vip-program-levels__level-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-vip-program-levels__level-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program-levels__level-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-program-levels__level-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.page-vip-program-levels__level-features li {
  margin-bottom: 8px;
  font-size: 0.95em;
  position: relative;
  padding-left: 25px;
}

.page-vip-program-levels__level-features li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-program-levels__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-vip-program-levels__card-button:hover {
  background-color: #e6c200;
  color: #000066;
}

/* Benefits Showcase */
.page-vip-program-levels__benefits-showcase {
  background-color: #f0f0f0;
}

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

.page-vip-program-levels__benefit-item {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-program-levels__benefit-icon {
  width: 100%;
  max-width: 300px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 25px;
  border-radius: 10px;
  object-fit: cover;
}

.page-vip-program-levels__benefit-title {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program-levels__benefit-description {
  font-size: 1em;
  color: #555555;
}

/* How to Join Section */
.page-vip-program-levels__how-to-join {
  background-color: #e6e6e6;
}

.page-vip-program-levels__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-vip-program-levels__steps-list li {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333333;
  display: flex;
  align-items: center;
}

.page-vip-program-levels__steps-list li a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-vip-program-levels__steps-list li a:hover {
  color: #FFD700;
}

.page-vip-program-levels__step-number {
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-vip-program-levels__cta-button--large {
  font-size: 1.2em;
  padding: 18px 40px;
  margin-top: 30px;
}

/* FAQ Section */
.page-vip-program-levels__faq-section {
  background-color: #ffffff;
}

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

.page-vip-program-levels__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-program-levels__faq-question {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 15px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-vip-program-levels__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-vip-program-levels__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-vip-program-levels__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-vip-program-levels__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Final CTA Section */
.page-vip-program-levels__cta-section {
  background-color: #000080; /* Midnight blue background */
  color: #ffffff; /* White text */
  text-align: center;
  padding: 80px 20px;
}

.page-vip-program-levels__cta-section .page-vip-program-levels__section-title {
  color: #FFD700; /* Gold for title */
}

.page-vip-program-levels__cta-section .page-vip-program-levels__section-title::after {
  background-color: #FFD700;
}

.page-vip-program-levels__cta-section .page-vip-program-levels__section-text {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-vip-program-levels__cta-button--final {
  background-color: #FFD700;
  color: #000080;
  font-size: 1.3em;
  padding: 20px 45px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-program-levels__cta-button--final:hover {
  background-color: #e6c200;
  color: #000066;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-program-levels__hero-title {
    font-size: 2.8em;
  }
  .page-vip-program-levels__hero-description {
    font-size: 1.1em;
  }
  .page-vip-program-levels__section-title {
    font-size: 2em;
  }
  .page-vip-program-levels__level-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-vip-program-levels__benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels__hero-section {
    padding: 60px 20px;
  }
  .page-vip-program-levels__hero-title {
    font-size: 2.2em;
  }
  .page-vip-program-levels__hero-description {
    font-size: 1em;
  }
  .page-vip-program-levels__cta-button {
    font-size: 1em;
    padding: 12px 30px;
  }
  .page-vip-program-levels__section-title {
    font-size: 1.8em;
  }
  .page-vip-program-levels__section-text {
    font-size: 0.95em;
  }
  .page-vip-program-levels__level-cards,
  .page-vip-program-levels__benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program-levels__level-card,
  .page-vip-program-levels__benefit-item {
    padding: 25px;
  }
  .page-vip-program-levels__level-icon,
  .page-vip-program-levels__benefit-icon {
    max-width: 100%; /* Ensure images do not overflow */
    height: auto;
  }
  .page-vip-program-levels__steps-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-vip-program-levels__step-number {
    width: 30px;
    height: 30px;
    font-size: 1em;
    margin-right: 10px;
  }
  .page-vip-program-levels__faq-question {
    font-size: 1.2em;
  }
  .page-vip-program-levels__faq-answer {
    font-size: 0.95em;
  }
  .page-vip-program-levels__cta-button--large,
  .page-vip-program-levels__cta-button--final {
    font-size: 1.1em;
    padding: 15px 35px;
  }

  /* Mobile content area images must be constrained */
  .page-vip-program-levels img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-program-levels {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-vip-program-levels__hero-title {
    font-size: 1.8em;
  }
  .page-vip-program-levels__section-title {
    font-size: 1.5em;
  }
  .page-vip-program-levels__level-title {
    font-size: 1.5em;
  }
  .page-vip-program-levels__benefit-title {
    font-size: 1.4em;
  }
  .page-vip-program-levels__faq-question {
    font-size: 1.1em;
  }
}