/* style/latest-promotions-vip-exclusive-offers.css */

/* Variables */
:root {
  --page-latest-promotions-vip-exclusive-offers-primary-color: #007bff;
  --page-latest-promotions-vip-exclusive-offers-secondary-color: #ffc107;
  --page-latest-promotions-vip-exclusive-offers-text-dark: #333;
  --page-latest-promotions-vip-exclusive-offers-text-light: #fff;
  --page-latest-promotions-vip-exclusive-offers-bg-light: #f8f9fa;
  --page-latest-promotions-vip-exclusive-offers-bg-dark: #212529;
  --page-latest-promotions-vip-exclusive-offers-border-color: #dee2e6;
}

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

.page-latest-promotions-vip-exclusive-offers__section {
  padding: 60px 0;
  text-align: center;
}

.page-latest-promotions-vip-exclusive-offers__section:nth-of-type(even) {
  background-color: var(--page-latest-promotions-vip-exclusive-offers-bg-light);
}

.page-latest-promotions-vip-exclusive-offers__section-title {
  font-size: 2.5em;
  color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-latest-promotions-vip-exclusive-offers__section-description {
  font-size: 1.1em;
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-latest-promotions-vip-exclusive-offers__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-latest-promotions-vip-exclusive-offers__btn--primary {
  background-color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  color: var(--page-latest-promotions-vip-exclusive-offers-text-light);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-latest-promotions-vip-exclusive-offers__btn--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-latest-promotions-vip-exclusive-offers__btn--secondary {
  background-color: var(--page-latest-promotions-vip-exclusive-offers-secondary-color);
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-latest-promotions-vip-exclusive-offers__btn--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-latest-promotions-vip-exclusive-offers__center-text {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-latest-promotions-vip-exclusive-offers__hero {
  position: relative;
  background: linear-gradient(135deg, var(--page-latest-promotions-vip-exclusive-offers-primary-color) 0%, #004d99 100%);
  color: var(--page-latest-promotions-vip-exclusive-offers-text-light);
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

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

.page-latest-promotions-vip-exclusive-offers__hero .page-latest-promotions-vip-exclusive-offers__container {
  position: relative;
  z-index: 1;
}

.page-latest-promotions-vip-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-latest-promotions-vip-exclusive-offers__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.page-latest-promotions-vip-exclusive-offers__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-latest-promotions-vip-exclusive-offers__benefit-item {
  background-color: var(--page-latest-promotions-vip-exclusive-offers-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-latest-promotions-vip-exclusive-offers__benefit-item:hover {
  transform: translateY(-5px);
}

.page-latest-promotions-vip-exclusive-offers__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-latest-promotions-vip-exclusive-offers__benefit-title {
  font-size: 1.5em;
  color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  margin-bottom: 10px;
}

.page-latest-promotions-vip-exclusive-offers__benefit-text {
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
  line-height: 1.6;
}

/* Tier System Section */
.page-latest-promotions-vip-exclusive-offers__tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-latest-promotions-vip-exclusive-offers__tier-card {
  background-color: var(--page-latest-promotions-vip-exclusive-offers-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--page-latest-promotions-vip-exclusive-offers-primary-color);
}

.page-latest-promotions-vip-exclusive-offers__tier-card:nth-child(2) {
  border-top-color: #a7a7a7; /* Silver */
}
.page-latest-promotions-vip-exclusive-offers__tier-card:nth-child(3) {
  border-top-color: var(--page-latest-promotions-vip-exclusive-offers-secondary-color); /* Gold */
}
.page-latest-promotions-vip-exclusive-offers__tier-card:nth-child(4) {
  border-top-color: #e0e0e0; /* Platinum */
}

.page-latest-promotions-vip-exclusive-offers__tier-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-latest-promotions-vip-exclusive-offers__tier-name {
  font-size: 1.8em;
  color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  margin-bottom: 10px;
}

.page-latest-promotions-vip-exclusive-offers__tier-desc {
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-latest-promotions-vip-exclusive-offers__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
}

.page-latest-promotions-vip-exclusive-offers__tier-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-latest-promotions-vip-exclusive-offers__tier-features li::before {
  content: '✓';
  color: var(--page-latest-promotions-vip-exclusive-offers-secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-latest-promotions-vip-exclusive-offers__tier-note {
  margin-top: 40px;
  font-style: italic;
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
}

/* How to Join Section */
.page-latest-promotions-vip-exclusive-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-latest-promotions-vip-exclusive-offers__step-item {
  background-color: var(--page-latest-promotions-vip-exclusive-offers-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: left;
}

.page-latest-promotions-vip-exclusive-offers__step-number {
  width: 50px;
  height: 50px;
  background-color: var(--page-latest-promotions-vip-exclusive-offers-secondary-color);
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(255, 193, 7, 0.4);
}

.page-latest-promotions-vip-exclusive-offers__step-title {
  font-size: 1.4em;
  color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  margin-bottom: 10px;
}

.page-latest-promotions-vip-exclusive-offers__step-text {
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
  line-height: 1.6;
}

.page-latest-promotions-vip-exclusive-offers__step-text a {
  color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-latest-promotions-vip-exclusive-offers__step-text a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-latest-promotions-vip-exclusive-offers__faq {
  text-align: left;
}

.page-latest-promotions-vip-exclusive-offers__faq-item {
  background-color: var(--page-latest-promotions-vip-exclusive-offers-text-light);
  border: 1px solid var(--page-latest-promotions-vip-exclusive-offers-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

.page-latest-promotions-vip-exclusive-offers__faq-question {
  font-size: 1.3em;
  color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
}

.page-latest-promotions-vip-exclusive-offers__faq-answer {
  color: var(--page-latest-promotions-vip-exclusive-offers-text-dark);
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
}

.page-latest-promotions-vip-exclusive-offers__faq-answer a {
  color: var(--page-latest-promotions-vip-exclusive-offers-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-latest-promotions-vip-exclusive-offers__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Bottom Section */
.page-latest-promotions-vip-exclusive-offers__cta-bottom {
  position: relative;
  background: linear-gradient(45deg, #0056b3 0%, var(--page-latest-promotions-vip-exclusive-offers-primary-color) 100%);
  color: var(--page-latest-promotions-vip-exclusive-offers-text-light);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

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

.page-latest-promotions-vip-exclusive-offers__cta-bottom .page-latest-promotions-vip-exclusive-offers__container {
  position: relative;
  z-index: 1;
}

.page-latest-promotions-vip-exclusive-offers__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-latest-promotions-vip-exclusive-offers__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

  .page-latest-promotions-vip-exclusive-offers__hero-subtitle {
    font-size: 1.2em;
  }

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

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

@media (max-width: 768px) {
  .page-latest-promotions-vip-exclusive-offers__hero {
    padding: 80px 0;
  }

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

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

  .page-latest-promotions-vip-exclusive-offers__section {
    padding: 40px 0;
  }

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

  .page-latest-promotions-vip-exclusive-offers__section-description {
    font-size: 1em;
  }

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

  .page-latest-promotions-vip-exclusive-offers__cta-description {
    font-size: 1em;
  }

  .page-latest-promotions-vip-exclusive-offers__benefits-grid,
  .page-latest-promotions-vip-exclusive-offers__tier-cards,
  .page-latest-promotions-vip-exclusive-offers__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-latest-promotions-vip-exclusive-offers__benefit-item,
  .page-latest-promotions-vip-exclusive-offers__tier-card,
  .page-latest-promotions-vip-exclusive-offers__step-item,
  .page-latest-promotions-vip-exclusive-offers__faq-item {
    padding: 20px;
  }

  .page-latest-promotions-vip-exclusive-offers__btn {
    padding: 10px 25px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-latest-promotions-vip-exclusive-offers__hero-title {
    font-size: 1.8em;
  }
  .page-latest-promotions-vip-exclusive-offers__hero-subtitle {
    font-size: 0.9em;
  }
  .page-latest-promotions-vip-exclusive-offers__section-title {
    font-size: 1.5em;
  }
  .page-latest-promotions-vip-exclusive-offers__cta-title {
    font-size: 1.6em;
  }
}