/* style/vip-program-levels.css */
.page-vip-program-levels {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-vip-program-levels__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* body handles top padding, this is for visual separation */
  overflow: hidden;
  background-color: #08160F;
}

.page-vip-program-levels__image-container {
  width: 100%;
  max-width: 1920px; /* Ensure image container doesn't exceed common max width */
  margin-bottom: 30px;
}

.page-vip-program-levels__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-vip-program-levels__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-vip-program-levels__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-vip-program-levels__hero-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-vip-program-levels__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-vip-program-levels__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-vip-program-levels__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #08160F;
}

.page-vip-program-levels__introduction-section {
  background-color: #0A4B2C;
}

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

.page-vip-program-levels__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-vip-program-levels__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-vip-program-levels__introduction-section p {
  font-size: 1.05em;
  color: #A7D9B8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program-levels__levels-section {
  background-color: #11271B;
}

.page-vip-program-levels__level-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: #0A4B2C;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E;
}

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

.page-vip-program-levels__level-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

.page-vip-program-levels__level-name {
  font-size: 1.8em;
  color: #F2C14E; /* Gold color for level names */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-vip-program-levels__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-vip-program-levels__level-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.page-vip-program-levels__level-benefits li::before {
  content: '✓';
  color: #2AD16F;
  position: absolute;
  left: 0;
  top: 0;
}

.page-vip-program-levels__benefits-section {
  background-color: #08160F;
}

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

.page-vip-program-levels__benefit-item {
  background-color: #11271B;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  border: 1px solid #2E7A4E;
}

.page-vip-program-levels__benefit-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

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

.page-vip-program-levels__benefit-item p {
  color: #A7D9B8;
  font-size: 1em;
}

.page-vip-program-levels__upgrade-section {
  background-color: #0A4B2C;
}

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

.page-vip-program-levels__step-item {
  background-color: #11271B;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid #2E7A4E;
}

.page-vip-program-levels__step-title {
  font-size: 1.6em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-vip-program-levels__step-item p {
  color: #A7D9B8;
  font-size: 1em;
}

.page-vip-program-levels__progress-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure min size */
  min-height: 200px;
}

.page-vip-program-levels__faq-section {
  background-color: #08160F;
}

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

.page-vip-program-levels__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-vip-program-levels__faq-item[open] {
  background-color: #0A4B2C;
}

.page-vip-program-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  user-select: none;
  list-style: none;
}

.page-vip-program-levels__faq-question::-webkit-details-marker {
  display: none;
}

.page-vip-program-levels__faq-qtext {
  flex-grow: 1;
}

.page-vip-program-levels__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  color: #2AD16F;
}

.page-vip-program-levels__faq-item[open] .page-vip-program-levels__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-vip-program-levels__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.7;
}

.page-vip-program-levels__cta-section {
  background-color: #0A4B2C;
  padding: 80px 20px;
}

.page-vip-program-levels__cta-content {
  max-width: 800px;
}

.page-vip-program-levels__cta-content p {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-program-levels__level-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-vip-program-levels__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels__hero-section {
    padding: 10px 15px 40px;
  }
  .page-vip-program-levels__hero-content {
    padding: 0 15px;
  }
  .page-vip-program-levels__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-vip-program-levels__hero-description {
    font-size: 1em;
  }
  .page-vip-program-levels__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program-levels__section {
    padding: 40px 15px;
  }
  .page-vip-program-levels__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-program-levels__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }
  .page-vip-program-levels__level-grid,
  .page-vip-program-levels__benefits-grid,
  .page-vip-program-levels__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-program-levels__level-card,
  .page-vip-program-levels__benefit-item,
  .page-vip-program-levels__step-item {
    padding: 20px;
  }
  .page-vip-program-levels__level-name {
    font-size: 1.6em;
  }
  .page-vip-program-levels__benefit-title {
    font-size: 1.4em;
  }
  .page-vip-program-levels__step-title {
    font-size: 1.4em;
  }
  .page-vip-program-levels__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-vip-program-levels__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsiveness */
  .page-vip-program-levels img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset !important; /* Allow smaller sizes on mobile if needed, but still > 200px if content image */
    min-height: unset !important;
  }
  .page-vip-program-levels__image-container,
  .page-vip-program-levels__section,
  .page-vip-program-levels__card,
  .page-vip-program-levels__container,
  .page-vip-program-levels__level-card,
  .page-vip-program-levels__benefit-item,
  .page-vip-program-levels__step-item,
  .page-vip-program-levels__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-program-levels__hero-section {
    padding-top: 10px !important;
  }
  
  /* 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;
  }
  .page-vip-program-levels__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}