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

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

.page-promotions-vip-benefits__hero-section {
  background: linear-gradient(135deg, #0A246A, #1a3a82);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-benefits__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_pattern,gold_blue,luxury_texture]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-vip-benefits__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-benefits__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-benefits__button--primary {
  background-color: #FFD700;
  color: #0A246A;
  border: 2px solid #FFD700;
}

.page-promotions-vip-benefits__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-vip-benefits__button--secondary:hover {
  background-color: #FFD700;
  color: #0A246A;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__button--large {
  padding: 16px 35px;
  font-size: 1.2em;
}

.page-promotions-vip-benefits__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-promotions-vip-benefits__section--alt-bg {
  background-color: #f8f8f8;
}

.page-promotions-vip-benefits__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-vip-benefits__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-benefits__text {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 25px;
  color: #555;
}

.page-promotions-vip-benefits__image-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions-vip-benefits__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-vip-benefits__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0A246A;
}

.page-promotions-vip-benefits__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-benefits__card-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.page-promotions-vip-benefits__card-text {
  font-size: 1em;
  color: #666;
}

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

.page-promotions-vip-benefits__benefit-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-benefits__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-vip-benefits__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

.page-promotions-vip-benefits__benefit-description {
  font-size: 0.95em;
  color: #666;
}

.page-promotions-vip-benefits__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
}

.page-promotions-vip-benefits__steps li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-promotions-vip-benefits__steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A246A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-benefits__step-title {
  color: #0A246A;
  font-size: 1.2em;
}

.page-promotions-vip-benefits__steps li a {
  color: #0A246A;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-vip-benefits__steps li a:hover {
  color: #FFD700;
}

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

.page-promotions-vip-benefits__list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-promotions-vip-benefits__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1;
}

.page-promotions-vip-benefits__list-title {
  color: #0A246A;
}

.page-promotions-vip-benefits__cta-section {
  background: linear-gradient(45deg, #0A246A, #1a3a82);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-benefits__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:geometric_pattern,blue_gold,subtle_texture]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-promotions-vip-benefits__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-benefits__faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-promotions-vip-benefits__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-vip-benefits__faq-question {
  font-size: 1.3em;
  color: #0A246A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-promotions-vip-benefits__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

.page-promotions-vip-benefits__faq-question.active + .page-promotions-vip-benefits__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-benefits__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-benefits__cta-title {
    font-size: 2.4em;
  }
  .page-promotions-vip-benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-vip-benefits__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-benefits__hero-section,
  .page-promotions-vip-benefits__cta-section {
    padding: 60px 0;
  }
  .page-promotions-vip-benefits__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-benefits__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-benefits__button {
    margin: 10px 5px;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-benefits__button--large {
    padding: 14px 30px;
    font-size: 1.1em;
  }
  .page-promotions-vip-benefits__section {
    padding: 40px 0;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-benefits__text,
  .page-promotions-vip-benefits__steps li,
  .page-promotions-vip-benefits__list li,
  .page-promotions-vip-benefits__cta-text,
  .page-promotions-vip-benefits__faq-answer {
    font-size: 0.95em;
  }
  .page-promotions-vip-benefits__card-title {
    font-size: 1.6em;
  }
  .page-promotions-vip-benefits__benefit-title {
    font-size: 1.3em;
  }
  .page-promotions-vip-benefits__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-benefits__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-benefits__button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-benefits__cta-title {
    font-size: 2em;
  }
  .page-promotions-vip-benefits__grid,
  .page-promotions-vip-benefits__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-benefits__steps li {
    padding-left: 50px;
  }
  .page-promotions-vip-benefits__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
}