/* style/promotions-vip-program.css */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2239; /* Main dark blue background */
  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__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5B 100%);
  padding: 100px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-promotions-vip-program__hero-small-text {
  font-size: 1em;
  margin-top: 15px;
  color: #CCCCCC;
}

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

.page-promotions-vip-program__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-vip-program__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.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-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-promotions-vip-program__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
}

.page-promotions-vip-program__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-promotions-vip-program__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
}

.page-promotions-vip-program__btn--lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-promotions-vip-program__grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-program__vip-card {
  background-color: #1A3A5B; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-vip-program__vip-card:hover {
  transform: translateY(-10px);
  background-color: #2A4C70;
}

.page-promotions-vip-program__vip-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-vip-program__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-promotions-vip-program__card-description {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
}

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

.page-promotions-vip-program__feature-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-promotions-vip-program__feature-list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-promotions-vip-program__benefit-item:hover {
  transform: translateY(-10px);
  background-color: #2A4C70;
}

.page-promotions-vip-program__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-promotions-vip-program__cta-bottom {
  background: linear-gradient(90deg, #0A2239, #3A628A);
  padding: 80px 0;
  color: #FFFFFF;
}

.page-promotions-vip-program__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-promotions-vip-program__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-promotions-vip-program__faq-item {
  background-color: #1A3A5B;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
}

.page-promotions-vip-program__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  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.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 10px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-vip-program__hero-title {
    font-size: 3em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero {
    padding: 80px 0;
  }
  .page-promotions-vip-program__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-vip-program__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-vip-program__section {
    padding: 40px 0;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__grid-3, .page-promotions-vip-program__grid-2 {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__vip-card, .page-promotions-vip-program__benefit-item {
    padding: 25px;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__cta-description {
    font-size: 1em;
  }
  .page-promotions-vip-program__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero {
    padding: 60px 0;
  }
  .page-promotions-vip-program__hero-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__hero-description {
    font-size: 1em;
  }
  .page-promotions-vip-program__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-vip-program__btn--lg {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 1.8em;
  }
}