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

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

/* Hero Section */
.page-promotions-vip-exclusive-benefits__hero-section {
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Dark blue to a slightly brighter blue */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%); /* Subtle gold radial gradient */
  animation: page-promotions-vip-exclusive-benefits__rotate 20s linear infinite;
}

@keyframes page-promotions-vip-exclusive-benefits__rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-promotions-vip-exclusive-benefits__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

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

.page-promotions-vip-exclusive-benefits__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-promotions-vip-exclusive-benefits__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0047AB; /* Dark blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-exclusive-benefits__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-exclusive-benefits__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.page-promotions-vip-exclusive-benefits__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* General Section Styling */
.page-promotions-vip-exclusive-benefits__section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-vip-exclusive-benefits__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__section-title {
  font-size: 2.8em;
  color: #0047AB; /* Dark blue */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  border-radius: 2px;
}

.page-promotions-vip-exclusive-benefits__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #555;
}

/* Why VIP Section */
.page-promotions-vip-exclusive-benefits__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-exclusive-benefits__feature-item {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 71, 171, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-promotions-vip-exclusive-benefits__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 71, 171, 0.15);
}

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

.page-promotions-vip-exclusive-benefits__feature-item h3 {
  font-size: 1.6em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__feature-item p {
  color: #666;
}

/* VIP Levels Section */
.page-promotions-vip-exclusive-benefits__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-vip-exclusive-benefits__level-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-left: 6px solid #0047AB;
}

.page-promotions-vip-exclusive-benefits__level-card h3 {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 10px;
}

.page-promotions-vip-exclusive-benefits__level-card p {
  color: #666;
}

.page-promotions-vip-exclusive-benefits__note {
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

/* Detailed Benefits Section */
.page-promotions-vip-exclusive-benefits__detailed-benefits {
  background-color: #fcfcfc;
}

.page-promotions-vip-exclusive-benefits__benefit-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 71, 171, 0.05);
  border: 1px solid #eee;
}

.page-promotions-vip-exclusive-benefits__benefit-card--reverse {
  flex-direction: row-reverse;
}

.page-promotions-vip-exclusive-benefits__benefit-image {
  flex: 0 0 350px;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-exclusive-benefits__benefit-content {
  flex-grow: 1;
}

.page-promotions-vip-exclusive-benefits__benefit-content h3 {
  font-size: 2em;
  color: #0047AB;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__benefit-content p {
  color: #444;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__benefit-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__benefit-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555;
}

.page-promotions-vip-exclusive-benefits__benefit-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

/* How to Join Section */
.page-promotions-vip-exclusive-benefits__how-to-join {
  background-color: #e6f0ff; /* Light blue tint */
}

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

.page-promotions-vip-exclusive-benefits__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 71, 171, 0.05);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-promotions-vip-exclusive-benefits__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold */
  color: #0047AB; /* Dark blue */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #0047AB;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-exclusive-benefits__step-item h3 {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 10px;
}

.page-promotions-vip-exclusive-benefits__step-item p {
  color: #666;
}

.page-promotions-vip-exclusive-benefits__criteria-text {
  margin-top: 40px;
  font-size: 1.05em;
  color: #555;
  text-align: left;
}

/* Security Section */
.page-promotions-vip-exclusive-benefits__security-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promotions-vip-exclusive-benefits__security-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #0047AB;
}

.page-promotions-vip-exclusive-benefits__security-list li::before {
  content: '🔒'; /* Lock emoji */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-promotions-vip-exclusive-benefits__security-conclusion {
  margin-top: 40px;
  font-size: 1.1em;
  font-weight: bold;
  color: #0047AB;
}

/* Call to Action Bottom */
.page-promotions-vip-exclusive-benefits__cta-bottom {
  background: #0047AB; /* Dark blue background */
  color: #ffffff;
  padding: 100px 0;
}

.page-promotions-vip-exclusive-benefits__cta-bottom .page-promotions-vip-exclusive-benefits__section-title {
  color: #FFD700;
}

.page-promotions-vip-exclusive-benefits__cta-bottom .page-promotions-vip-exclusive-benefits__section-title::after {
  background-color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__cta-bottom .page-promotions-vip-exclusive-benefits__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-promotions-vip-exclusive-benefits__btn--large {
  padding: 18px 40px;
  font-size: 1.25em;
}

/* FAQ Section */
.page-promotions-vip-exclusive-benefits__faq {
  background-color: #f9f9f9;
}

.page-promotions-vip-exclusive-benefits__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-promotions-vip-exclusive-benefits__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #eee;
}

.page-promotions-vip-exclusive-benefits__faq-question {
  font-size: 1.3em;
  color: #0047AB;
  padding: 20px 30px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f8ff; /* Light blue for questions */
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-vip-exclusive-benefits__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-vip-exclusive-benefits__faq-answer.active {
  max-height: 300px; /* Adjust as needed for content */
  padding: 20px 30px;
}

.page-promotions-vip-exclusive-benefits__faq-answer p {
  color: #555;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-vip-exclusive-benefits__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 2.2em;
  }

  .page-promotions-vip-exclusive-benefits__benefit-card {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-vip-exclusive-benefits__benefit-card--reverse {
    flex-direction: column;
  }

  .page-promotions-vip-exclusive-benefits__benefit-image {
    max-width: 100%;
    flex: none;
    margin-bottom: 20px;
  }

  .page-promotions-vip-exclusive-benefits__benefit-content ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 2.2em;
  }

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

  .page-promotions-vip-exclusive-benefits__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-vip-exclusive-benefits__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions-vip-exclusive-benefits__section {
    padding: 60px 0;
  }

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

  .page-promotions-vip-exclusive-benefits__section-description {
    font-size: 0.95em;
  }

  .page-promotions-vip-exclusive-benefits__features-grid,
  .page-promotions-vip-exclusive-benefits__level-details,
  .page-promotions-vip-exclusive-benefits__steps-grid,
  .page-promotions-vip-exclusive-benefits__security-list {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-exclusive-benefits__feature-item,
  .page-promotions-vip-exclusive-benefits__level-card,
  .page-promotions-vip-exclusive-benefits__step-item,
  .page-promotions-vip-exclusive-benefits__security-list li {
    padding: 25px;
  }

  .page-promotions-vip-exclusive-benefits__faq-question,
  .page-promotions-vip-exclusive-benefits__faq-answer {
    padding: 15px 20px;
  }
}