/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: var(--background-color, #FFFFFF);
}

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

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

.page-promotions__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-promotions__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions__dark-section .page-promotions__section-title,
.page-promotions__dark-section .page-promotions__section-description {
  color: #ffffff;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly, but not over image */
  background-color: rgba(38, 169, 224, 0.9); /* Semi-transparent background for readability */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.page-promotions__lead-text {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

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

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

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

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-promotions__btn-centered {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Titles & Descriptions */
.page-promotions__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__introduction p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
  text-align: left;
}

.page-promotions__introduction p strong {
  color: #26A9E0;
}

/* Promotion Types Grid */
.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin: 20px 20px 10px 20px;
}

.page-promotions__card p {
  padding: 0 20px;
  margin-bottom: 15px;
  color: #555555;
  flex-grow: 1;
}

.page-promotions__card ul {
  list-style: none;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-promotions__card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #555555;
}

.page-promotions__card ul li::before {
  content: '✔';
  color: #EA7C07; /* Orange checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__card .page-promotions__btn-primary {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

/* How To Claim Section */
.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.page-promotions__step-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #26A9E0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__step-icon img {
  
  
  object-fit: contain;
  filter: brightness(0) invert(1); /* Ensure icons are white on blue background */
}

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

.page-promotions__step-card p {
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__step-card .page-promotions__btn-secondary {
  width: 100%;
  padding: 12px 20px;
  font-size: 1em;
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 20px auto;
}

.page-promotions__terms-conditions ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #555555;
}

.page-promotions__terms-conditions ul li::before {
  content: '•';
  color: #EA7C07;
  position: absolute;
  left: 0;
  font-size: 1.5em;
  line-height: 1;
}

.page-promotions__terms-conditions ul li strong {
  color: #26A9E0;
}

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

.page-promotions__terms-conditions a:hover {
  color: #EA7C07;
}

/* FAQ Section */
.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid #ddd;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question::marker {
  display: none;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  pointer-events: none; /* Allow click on summary, not just text */
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #EA7C07;
  margin-left: 15px;
  pointer-events: none; /* Allow click on summary, not just text */
}

.page-promotions__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

.page-promotions__faq-answer p {
  margin-bottom: 10px;
  color: #555555;
}

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

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

/* CTA Bottom Section */
.page-promotions__cta-bottom {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.page-promotions__cta-bottom .page-promotions__section-title {
  color: #EA7C07;
}

.page-promotions__cta-bottom .page-promotions__section-description {
  color: #333333;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: 2.5em;
  }

  .page-promotions__lead-text {
    font-size: 1.1em;
  }

  .page-promotions__grid,
  .page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

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

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

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

  .page-promotions__section {
    padding: 40px 0;
  }

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

  .page-promotions__light-bg {
    padding: 25px;
  }

  .page-promotions__hero-section {
    min-height: 400px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }

  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-promotions__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-promotions__lead-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-promotions__btn-primary,
  .page-promotions__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__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions__grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-promotions__card .page-promotions__btn-primary {
    width: calc(100% - 40px) !important;
  }

  .page-promotions__step-card .page-promotions__btn-secondary {
    width: 100% !important;
  }

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

  .page-promotions__faq-answer {
    padding: 15px;
  }

  /* Ensure all images are responsive on mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__hero-content,
  .page-promotions__cta-buttons,
  .page-promotions__grid,
  .page-promotions__steps-grid,
  .page-promotions__step-card,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .page-promotions__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__cta-bottom .page-promotions__cta-buttons {
    padding-left: 0;
    padding-right: 0;
  }
}