/* style/vip-loyalty-programs-vip-levels-privileges.css */

.page-vip-loyalty-programs-vip-levels-privileges {
  font-family: 'Arial', sans-serif;
  color: #e5d1bb; /* Light text for dark background */
  background-color: #1A2E44; /* Main background color */
}

.page-vip-loyalty-programs-vip-levels-privileges__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-loyalty-programs-vip-levels-privileges__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #3a506b 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  border-bottom: 5px solid #FFD700;
}

.page-vip-loyalty-programs-vip-levels-privileges__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-loyalty-programs-vip-levels-privileges__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e5d1bb;
}

.page-vip-loyalty-programs-vip-levels-privileges__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-loyalty-programs-vip-levels-privileges__cta-button:hover {
  background-color: #e5d1bb;
  transform: translateY(-3px);
}

.page-vip-loyalty-programs-vip-levels-privileges__cta-button--secondary {
  background-color: #5f6d7c;
  color: #e5d1bb;
  margin-left: 20px;
}

.page-vip-loyalty-programs-vip-levels-privileges__cta-button--secondary:hover {
  background-color: #76828f;
}

.page-vip-loyalty-programs-vip-levels-privileges__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-loyalty-programs-vip-levels-privileges__section:last-of-type {
  border-bottom: none;
}

.page-vip-loyalty-programs-vip-levels-privileges__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

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

.page-vip-loyalty-programs-vip-levels-privileges__description,
.page-vip-loyalty-programs-vip-levels-privileges__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e5d1bb;
}

.page-vip-loyalty-programs-vip-levels-privileges__sub-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-vip-loyalty-programs-vip-levels-privileges__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e5d1bb;
}

.page-vip-loyalty-programs-vip-levels-privileges__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-vip-loyalty-programs-vip-levels-privileges__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-vip-loyalty-programs-vip-levels-privileges__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-loyalty-programs-vip-levels-privileges__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-vip-loyalty-programs-vip-levels-privileges__content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-vip-loyalty-programs-vip-levels-privileges__image--right {
    order: 1;
  }

  .page-vip-loyalty-programs-vip-levels-privileges__text-content {
    order: 2;
  }
}

.page-vip-loyalty-programs-vip-levels-privileges__level-detail {
  background-color: #1A2E44;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-loyalty-programs-vip-levels-privileges__level-detail h3 {
  color: #FFD700;
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  font-size: 1.8em;
}

.page-vip-loyalty-programs-vip-levels-privileges__level-detail p {
  color: #e5d1bb;
}

.page-vip-loyalty-programs-vip-levels-privileges__level-detail .page-vip-loyalty-programs-vip-levels-privileges__list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.page-vip-loyalty-programs-vip-levels-privileges__level-detail .page-vip-loyalty-programs-vip-levels-privileges__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #e5d1bb;
}

.page-vip-loyalty-programs-vip-levels-privileges__level-detail .page-vip-loyalty-programs-vip-levels-privileges__list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-loyalty-programs-vip-levels-privileges__how-to-upgrade ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding-left: 0;
}

.page-vip-loyalty-programs-vip-levels-privileges__how-to-upgrade ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  line-height: 1.8;
  color: #e5d1bb;
}

.page-vip-loyalty-programs-vip-levels-privileges__how-to-upgrade ol li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #1A2E44;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-vip-loyalty-programs-vip-levels-privileges__tip {
  background-color: #2b3e52;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-top: 40px;
  border-radius: 5px;
  font-style: italic;
  color: #e5d1bb;
}

.page-vip-loyalty-programs-vip-levels-privileges__faq-list {
  margin-top: 40px;
}

.page-vip-loyalty-programs-vip-levels-privileges__faq-item {
  background-color: #2b3e52;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-loyalty-programs-vip-levels-privileges__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-loyalty-programs-vip-levels-privileges__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-vip-loyalty-programs-vip-levels-privileges__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #e5d1bb;
  display: none;
}

.page-vip-loyalty-programs-vip-levels-privileges__faq-answer.active {
  display: block;
}

.page-vip-loyalty-programs-vip-levels-privileges__list--commitment li::before {
  content: '★';
  color: #FFD700;
}

.page-vip-loyalty-programs-vip-levels-privileges__final-cta {
  text-align: center;
  padding-bottom: 100px;
}

.page-vip-loyalty-programs-vip-levels-privileges__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-loyalty-programs-vip-levels-privileges__main-title {
    font-size: 2.8em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__section-title {
    font-size: 2.2em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__sub-title {
    font-size: 1.7em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-vip-loyalty-programs-vip-levels-privileges__hero-section {
    padding: 80px 0;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__main-title {
    font-size: 2.2em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__subtitle {
    font-size: 1.2em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__section {
    padding: 60px 0;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__sub-title {
    font-size: 1.5em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__content-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__image--right,
  .page-vip-loyalty-programs-vip-levels-privileges__text-content {
    order: unset;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__button-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-vip-loyalty-programs-vip-levels-privileges__main-title {
    font-size: 1.8em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__subtitle {
    font-size: 1em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__section-title {
    font-size: 1.5em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__how-to-upgrade ol li {
    padding-left: 50px;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__how-to-upgrade ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__faq-question::after {
    right: 15px;
  }
  .page-vip-loyalty-programs-vip-levels-privileges__faq-answer {
    padding: 0 15px 15px;
  }
}