/* style/vip-program.css */
.page-vip-program {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

.page-vip-program__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-vip-program__content-text {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  background-color: #f0f0f0;
  padding: 0;
  overflow: hidden;
}

.page-vip-program__hero-container {
  position: relative;
  width: 100%;
  height: 550px; /* Fixed height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-vip-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-vip-program__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Auxiliary brand color */
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-program__button {
  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;
  font-size: 1.1em;
  min-width: 200px;
  text-align: center;
}

.page-vip-program__button--primary {
  background-color: #CC0000; /* Main brand color */
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-vip-program__button--primary:hover {
  background-color: #a30000;
  border-color: #a30000;
}

.page-vip-program__button--secondary {
  background-color: #FFD700; /* Auxiliary brand color */
  color: #333333;
  border: 2px solid #FFD700;
}

.page-vip-program__button--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-vip-program__button--text-link {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

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

/* Tiers Overview Section */
.page-vip-program__tiers-overview {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-vip-program__tiers-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Exclusive Benefits Section */
.page-vip-program__exclusive-benefits {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-vip-program__benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-vip-program__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-vip-program__card-title {
  font-size: 1.4em;
  color: #CC0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-program__card-description {
  font-size: 0.95em;
  color: #666666;
}

/* How to Join Section */
.page-vip-program__how-to-join {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-vip-program__step-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-program__step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  background-color: #CC0000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: #ffffff;
}

/* FAQ Section */
.page-vip-program__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-vip-program__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-program__faq-question {
  font-size: 1.2em;
  color: #CC0000;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.page-vip-program__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-vip-program__faq-item.active .page-vip-program__faq-question::after {
  transform: rotate(45deg);
}

.page-vip-program__faq-answer {
  padding: 0 20px 20px 20px;
  color: #666666;
  display: none;
}

.page-vip-program__faq-item.active .page-vip-program__faq-answer {
  display: block;
}

.page-vip-program__faq-answer a {
  color: #CC0000;
  text-decoration: none;
}

.page-vip-program__faq-answer a:hover {
  text-decoration: underline;
}

/* Related Pages Section */
.page-vip-program__related-pages {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-vip-program__detail-list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-vip-program__detail-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  width: 100%;
}

.page-vip-program__detail-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program__detail-title a {
  color: #CC0000;
  text-decoration: none;
}

.page-vip-program__detail-title a:hover {
  text-decoration: underline;
}

.page-vip-program__detail-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* Call to Action Bottom */
.page-vip-program__cta-bottom {
  background-color: #CC0000; /* Main brand color */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-vip-program__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary brand color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-program__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-vip-program__hero-description {
    font-size: 1.1em;
  }
  .page-vip-program__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-program__hero-container {
    height: 450px;
  }
  .page-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-program__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-intro {
    font-size: 1em;
  }
  .page-vip-program__benefits-grid, .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program__benefit-icon, .page-vip-program__tiers-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-vip-program__cta-title {
    font-size: 2em;
  }
  .page-vip-program__cta-description {
    font-size: 1em;
  }
  .page-vip-program__container {
    padding: 0 15px;
  }
  .page-vip-program__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-vip-program__benefits-grid img, .page-vip-program__how-to-join img, .page-vip-program__tiers-overview img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-vip-program__detail-list {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-program__detail-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-vip-program__hero-description {
    font-size: 0.9em;
  }
  .page-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-vip-program__cta-title {
    font-size: 1.8em;
  }
}