/* style/promotions-vip-program.css */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D2D; /* A slightly lighter variant of primary dark for background */
}

.page-promotions-vip-program h1, .page-promotions-vip-program h2, .page-promotions-vip-program h3, .page-promotions-vip-program h4 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-promotions-vip-program h1 {
  font-size: 2.8rem;
  text-align: center;
}

.page-promotions-vip-program h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.page-promotions-vip-program h3 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
}

.page-promotions-vip-program p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.page-promotions-vip-program__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #1A2E44; /* Primary dark blue for sections */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__section--about,
.page-promotions-vip-program__section--faq {
  background-color: #1A2E44;
}

.page-promotions-vip-program__section--tiers {
  background-color: #0F1D2D;
}

.page-promotions-vip-program__section--benefits {
  background-color: #1A2E44;
}

.page-promotions-vip-program__section--how-to-join {
  background-color: #0F1D2D;
}

.page-promotions-vip-program__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2E44 0%, #0F1D2D 100%);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-promotions-vip-program__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-program__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-promotions-vip-program__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-promotions-vip-program__btn--primary {
  background-color: #FFD700;
  color: #1A2E44;
  border-color: #FFD700;
}

.page-promotions-vip-program__btn--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-program__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-promotions-vip-program__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-program__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
}

.page-promotions-vip-program__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-promotions-vip-program__btn--small {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 20px;
  background-color: #FFD700;
  color: #1A2E44;
  border-color: #FFD700;
}

.page-promotions-vip-program__btn--small:hover {
  background-color: #e5c100;
  border-color: #e5c100;
}

.page-promotions-vip-program__btn--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

.page-promotions-vip-program__hero-image-wrapper {
  margin-top: 40px;
  max-width: 80%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-vip-program__section-title {
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  color: #FFD700;
}

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

.page-promotions-vip-program__text-block {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #CCCCCC;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__text-block--note {
  font-style: italic;
  color: #FFD700;
  margin-top: 30px;
}

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

.page-promotions-vip-program__feature-item {
  text-align: center;
  background-color: #0F1D2D;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.page-promotions-vip-program__feature-item h3 {
  color: #FFD700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-promotions-vip-program__feature-item p {
  color: #CCCCCC;
  font-size: 1rem;
}

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

.page-promotions-vip-program__tier-card {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-vip-program__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__tier-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.page-promotions-vip-program__tier-card h3 {
  color: #FFD700;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.page-promotions-vip-program__tier-card p {
  color: #CCCCCC;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-vip-program__tier-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #E0E0E0;
}

.page-promotions-vip-program__tier-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-program__tier-card ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-promotions-vip-program__benefit-item {
  background-color: #0F1D2D;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program__benefit-item:hover {
  background-color: #2a415a;
}

.page-promotions-vip-program__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.page-promotions-vip-program__benefit-item h3 {
  color: #FFD700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-item p {
  color: #CCCCCC;
  font-size: 0.95rem;
}

.page-promotions-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-vip-program__steps-list li {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  counter-increment: step-counter;
  text-align: center;
}

.page-promotions-vip-program__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A2E44;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  border: 4px solid #0F1D2D;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-program__steps-list li h4 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions-vip-program__steps-list li p {
  color: #CCCCCC;
  font-size: 1rem;
  margin-bottom: 20px;
}

.page-promotions-vip-program__process-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__faq-item {
  background-color: #0F1D2D;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__faq-question {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__faq-answer {
  color: #CCCCCC;
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
  padding-top: 0;
}

.page-promotions-vip-program__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-promotions-vip-program__section--cta {
  background: linear-gradient(90deg, #1A2E44, #0F1D2D);
  text-align: center;
  padding: 80px 20px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__cta-content {
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__cta-title {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-program__cta-description {
  font-size: 1.2rem;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  filter: brightness(0.9);
}

@media (max-width: 992px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.8rem;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2rem;
  }
  .page-promotions-vip-program__tiers-grid,
  .page-promotions-vip-program__benefit-list,
  .page-promotions-vip-program__features,
  .page-promotions-vip-program__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.2rem;
  }
  .page-promotions-vip-program__hero-description {
    font-size: 1.1rem;
  }
  .page-promotions-vip-program__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-program__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8rem;
  }
  .page-promotions-vip-program__text-block {
    font-size: 1rem;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 2rem;
  }
  .page-promotions-vip-program__cta-description {
    font-size: 1rem;
  }
  .page-promotions-vip-program__btn--large {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 1.8rem;
  }
  .page-promotions-vip-program__hero-description {
    font-size: 0.95rem;
  }
  .page-promotions-vip-program__section {
    padding: 40px 0;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.5rem;
  }
  .page-promotions-vip-program__btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-promotions-vip-program__steps-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    top: -15px;
  }
  .page-promotions-vip-program__steps-list li h4 {
    font-size: 1.3rem;
    margin-top: 15px;
  }
}