/* style/promo.css */
.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Page background color */
}

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

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-promo__hero-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.page-promo__hero-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-promo__hero-slide.active {
  opacity: 1;
  position: relative; /* Ensure active slide is on top */
  z-index: 1;
}

.page-promo__hero-slide.prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(-100%); /* Slide out to the left */
  z-index: 0;
}

.page-promo__hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure hero image is not too small */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 2; /* Ensure content is above image */
}

.page-promo__main-title,
.page-promo__secondary-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-promo__hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.page-promo__hero-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promo__hero-dot.active {
  background-color: #FFD36B;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo__btn-primary,
.page-promo__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
}

.page-promo__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-promo__btn-secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-promo__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promo__promotions-overview {
  background-color: #0A0A0A;
  padding: 60px 0;
}

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

.page-promo__promo-card {
  background-color: #111111; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
}

.page-promo__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-promo__card-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin: 15px 15px 10px 15px;
  min-height: 70px; /* Ensure consistent card title height */
}

.page-promo__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #FFF6D6;
}

.page-promo__card-text {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 15px;
  margin-bottom: 20px;
  min-height: 100px; /* Ensure consistent card text height */
}

.page-promo__promo-card .page-promo__btn-primary {
  margin-top: auto; /* Push button to bottom */
}

.page-promo__how-to-claim {
  background-color: #0A0A0A;
  padding: 60px 0;
}

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

.page-promo__step-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promo__step-title {
  font-size: 1.3em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-promo__step-text {
  font-size: 0.95em;
  color: #FFF6D6;
}

.page-promo__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-promo__terms-conditions {
  background-color: #0A0A0A;
  padding: 60px 0;
}

.page-promo__info-block {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}

.page-promo__info-subtitle {
  font-size: 1.4em;
  color: #FFD36B;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-promo__info-subtitle:first-of-type {
  margin-top: 0;
}

.page-promo__text-content {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-promo__expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promo__expandable-content.collapsed {
  max-height: 0 !important;
}

.page-promo__expandable-content.expanded {
  max-height: 2000px !important; /* Sufficiently large to show all content */
}

.page-promo__load-less-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
  cursor: pointer;
  border: 2px solid #FFD36B;
  background: #111111;
  color: #FFD36B;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.page-promo__load-less-btn:hover {
  background: #FFD36B;
  color: #111111;
}

.page-promo__load-less-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-promo__load-less-btn.expanded .page-promo__load-less-icon {
  transform: rotate(180deg);
}

.page-promo__faq-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #1a1a1a;
}

.page-promo__faq-title {
  font-size: 1.2em;
  color: #FFD36B;
  margin: 0;
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
}

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #1a1a1a;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-promo__faq-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-promo__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__cta-section .page-promo__container {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 50px 20px;
}

.page-promo__cta-section .page-promo__section-title {
  padding-top: 0;
  margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promo__hero-content {
    padding: 20px;
    width: 95%;
  }

  .page-promo__main-title,
  .page-promo__secondary-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__btn-primary,
  .page-promo__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__section-description {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card,
  .page-promo__step-item,
  .page-promo__info-block,
  .page-promo__faq-item,
  .page-promo__cta-section .page-promo__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promo__promo-card img {
    
  }

  .page-promo__card-title {
    min-height: auto;
  }

  .page-promo__card-text {
    min-height: auto;
  }

  .page-promo__load-less-btn {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__faq-question,
  .page-promo__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure all content area images are at least 200px */
.page-promo__promo-card img,
.page-promo__step-icon {
  min-width: 200px;
  min-height: 200px;
}

.page-promo__step-icon {
  min-width: 64px; /* Exception for icons */
  min-height: 64px;
}

/* Specific override for hero image to respect display size */
.page-promo__hero-slide img {
  width: 100%;
  height: auto;
  min-height: 400px;
}

/* Ensure images within containers are responsive */
.page-promo__container img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Contrast fixes for brand colors if needed, as per instructions */
.page-promo__dark-bg {
  background: #F2C14E; /* Using brand color */
  color: #ffffff; /* Ensuring white text for contrast */
}

.page-promo__dark-bg .page-promo__section-title,
.page-promo__dark-bg .page-promo__section-description {
  color: #ffffff;
}