/* style/promotions.css */
.page-promotions {
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #000000; /* Ensure consistency with shared.css body background */
}

.page-promotions__hero-section {
  position: relative;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bb5);
  color: #ffffff;
}

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

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-promotions__btn-primary:hover {
  background-color: #d16b05;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-promotions__video-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  text-align: center;
  color: #ffffff;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #26A9E0;
  text-align: center;
}

.page-promotions__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for video */
  margin: 0 auto 30px auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
}

.page-promotions__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  border-radius: 10px;
}

.page-promotions__video-caption {
  font-size: 1.1em;
  opacity: 0.8;
}

.page-promotions__content-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for content */
  color: #ffffff;
}

.page-promotions__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-promotions__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__text-block a:hover {
  color: #3cb4f0;
}

.page-promotions__sub-title {
  font-size: 2em;
  color: #26A9E0;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__card-content {
  padding: 25px;
}

.page-promotions__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promotions__card-text a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__card-text a:hover {
  color: #3cb4f0;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
}

.page-promotions__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-item strong {
  color: #26A9E0;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-promotions__list-item p {
  margin: 0;
  color: #f0f0f0;
}

.page-promotions__list-item a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__list-item a:hover {
  color: #3cb4f0;
}

.page-promotions__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease;
  color: #26A9E0;
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #ffffff;
}

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

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

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px 25px 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-promotions__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__faq-answer a:hover {
  color: #3cb4f0;
}

.page-promotions__cta-final {
  background-color: #26A9E0;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  color: #ffffff;
}

.page-promotions__cta-final-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-promotions__cta-final-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions__cta-final-text a {
  color: #ffffff;
  text-decoration: underline;
}

.page-promotions__cta-final-text a:hover {
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }

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

  .page-promotions__sub-title {
    font-size: 1.8em;
  }

  .page-promotions__card-title {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile specific header offset */
  }

  .page-promotions__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-promotions__video-section {
    padding: 50px 15px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto 20px auto;
    padding: 0 15px;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__content-section {
    padding: 50px 0;
  }

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

  .page-promotions__text-block {
    font-size: 0.95em;
  }

  .page-promotions__sub-title {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: 200px;
  }

  .page-promotions__card-content {
    padding: 20px;
  }

  .page-promotions__card-title {
    font-size: 1.1em;
  }

  .page-promotions__card-text {
    font-size: 0.9em;
  }

  .page-promotions__list-item {
    padding: 15px 20px;
  }

  .page-promotions__list-item strong {
    font-size: 1.1em;
  }

  .page-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions__faq-toggle {
    font-size: 1.2em;
  }

  .page-promotions__faq-answer {
    padding: 0 20px;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  .page-promotions__cta-final {
    padding: 40px 15px;
  }

  .page-promotions__cta-final-title {
    font-size: 1.8em;
  }

  .page-promotions__cta-final-text {
    font-size: 1em;
  }

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

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px;
    padding-right: 15px; */
  }

  .page-promotions__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile video section respects header offset */
  }

  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Ensure images don't use filters */
.page-promotions img {
  filter: none; /* Explicitly disable any filters */
}