/* style/promotions-vip-exclusive-benefits.css */

/* Base Styles & Typography */
.page-promotions-vip-exclusive-benefits {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #000 from shared.css */
}

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

.page-promotions-vip-exclusive-benefits__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-promotions-vip-exclusive-benefits__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__card-text {
  color: #333333; /* For light background cards */
}

/* Hero Section */
.page-promotions-vip-exclusive-benefits__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 60px 20px;
  overflow: hidden;
  color: #ffffff;
  background-color: #000000; /* Ensure dark background for hero */
}

.page-promotions-vip-exclusive-benefits__hero-section .page-promotions-vip-exclusive-benefits__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-promotions-vip-exclusive-benefits__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* Ensure white text on dark hero */
  line-height: 1.2;
}

.page-promotions-vip-exclusive-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

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

/* Buttons */
.page-promotions-vip-exclusive-benefits__btn-primary,
.page-promotions-vip-exclusive-benefits__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-exclusive-benefits__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions-vip-exclusive-benefits__btn-primary:hover {
  background-color: #1a7fb7;
  border-color: #1a7fb7;
}

.page-promotions-vip-exclusive-benefits__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions-vip-exclusive-benefits__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* Benefits Overview */
.page-promotions-vip-exclusive-benefits__benefits-overview {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

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

.page-promotions-vip-exclusive-benefits__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for light card background */
}

.page-promotions-vip-exclusive-benefits__benefit-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

/* Tiered System */
.page-promotions-vip-exclusive-benefits__tiered-system {
  padding: 80px 0;
  background-color: #000000; /* Dark background */
  color: #ffffff;
}

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

.page-promotions-vip-exclusive-benefits__tier-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for light card background */
}

.page-promotions-vip-exclusive-benefits__tier-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-promotions-vip-exclusive-benefits__tier-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333333;
}

.page-promotions-vip-exclusive-benefits__tier-benefits li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Exclusive Promotions */
.page-promotions-vip-exclusive-benefits__exclusive-promotions {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

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

.page-promotions-vip-exclusive-benefits__promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for light card background */
}

.page-promotions-vip-exclusive-benefits__promo-image {
  width: 100%;
  max-width: 600px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Personalized Services */
.page-promotions-vip-exclusive-benefits__personalized-services {
  padding: 80px 0;
  background-color: #000000; /* Dark background */
  color: #ffffff;
}

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

.page-promotions-vip-exclusive-benefits__service-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for light card background */
}

/* How to Become VIP */
.page-promotions-vip-exclusive-benefits__how-to-vip {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

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

.page-promotions-vip-exclusive-benefits__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for light card background */
}

.page-promotions-vip-exclusive-benefits__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* FAQ Section */
.page-promotions-vip-exclusive-benefits__faq-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background */
  color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-vip-exclusive-benefits__faq-item {
  background-color: #0d0d0d; /* Darker card for FAQ */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #26A9E0; /* Primary color for question */
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-question:hover {
  background-color: #1a7fb7;
}

.page-promotions-vip-exclusive-benefits__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-item.active .page-promotions-vip-exclusive-benefits__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-vip-exclusive-benefits__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-promotions-vip-exclusive-benefits__faq-item.active .page-promotions-vip-exclusive-benefits__faq-answer {
  max-height: 1000px !important; /* Ensure content fits */
  padding: 15px 25px;
}

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

/* Final Call to Action */
.page-promotions-vip-exclusive-benefits__cta-final {
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0; /* Primary brand color for final CTA */
  color: #ffffff;
}

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

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


/* Color Contrast Specifics for Dark Body Background */
.page-promotions-vip-exclusive-benefits__dark-bg {
  color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__light-bg {
  color: #333333;
  background-color: #ffffff;
}

.page-promotions-vip-exclusive-benefits p,
.page-promotions-vip-exclusive-benefits li {
  color: #f0f0f0; /* Default text color for dark body */
}

.page-promotions-vip-exclusive-benefits__hero-description,
.page-promotions-vip-exclusive-benefits__section-description {
  color: #f0f0f0;
}

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

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-benefits__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }

  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-promotions-vip-exclusive-benefits__btn-primary,
  .page-promotions-vip-exclusive-benefits__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-vip-exclusive-benefits__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions-vip-exclusive-benefits__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions-vip-exclusive-benefits__benefits-overview,
  .page-promotions-vip-exclusive-benefits__tiered-system,
  .page-promotions-vip-exclusive-benefits__exclusive-promotions,
  .page-promotions-vip-exclusive-benefits__personalized-services,
  .page-promotions-vip-exclusive-benefits__how-to-vip,
  .page-promotions-vip-exclusive-benefits__faq-section,
  .page-promotions-vip-exclusive-benefits__cta-final {
    padding: 50px 0;
  }

  .page-promotions-vip-exclusive-benefits__benefits-grid,
  .page-promotions-vip-exclusive-benefits__tiers-grid,
  .page-promotions-vip-exclusive-benefits__promo-grid,
  .page-promotions-vip-exclusive-benefits__service-grid,
  .page-promotions-vip-exclusive-benefits__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-vip-exclusive-benefits__benefit-card,
  .page-promotions-vip-exclusive-benefits__tier-card,
  .page-promotions-vip-exclusive-benefits__promo-card,
  .page-promotions-vip-exclusive-benefits__service-item,
  .page-promotions-vip-exclusive-benefits__step-card {
    padding: 20px;
  }

  .page-promotions-vip-exclusive-benefits__benefit-icon,
  .page-promotions-vip-exclusive-benefits__promo-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }

  .page-promotions-vip-exclusive-benefits__cta-bottom {
    margin-top: 40px;
  }

  .page-promotions-vip-exclusive-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-vip-exclusive-benefits__section,
  .page-promotions-vip-exclusive-benefits__card,
  .page-promotions-vip-exclusive-benefits__container,
  .page-promotions-vip-exclusive-benefits__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-vip-exclusive-benefits__faq-item,
  .page-promotions-vip-exclusive-benefits__faq-question,
  .page-promotions-vip-exclusive-benefits__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}