/* style/promotions-vip-program.css */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
}

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

.page-promotions-vip-program__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promotions-vip-program__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-promotions-vip-program__hero-cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Main color for text on CTA */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-promotions-vip-program__hero-cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

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

.page-promotions-vip-program__section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-promotions-vip-program__section:nth-of-type(even) {
  background-color: #222222;
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #FFCC00;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions-vip-program__overview p, .page-promotions-vip-program__maintenance p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions-vip-program__benefit-item {
  background-color: #003366; /* Main color for benefit cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions-vip-program__benefit-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: justify;
}

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

.page-promotions-vip-program__level-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFCC00;
}

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

.page-promotions-vip-program__level-card p {
  font-size: 1em;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 10px;
}

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

.page-promotions-vip-program__maintenance ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-vip-program__maintenance ul li {
  background-color: #003366;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__maintenance ul li::before {
  content: '✔️';
  margin-right: 15px;
  color: #FFCC00;
  font-size: 1.2em;
}

.page-promotions-vip-program__cta-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
  margin-top: 30px;
}

.page-promotions-vip-program__cta-button:hover {
  background-color: #002244;
  transform: translateY(-3px);
}

.page-promotions-vip-program__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-promotions-vip-program__image-small {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto 20px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

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

.page-promotions-vip-program__faq-question {
  font-size: 1.2em;
  color: #FFCC00;
  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;
  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 {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding-top: 0;
}

.page-promotions-vip-program__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-promotions-vip-program__cta-final {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  text-align: center;
  padding: 80px 0;
}

.page-promotions-vip-program__cta-final .page-promotions-vip-program__section-title {
  color: #FFCC00;
}

.page-promotions-vip-program__cta-final p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

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

.page-promotions-vip-program__cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-promotions-vip-program__cta-button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-promotions-vip-program__cta-button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border-color: #FFCC00;
}

.page-promotions-vip-program__cta-button--secondary:hover {
  background-color: #003366;
  color: #FFCC00;
  border-color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-vip-program__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions-vip-program__section-title {
    font-size: 2em;
  }

  .page-promotions-vip-program__benefits-grid, .page-promotions-vip-program__levels-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions-vip-program__hero-section, .page-promotions-vip-program__cta-final {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2em;
  }

  .page-promotions-vip-program__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program__benefit-title, .page-promotions-vip-program__level-title {
    font-size: 1.3em;
  }

  .page-promotions-vip-program__maintenance ul li {
    font-size: 0.95em;
  }

  .page-promotions-vip-program__faq-question {
    font-size: 1.1em;
  }
}