/* style/promotions.css */

/* Base styles for page-promotions */
.page-promotions {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

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

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

.page-promotions__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  line-height: 1.2;
}

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

.page-promotions__center-text {
  text-align: center;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles padding-top, use small decorative padding here */
  overflow: hidden;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim image for text readability */
}

.page-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.page-promotions__hero-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-promotions__btn-primary:hover {
  background-color: #ff9933;
  border-color: #ff9933;
}

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

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions__btn-link {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
  padding: 10px 20px;
  font-size: 16px;
}

.page-promotions__btn-link:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

/* Intro Section */
.page-promotions__intro-section .page-promotions__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Grid */
.page-promotions__promotions-grid {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 80px 0;
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: #000000;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 0 5px rgba(38, 169, 224, 0.3);
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-promotions__step-description a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: 600;
}

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

/* Terms & Conditions */
.page-promotions__terms-conditions {
  background-color: rgba(255, 255, 255, 0.03);
}

.page-promotions__terms-list {
  list-style: disc;
  text-align: left;
  max-width: 900px;
  margin: 30px auto;
  padding-left: 40px;
  color: #e0e0e0;
}

.page-promotions__terms-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.page-promotions__terms-conditions .page-promotions__text-block a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: 600;
}

.page-promotions__terms-conditions .page-promotions__text-block a:hover {
  text-decoration: underline;
}

/* Why Us Section */
.page-promotions__why-us {
  background-color: #000000;
}

.page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: rgba(255, 255, 255, 0.03);
}

.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.08);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  background-color: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details tag */
}

.page-promotions__faq-question:hover {
  background-color: #1a8cc4;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg); /* Rotate + to X when open */
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-promotions__faq-answer a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: 600;
}

.page-promotions__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-promotions__cta-final {
  padding: 80px 0;
  background-color: #26A9E0;
}

.page-promotions__cta-final .page-promotions__section-title {
  color: #FFFFFF;
  margin-bottom: 25px;
}

.page-promotions__cta-final .page-promotions__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions__cta-final .page-promotions__cta-buttons .page-promotions__btn-primary {
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-promotions__cta-final .page-promotions__cta-buttons .page-promotions__btn-primary:hover {
  background-color: #ff9933;
  border-color: #ff9933;
}

.page-promotions__cta-final .page-promotions__cta-buttons .page-promotions__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border-color: #FFFFFF;
}

.page-promotions__cta-final .page-promotions__cta-buttons .page-promotions__btn-secondary:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: clamp(30px, 4vw, 50px);
  }
  .page-promotions__hero-description {
    font-size: 16px;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__section-title {
    font-size: clamp(26px, 3.8vw, 40px);
  }
  .page-promotions__steps-grid, .page-promotions__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-promotions__hero-content {
    padding: 15px;
  }
  .page-promotions__hero-title {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-promotions__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 15px;
    padding: 0 15px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__container,
  .page-promotions__grid,
  .page-promotions__steps-grid,
  .page-promotions__features-grid,
  .page-promotions__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Image responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-image-wrapper,
  .page-promotions__promotion-card,
  .page-promotions__step-item,
  .page-promotions__feature-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__promotion-card {
    height: auto;
  }
  .page-promotions__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }

  /* Video responsive - not used on this page, but included for completeness if video were added */
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  .page-promotions__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    font-size: 14px;
    padding: 15px 20px;
  }
  .page-promotions__terms-list {
    padding-left: 25px;
  }
  .page-promotions__text-block, .page-promotions__terms-list li {
    font-size: 15px;
  }
  .page-promotions__cta-final .page-promotions__cta-buttons {
    flex-direction: column;
  }
}