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

/* Custom properties from the palette */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Base styles for the page */
.page-promotions-vip-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color from custom palette */
  background-color: var(--background-color); /* Default background color from custom palette */
}

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

.page-promotions-vip-offers__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-promotions-vip-offers__light-bg {
  background-color: var(--card-bg-color); /* Card BG color as light background for contrast */
  color: var(--text-main-color);
}

/* Typography */
.page-promotions-vip-offers__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color);
  text-align: center;
}

.page-promotions-vip-offers__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-main-color);
  text-align: center;
}

.page-promotions-vip-offers__description,
.page-promotions-vip-offers__text-block,
.page-promotions-vip-offers p,
.page-promotions-vip-offers li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-secondary-color);
  text-align: center;
}

.page-promotions-vip-offers__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-promotions-vip-offers__card-title,
.page-promotions-vip-offers__step-title,
.page-promotions-vip-offers__promotion-title,
.page-promotions-vip-offers__service-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-promotions-vip-offers__card-text,
.page-promotions-vip-offers__promotion-description,
.page-promotions-vip-offers__service-description {
  font-size: 1em;
  color: var(--text-secondary-color);
  text-align: left;
}

/* Buttons */
.page-promotions-vip-offers__btn-primary,
.page-promotions-vip-offers__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-promotions-vip-offers__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-promotions-vip-offers__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions-vip-offers__btn-secondary {
  background-color: transparent;
  color: var(--text-main-color);
  border: 2px solid var(--border-color);
}

.page-promotions-vip-offers__btn-secondary:hover {
  background-color: var(--border-color);
  color: #ffffff;
}

.page-promotions-vip-offers__small-button {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 6px;
}

/* Hero Section */
.page-promotions-vip-offers__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-promotions-vip-offers__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 30px;
}

.page-promotions-vip-offers__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-offers__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-promotions-vip-offers__cta-button {
  margin-top: 30px;
}

/* Benefits Section */
.page-promotions-vip-offers__benefits-section {
  padding: 80px 0;
  background-color: var(--card-bg-color);
}

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

.page-promotions-vip-offers__card {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.page-promotions-vip-offers__card:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-offers__card-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

/* How to Join Section */
.page-promotions-vip-offers__how-to-join-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-promotions-vip-offers__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-vip-offers__steps-list li {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.page-promotions-vip-offers__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 10px;
  line-height: 1;
}

.page-promotions-vip-offers__step-title {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-promotions-vip-offers__steps-list li p {
    text-align: left;
    color: var(--text-secondary-color);
}

.page-promotions-vip-offers__steps-list li .page-promotions-vip-offers__btn-secondary {
    margin-top: 15px;
}

.page-promotions-vip-offers__cta-container {
  text-align: center;
  margin-top: 60px;
}

/* Exclusive Promotions Section */
.page-promotions-vip-offers__exclusive-promotions-section {
  padding: 80px 0;
  background-color: var(--card-bg-color);
}

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

.page-promotions-vip-offers__promotion-card {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.page-promotions-vip-offers__promotion-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-promotions-vip-offers__promotion-title {
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-promotions-vip-offers__promotion-description {
  flex-grow: 1;
  text-align: left;
  color: var(--text-secondary-color);
}

.page-promotions-vip-offers__promotion-card .page-promotions-vip-offers__btn-secondary {
    margin-top: 20px;
}

/* Dedicated Service Section */
.page-promotions-vip-offers__dedicated-service-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

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

.page-promotions-vip-offers__service-item {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.page-promotions-vip-offers__service-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-promotions-vip-offers__service-title {
  color: var(--text-main-color);
}

.page-promotions-vip-offers__service-description {
  color: var(--text-secondary-color);
  text-align: left;
}

/* FAQ Section */
.page-promotions-vip-offers__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg-color);
}

.page-promotions-vip-offers__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-vip-offers__faq-item {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main-color);
  font-size: 1.1em;
  background-color: var(--background-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions-vip-offers__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-vip-offers__faq-item[open] .page-promotions-vip-offers__faq-question {
  background-color: var(--deep-green-color);
}

.page-promotions-vip-offers__faq-qtext {
    text-align: left;
    flex-grow: 1;
}

.page-promotions-vip-offers__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-promotions-vip-offers__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary-color);
  font-size: 1em;
  line-height: 1.7;
  text-align: left;
}

.page-promotions-vip-offers__faq-answer p {
    text-align: left;
    color: var(--text-secondary-color);
}

/* Final CTA Section */
.page-promotions-vip-offers__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-vip-offers__hero-section {
    padding: 40px 20px;
  }
  .page-promotions-vip-offers__hero-content {
    max-width: 700px;
  }
  .page-promotions-vip-offers__benefits-grid,
  .page-promotions-vip-offers__promotions-grid,
  .page-promotions-vip-offers__service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-offers__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-promotions-vip-offers__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-promotions-vip-offers__description,
  .page-promotions-vip-offers__text-block,
  .page-promotions-vip-offers p,
  .page-promotions-vip-offers li {
    font-size: 1em;
  }
  .page-promotions-vip-offers__hero-section,
  .page-promotions-vip-offers__benefits-section,
  .page-promotions-vip-offers__how-to-join-section,
  .page-promotions-vip-offers__exclusive-promotions-section,
  .page-promotions-vip-offers__dedicated-service-section,
  .page-promotions-vip-offers__faq-section,
  .page-promotions-vip-offers__cta-final-section {
    padding: 40px 0;
  }
  .page-promotions-vip-offers__container {
    padding: 0 15px;
  }

  /* Image responsiveness for mobile */
  .page-promotions-vip-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-vip-offers__hero-image-wrapper,
  .page-promotions-vip-offers__card,
  .page-promotions-vip-offers__promotion-card,
  .page-promotions-vip-offers__service-item,
  .page-promotions-vip-offers__steps-list li {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* Button responsiveness for mobile */
  .page-promotions-vip-offers__btn-primary,
  .page-promotions-vip-offers__btn-secondary,
  .page-promotions-vip-offers a[class*="button"],
  .page-promotions-vip-offers a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-vip-offers__cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions-vip-offers__faq-question {
      padding: 15px 20px;
  }
  .page-promotions-vip-offers__faq-answer {
      padding: 0 20px 15px 20px;
  }

  .page-promotions-vip-offers__hero-section {
    padding-top: 10px !important;
  }
  .page-promotions-vip-offers__hero-image-wrapper {
    padding: 0 15px;
  }
  .page-promotions-vip-offers__hero-content {
    padding: 0 15px;
  }
  .page-promotions-vip-offers__steps-list li {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-offers__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-promotions-vip-offers__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }
  .page-promotions-vip-offers__btn-primary,
  .page-promotions-vip-offers__btn-secondary {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions-vip-offers__faq-question {
    font-size: 1em;
  }
  .page-promotions-vip-offers__faq-toggle {
    font-size: 1.2em;
  }
}