/* style/vip-program.css */

/* Base styles for the VIP Program page */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-program__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

.page-vip-program__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles padding-top from header */
  overflow: hidden;
  background-color: #08160F;
}

.page-vip-program__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-vip-program__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual flow */
  position: relative;
  z-index: 1;
  background-color: rgba(8, 22, 15, 0.8); /* Background with slight transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-program__main-title {
  font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-vip-program__hero-description {
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-program__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-vip-program__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-vip-program__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 2px 10px rgba(87, 227, 141, 0.2);
}

.page-vip-program__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

/* Intro Section */
.page-vip-program__intro-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

/* Tiers Section */
.page-vip-program__tiers-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-program__dark-section .page-vip-program__section-title,
.page-vip-program__dark-section .page-vip-program__text-block {
  color: #F2FFF6;
}

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

.page-vip-program__card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__card-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-vip-program__card-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

.page-vip-program__card-list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-vip-program__card-list li::before {
  content: '✓';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  top: 0;
}

/* How to Join Section */
.page-vip-program__how-to-join-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-vip-program__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-vip-program__step-icon {
  font-size: 2.5em;
  color: #57E38D; /* Glow */
  margin-bottom: 20px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(87, 227, 141, 0.1);
  border: 2px solid #57E38D;
}

.page-vip-program__step-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

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

.page-vip-program__step-description a {
  color: #57E38D;
  text-decoration: none;
}

.page-vip-program__step-description a:hover {
  text-decoration: underline;
}

/* Exclusive Bonuses Section */
.page-vip-program__exclusive-bonuses-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-vip-program__bonus-card .page-vip-program__card-image {
  max-width: 100%;
}

.page-vip-program__bonus-card .page-vip-program__card-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Support Section */
.page-vip-program__support-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-vip-program__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-vip-program__feature-icon {
  width: 200px; /* Min size for content image */
  height: 150px; /* Min size for content image */
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 150px;
}

.page-vip-program__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-vip-program__feature-description {
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-program__feature-description a {
  color: #57E38D;
  text-decoration: none;
}

.page-vip-program__feature-description a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-vip-program__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-vip-program__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for summary */
}

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

.page-vip-program__faq-question:hover {
  background-color: rgba(34, 199, 104, 0.1);
}

.page-vip-program__faq-toggle {
  font-size: 1.5em;
  color: #57E38D; /* Glow */
  line-height: 1;
  margin-left: 15px;
}

.page-vip-program__faq-item[open] .page-vip-program__faq-toggle {
  content: '−';
  color: #F2C14E; /* Gold */
}

.page-vip-program__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* CTA Section */
.page-vip-program__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

.page-vip-program__cta-button {
  margin-top: 30px;
  min-width: 250px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-program__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-vip-program__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-program__hero-content {
    padding: 30px 15px;
    margin-top: -50px;
  }

  .page-vip-program__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important;
  }

  .page-vip-program__hero-description,
  .page-vip-program__text-block,
  .page-vip-program__card-description,
  .page-vip-program__step-description,
  .page-vip-program__feature-description,
  .page-vip-program__faq-answer p {
    font-size: 1em !important;
    text-align: left !important;
  }

  .page-vip-program__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px !important;
  }

  .page-vip-program__container,
  .page-vip-program__hero-section,
  .page-vip-program__intro-section,
  .page-vip-program__tiers-section,
  .page-vip-program__how-to-join-section,
  .page-vip-program__exclusive-bonuses-section,
  .page-vip-program__support-section,
  .page-vip-program__faq-section,
  .page-vip-program__cta-section,
  .page-vip-program__tier-cards,
  .page-vip-program__steps,
  .page-vip-program__bonus-grid,
  .page-vip-program__support-features,
  .page-vip-program__faq-list {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-program__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-
  }

  .page-vip-program video,
  .page-vip-program__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-program__video-section,
  .page-vip-program__video-container,
  .page-vip-program__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-vip-program__video-section {
    padding-top: 10px !important;
  }

  .page-vip-program__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-program__btn-primary,
  .page-vip-program__btn-secondary,
  .page-vip-program a[class*="button"],
  .page-vip-program 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;
    margin-bottom: 10px; /* Add space between stacked buttons */
  }

  .page-vip-program__cta-buttons,
  .page-vip-program__button-group,
  .page-vip-program__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;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-content {
    margin-top: -30px;
  }
  .page-vip-program__main-title {
    font-size: clamp(1.5em, 7vw, 2em) !important;
  }
  .page-vip-program__section-title {
    font-size: 1.5em !important;
  }
  .page-vip-program__card-title {
    font-size: 1.3em;
  }
  .page-vip-program__step-title,
  .page-vip-program__feature-title {
    font-size: 1.2em;
  }
}