/* style/vip-program.css */
/* Base styles for page-vip-program */
.page-vip-program {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

/* Ensure all images are responsive by default */
.page-vip-program img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-vip-program__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-vip-program__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.page-vip-program__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-program__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-program__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-vip-program__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-vip-program__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-vip-program__text-block {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: justify;
  color: #A7D9B8; /* Text Secondary */
}

/* Video Section */
.page-vip-program__video-section {
  position: relative;
  width: 100%;
  max-width: 100%; /* Ensure it spans full width */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  overflow: hidden;
}

.page-vip-program__video-container {
  width: 100%; /* Desktop width */
  max-width: 1200px; /* Max width for video container */
  margin: 0 auto;
  box-sizing: border-box;
}

.page-vip-program__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-vip-program__video-link {
  display: block; /* Make the whole area clickable */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ensure it's above the video controls */
  cursor: pointer;
  text-decoration: none; /* Remove underline for video link */
}

.page-vip-program__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  object-fit: cover; /* Ensure video covers the area */
}

.page-vip-program__cta-button--video {
  margin-top: 20px;
}

/* Benefits Section */
.page-vip-program__benefits-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.page-vip-program__benefit-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-program__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Min size 200x200 for images */
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-program__benefit-title {
  color: #F2C14E; /* Gold */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-vip-program__benefit-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* Levels Section */
.page-vip-program__levels-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.page-vip-program__level-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-program__level-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-program__level-title {
  color: #F2C14E; /* Gold */
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.page-vip-program__level-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-vip-program__level-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

.page-vip-program__level-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-vip-program__level-features li::before {
  content: '✅'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #2AD16F;
}

/* Join Section */
.page-vip-program__join-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.page-vip-program__step-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-program__step-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-program__step-title {
  color: #F2C14E; /* Gold */
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.page-vip-program__step-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-vip-program__text-link {
  color: #2AD16F; /* A green color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-vip-program__text-link:hover {
  text-decoration: underline;
}

.page-vip-program__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-vip-program__cta-button--secondary {
  background: transparent;
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-vip-program__cta-button--secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
}

/* FAQ Section */
.page-vip-program__faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-vip-program__faq-list {
  margin-top: 40px;
}

.page-vip-program__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

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

.page-vip-program__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
}

.page-vip-program__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.6;
}

/* Conclusion Section */
.page-vip-program__conclusion-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-program__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-vip-program {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-program__hero-section,
  .page-vip-program__video-section,
  .page-vip-program__benefits-section,
  .page-vip-program__levels-section,
  .page-vip-program__join-section,
  .page-vip-program__faq-section,
  .page-vip-program__conclusion-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-program__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-vip-program__video-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-vip-program__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-vip-program__section-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    padding-top: 40px;
  }

  .page-vip-program__description,
  .page-vip-program__text-block,
  .page-vip-program__benefit-description,
  .page-vip-program__level-description,
  .page-vip-program__step-description,
  .page-vip-program__faq-answer p {
    font-size: 0.95rem;
  }

  .page-vip-program__benefits-grid,
  .page-vip-program__levels-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-program__cta-button,
  .page-vip-program__cta-button--secondary,
  .page-vip-program__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-vip-program__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  /* Image responsive rules */
  .page-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-program__hero-image-wrapper,
  .page-vip-program__video-container,
  .page-vip-program__video-wrapper,
  .page-vip-program__benefits-section,
  .page-vip-program__benefit-card,
  .page-vip-program__level-card,
  .page-vip-program__step-card,
  .page-vip-program__join-section,
  .page-vip-program__faq-section,
  .page-vip-program__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}