/* style/promotions.css */

/* Custom Colors */
:root {
  --page-promotions-bg: #08160F;
  --page-promotions-card-bg: #11271B;
  --page-promotions-text-main: #F2FFF6;
  --page-promotions-text-secondary: #A7D9B8;
  --page-promotions-border: #2E7A4E;
  --page-promotions-glow: #57E38D;
  --page-promotions-gold: #F2C14E;
  --page-promotions-divider: #1E3A2A;
  --page-promotions-deep-green: #0A4B2C;
  --page-promotions-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-promotions {
  background-color: var(--page-promotions-bg);
  color: var(--page-promotions-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--page-promotions-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-promotions-text-secondary);
  text-align: justify;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  background-color: var(--page-promotions-deep-green);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content up slightly over image bottom */
  background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--page-promotions-border);
}

.page-promotions__main-title {
  color: var(--page-promotions-gold);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-promotions__intro-text {
  font-size: 1.2em;
  color: var(--page-promotions-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--page-promotions-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 60px 0;
  background-color: var(--page-promotions-bg);
  border-bottom: 1px solid var(--page-promotions-divider);
}

/* Promotion Types Section */
.page-promotions__promo-types-section {
  padding: 60px 0;
  background-color: var(--page-promotions-bg);
}

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

.page-promotions__promo-card {
  background-color: var(--page-promotions-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-promotions-border);
  display: flex;
  flex-direction: column;
}

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

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

.page-promotions__card-title {
  font-size: 1.5em;
  color: var(--page-promotions-gold);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1em;
  color: var(--page-promotions-text-secondary);
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: var(--page-promotions-button-gradient);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
}

/* How To Claim Section */
.page-promotions__how-to-claim-section {
  padding: 60px 0;
  background-color: var(--page-promotions-deep-green);
  border-top: 1px solid var(--page-promotions-divider);
  border-bottom: 1px solid var(--page-promotions-divider);
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__step-item {
  background-color: var(--page-promotions-card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-promotions-border);
}

.page-promotions__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--page-promotions-gold);
  color: var(--page-promotions-bg);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.3em;
  color: var(--page-promotions-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-description {
  font-size: 0.95em;
  color: var(--page-promotions-text-secondary);
  margin-bottom: 20px;
}

.page-promotions__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--page-promotions-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.9em;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__step-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions__note-text {
  text-align: center;
  font-style: italic;
  color: var(--page-promotions-text-secondary);
  margin-top: 40px;
  font-size: 0.9em;
}

/* Terms Section */
.page-promotions__terms-section {
  padding: 60px 0;
  background-color: var(--page-promotions-bg);
  border-bottom: 1px solid var(--page-promotions-divider);
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 25px;
  color: var(--page-promotions-text-secondary);
  font-size: 1.05em;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-promotions__terms-list strong {
  color: var(--page-promotions-text-main);
}

.page-promotions__terms-list a {
  color: var(--page-promotions-gold);
  text-decoration: underline;
}

.page-promotions__terms-list a:hover {
  color: var(--page-promotions-glow);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
  padding: 60px 0;
  background-color: var(--page-promotions-deep-green);
  text-align: center;
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-promotions__benefits-list li {
  background-color: var(--page-promotions-card-bg);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color: var(--page-promotions-text-main);
  border-left: 5px solid var(--page-promotions-gold);
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__benefits-list li strong {
  color: var(--page-promotions-gold);
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--page-promotions-bg);
  border-top: 1px solid var(--page-promotions-divider);
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: var(--page-promotions-card-bg);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--page-promotions-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-promotions-text-main);
  cursor: pointer;
  background-color: var(--page-promotions-deep-green);
  border-bottom: 1px solid var(--page-promotions-divider);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-promotions__faq-question:hover {
  background-color: var(--page-promotions-deep-green);
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  color: var(--page-promotions-text-main);
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--page-promotions-gold);
}

.page-promotions__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: var(--page-promotions-text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--page-promotions-divider);
  background-color: var(--page-promotions-card-bg);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-promotions__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    border-radius: 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-promotions__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
  }
  .page-promotions__cta-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 1em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promo-card {
    border-radius: 10px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__card-description {
    font-size: 0.95em;
  }
  .page-promotions__card-button {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
  }
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__step-item {
    padding: 25px;
    border-radius: 10px;
  }
  .page-promotions__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .page-promotions__step-title {
    font-size: 1.2em;
  }
  .page-promotions__step-description {
    font-size: 0.9em;
  }
  .page-promotions__step-button {
    padding: 8px 15px;
    font-size: 0.85em;
    width: 100% !important;
  }
  .page-promotions__terms-list {
    font-size: 0.95em;
    margin-left: 20px;
  }
  .page-promotions__benefits-list li {
    font-size: 1em;
    padding: 15px;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions__faq-answer {
    padding: 15px;
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-image {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-promotions__card-image {
    max-width: 100% !important;
    height: auto !important;
  }

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

  /* Mobile button responsiveness */
  .page-promotions__cta-button,
  .page-promotions__card-button,
  .page-promotions__step-button,
  .page-promotions a[class*="button"],
  .page-promotions 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__hero-content .page-promotions__cta-button {
    margin-left: 0;
    margin-right: 0;
  }
  .page-promotions__card-button {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Videos are not present on this page, but including for completeness if they were */
  .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; /* body handles --header-offset, this is decorative */
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }
  .page-promotions__intro-text {
    font-size: 0.9em;
  }
  .page-promotions__cta-button {
    font-size: 0.9em;
  }
  .page-promotions__card-title {
    font-size: 1.1em;
  }
  .page-promotions__card-description {
    font-size: 0.85em;
  }
  .page-promotions__step-title {
    font-size: 1.1em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
}