/* style/promotions.css */

:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-promotions__text-block {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--text-light);
  text-align: justify;
}

.page-promotions__link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__link:hover {
  color: #ffda6a;
  text-decoration: underline;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-promotions__cta-button--primary:hover {
  background: #061a47;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-dark);
  border: 2px solid var(--secondary-color);
}

.page-promotions__cta-button--secondary:hover {
  background: #c79f04;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__cta-button--small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Hero Section --- */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4;
}

.page-promotions__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__main-title {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- General Section Styles --- */
.page-promotions__overview-section,
.page-promotions__promo-grid-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__final-cta-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.page-promotions__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions__dark-section .page-promotions__section-title {
  color: var(--secondary-color);
}

.page-promotions__dark-section .page-promotions__text-block {
  color: var(--text-light);
}

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

.page-promotions__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-promotions__promo-card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-promotions__promo-card-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

/* --- How to Claim Section --- */
.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 800px;
}

.page-promotions__steps-list li {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--text-light);
  position: relative;
  padding-left: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  color: var(--text-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.page-promotions__step-title {
  color: var(--secondary-color);
}

.page-promotions__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* --- Terms Section --- */
.page-promotions__terms-section {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-promotions__terms-section .page-promotions__section-title {
  color: var(--primary-color);
}

.page-promotions__terms-section .page-promotions__text-block {
  color: var(--text-dark);
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 40px;
  margin-top: 20px;
  color: var(--text-dark);
}

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

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  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: 18px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

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

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
  pointer-events: none;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 0 8px 8px;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 16px;
  color: var(--text-light);
  text-align: justify;
}

/* --- Final CTA Section --- */
.page-promotions__final-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-dark);
}

.page-promotions__final-cta-section .page-promotions__section-title {
  font-size: 42px;
  color: var(--secondary-color);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 40px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__hero-description {
    font-size: 18px;
  }
  .page-promotions__promo-card-title {
    font-size: 20px;
  }
  .page-promotions__promo-card-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 100px !important; /* Mobile padding-top for fixed header */
    padding-bottom: 60px;
    min-height: 400px;
  }
  .page-promotions__hero-container {
    padding: 20px;
  }
  .page-promotions__main-title {
    font-size: 32px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__overview-section,
  .page-promotions__promo-grid-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__final-cta-section {
    padding: 60px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: 28px;
  }
  .page-promotions__section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 15px;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__promo-card-image {
    height: 180px;
  }
  .page-promotions__promo-card-content {
    padding: 20px;
  }
  .page-promotions__promo-card-title {
    font-size: 18px;
  }
  .page-promotions__promo-card-description {
    font-size: 14px;
  }
  .page-promotions__steps-list {
    margin-top: 30px;
  }
  .page-promotions__steps-list li {
    font-size: 16px;
    padding: 15px 20px 15px 50px;
  }
  .page-promotions__steps-list li::before {
    width: 26px;
    height: 26px;
    font-size: 14px;
    left: 15px;
  }
  .page-promotions__faq-list {
    margin-top: 30px;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }
  .page-promotions__faq-answer p {
    font-size: 14px;
  }
  .page-promotions__final-cta-section .page-promotions__section-title {
    font-size: 32px;
  }
  /* Image responsive enforcement */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 28px;
  }
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__hero-description {
    font-size: 15px;
  }
  .page-promotions__cta-button {
    padding: 10px 15px !important;
    font-size: 15px !important;
  }
  .page-promotions__promo-card-title {
    font-size: 17px;
  }
  .page-promotions__promo-card-description {
    font-size: 13px;
  }
  .page-promotions__steps-list li {
    font-size: 15px;
    padding-left: 45px;
  }
  .page-promotions__steps-list li::before {
    left: 10px;
  }
  .page-promotions__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
    width: 24px;
    height: 24px;
  }
  .page-promotions__final-cta-section .page-promotions__section-title {
    font-size: 28px;
  }
}