/* style/promotions.css */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-promotions {
  color: var(--color-text-main); /* Main text color for dark background */
  background-color: var(--color-background);
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 40px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-promotions__subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--color-button-gradient);
  color: var(--color-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--color-border);
  color: var(--color-text-main);
  transform: translateY(-3px);
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
}

.page-promotions__intro-section {
  background-color: var(--color-background);
}

.page-promotions__dark-section {
  background-color: var(--color-deep-green);
  color: var(--color-text-main);
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.page-promotions__how-to-claim .page-promotions__section-title {
  color: var(--color-gold);
}

.page-promotions__image-text-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-promotions__image-text-block .page-promotions__image-block {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.page-promotions__image-text-block .page-promotions__text-block {
  flex: 1;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__list-item {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-promotions__list-item::before {
  content: '✓';
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__list-item strong {
  color: var(--color-text-main);
}

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

.page-promotions__card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-promotions__card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 25px auto;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card .page-promotions__btn-primary {
  width: auto;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 1rem;
}

.page-promotions__terms-conditions .page-promotions__paragraph a {
  color: var(--color-primary);
  text-decoration: underline;
}

.page-promotions__terms-conditions .page-promotions__paragraph a:hover {
  color: var(--color-gold);
}

.page-promotions__why-choose .page-promotions__section-title {
  color: var(--color-gold);
}

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

.page-promotions__features-grid .page-promotions__card {
  padding: 25px;
}

.page-promotions__cta-buttons--center {
  margin-top: 50px;
}

.page-promotions__faq-section {
  background-color: var(--color-deep-green);
}

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

.page-promotions__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-divider);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: var(--color-card-bg);
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid var(--color-divider);
}

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-primary);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  background-color: var(--color-card-bg);
}

.page-promotions__call-to-action .page-promotions__container {
  background-color: var(--color-deep-green);
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
}

.page-promotions__call-to-action .page-promotions__section-title {
  color: var(--color-gold);
  margin-bottom: 25px;
}

.page-promotions__call-to-action .page-promotions__paragraph {
  margin-bottom: 40px;
  color: var(--color-text-secondary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
  }
  .page-promotions__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .page-promotions__section {
    padding: 60px 15px;
  }
  .page-promotions__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__image-text-block .page-promotions__image-block {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .page-promotions__promotions-grid,
  .page-promotions__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image,
  .page-promotions__card-icon {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100%;
    max-width: 400px; /* Limit width for stacked buttons */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__image-text-block .page-promotions__image-block {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__card-image,
  .page-promotions__card-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Mobile content overflow prevention */
  .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__image-text-block .page-promotions__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-promotions__hero-section,
  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .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__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 15px 20px;
  }
  .page-promotions__call-to-action .page-promotions__container {
    padding: 40px 20px;
  }
}