/* style/promotions-vip-program.css */

/* Base styles for the VIP program page */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text on dark background */
  background-color: #001a33; /* Darker shade of primary color */
  line-height: 1.6;
}

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

.page-promotions-vip-program__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Secondary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__subtitle {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-promotions-vip-program p {
  margin-bottom: 1em;
  color: #e0e0e0;
}

.page-promotions-vip-program strong {
  color: #FFCC00;
}

/* Buttons */
.page-promotions-vip-program__button {
  display: inline-block;
  background-color: #FFCC00; /* Secondary color for buttons */
  color: #003366; /* Primary color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-promotions-vip-program__button:hover {
  background-color: #e6b800; /* Slightly darker yellow on hover */
  transform: translateY(-2px);
}

.page-promotions-vip-program__button--secondary {
  background-color: #004d99; /* Darker blue for secondary buttons */
  color: #FFCC00;
  border: 1px solid #FFCC00;
}

.page-promotions-vip-program__button--secondary:hover {
  background-color: #003366;
  border-color: #e6b800;
}

.page-promotions-vip-program__button--download {
  background-color: #336699;
  color: #ffffff;
}

.page-promotions-vip-program__button--download:hover {
  background-color: #2a537a;
}

.page-promotions-vip-program__link {
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-vip-program__link:hover {
  color: #e6b800;
  text-decoration: underline;
}

/* Hero Section */
.page-promotions-vip-program__hero {
  position: relative;
  background: linear-gradient(135deg, #003366, #001a33);
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promotions-vip-program__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 20px;
}

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

.page-promotions-vip-program__title {
  font-size: 3.5em;
  color: #FFCC00;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Tiers Section */
.page-promotions-vip-program__tiers {
  background-color: #002244; /* Slightly lighter blue */
}

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

.page-promotions-vip-program__tier-card {
  background-color: #003366;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

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

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

.page-promotions-vip-program__tier-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #e0e0e0;
}

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

.page-promotions-vip-program__tier-benefits li::before {
  content: '✔';
  color: #FFCC00;
  position: absolute;
  left: 0;
}

.page-promotions-vip-program__note {
  margin-top: 30px;
  font-style: italic;
  color: #cccccc;
}

/* Benefits Section */
.page-promotions-vip-program__benefits {
  background-color: #001a33;
}

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

.page-promotions-vip-program__benefit-item {
  background-color: #003366;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 204, 0, 0.2);
}

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

.page-promotions-vip-program__benefit-title {
  font-size: 1.5em;
  color: #FFCC00;
  margin-bottom: 15px;
}

/* How to Join Section */
.page-promotions-vip-program__how-to-join {
  background-color: #002244;
}

.page-promotions-vip-program__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__steps li {
  background-color: #003366;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 70px;
}

.page-promotions-vip-program__steps li strong {
  color: #FFCC00;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-promotions-vip-program__steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFCC00;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

/* FAQ Section */
.page-promotions-vip-program__faq {
  background-color: #001a33;
}

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

.page-promotions-vip-program__faq-question {
  font-size: 1.3em;
  color: #FFCC00;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions-vip-program__faq-answer {
  color: #cccccc;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid rgba(255, 204, 0, 0.1);
}

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

/* CTA Section */
.page-promotions-vip-program__cta {
  background: linear-gradient(135deg, #003366, #001a33);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__cta-title {
  font-size: 3em;
  color: #FFCC00;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-vip-program__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-promotions-vip-program__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-program__hero {
    padding: 80px 0;
    min-height: 400px;
  }
  .page-promotions-vip-program__title {
    font-size: 2.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__tier-grid,
  .page-promotions-vip-program__benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero {
    padding: 60px 0;
    min-height: 350px;
  }
  .page-promotions-vip-program__title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-program__section {
    padding: 40px 0;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__tier-grid,
  .page-promotions-vip-program__benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__steps li {
    padding: 20px;
    padding-left: 60px;
  }
  .page-promotions-vip-program__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-program__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-program__hero {
    min-height: 300px;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 1.8em;
  }
}