/* style/vip-program.css */
.page-vip-program {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-vip-program__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

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

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

.page-vip-program__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

.page-vip-program__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-vip-program__section:last-of-type {
  border-bottom: none;
}

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Main dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-vip-program__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B505; /* Gold accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-vip-program__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page-vip-program__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-vip-program__btn--primary {
  background-color: #E3B505; /* Gold */
  color: #0A2463; /* Dark blue */
  box-shadow: 0 4px 10px rgba(227, 181, 5, 0.4);
}

.page-vip-program__btn--primary:hover {
  background-color: #C89F04; /* Darker gold */
  color: #051A4A;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(227, 181, 5, 0.6);
}

.page-vip-program__btn--secondary {
  background-color: #0A2463; /* Dark blue */
  color: #E3B505; /* Gold */
  border: 2px solid #E3B505;
  box-shadow: 0 4px 10px rgba(10, 36, 99, 0.3);
}

.page-vip-program__btn--secondary:hover {
  background-color: #051A4A; /* Darker blue */
  color: #F0C42E; /* Lighter gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10, 36, 99, 0.5);
}

.page-vip-program__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #0A2463;
  color: #E3B505;
  border: 1px solid #E3B505;
}

.page-vip-program__btn--small:hover {
  background-color: #051A4A;
  color: #F0C42E;
}

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

.page-vip-program__level-card {
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #E3B505;
}

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

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

.page-vip-program__level-desc {
  font-size: 1em;
  color: #666;
}

.page-vip-program__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-program__image--full-width {
  width: 100%;
}

.page-vip-program__image--small {
  max-width: 700px;
}

.page-vip-program__privilege-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-left: 5px solid #0A2463;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-program__privilege-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-vip-program__privilege-item p {
  color: #555;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-vip-program__steps-list li {
  background-color: #eef4fb;
  border-left: 5px solid #E3B505;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.page-vip-program__steps-list li strong {
  color: #0A2463;
}

.page-vip-program__list {
  list-style: disc inside;
  margin: 20px 0 30px 20px;
  font-size: 1.1em;
  color: #555;
}

.page-vip-program__list li {
  margin-bottom: 10px;
}

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

.page-vip-program__detail-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-top: 4px solid #0A2463;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-program__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-vip-program__detail-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

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

.page-vip-program__detail-desc {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-program__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-vip-program__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #eef4fb;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E3B505;
  transition: transform 0.3s ease;
}

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

.page-vip-program__faq-question:hover {
  background-color: #e0eaf6;
}

.page-vip-program__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-program__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-vip-program__faq-answer p {
  color: #555;
  font-size: 1.05em;
  line-height: 1.7;
  margin: 0;
}

.page-vip-program__section--conclusion {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #0A2463, #1A3E8A);
  color: #fff;
}

.page-vip-program__section--conclusion .page-vip-program__section-title {
  color: #E3B505;
}

.page-vip-program__section--conclusion .page-vip-program__section-title::after {
  background-color: #E3B505;
}

.page-vip-program__section--conclusion .page-vip-program__text-block {
  color: #f0f0f0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-vip-program__hero {
    padding: 60px 15px;
  }

  .page-vip-program__hero-title {
    font-size: 2.5em;
  }

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

  .page-vip-program__section {
    padding: 40px 15px;
  }

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

  .page-vip-program__levels-grid,
  .page-vip-program__details-list {
    grid-template-columns: 1fr;
  }

  .page-vip-program__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-program__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-vip-program__faq-question::after {
    right: 20px;
  }
}

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

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

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

  .page-vip-program__text-block {
    font-size: 1em;
  }

  .page-vip-program__privilege-title {
    font-size: 1.4em;
  }

  .page-vip-program__steps-list li {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-vip-program__detail-title {
    font-size: 1.3em;
  }

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