/* style/promotions.css */
.page-promotions {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: -150px; /* Adjust to slightly overlap the image bottom for visual flow */
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card B G with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions__main-title {
  color: var(--text-main-color, #F2FFF6);
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

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

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--text-main-color, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-promotions__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with transparency */
  transform: translateY(-2px);
}

.page-promotions__btn-large {
  padding: 16px 32px;
  font-size: 1.2em;
}

.page-promotions__section {
  padding: 60px 20px;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

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

.page-promotions__section-title {
  color: var(--text-main-color, #F2FFF6);
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-promotions__card {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--text-main-color, #F2FFF6);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color, #2E7A4E);
}

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

.page-promotions__card-title {
  color: var(--text-main-color, #F2FFF6);
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions__card-text {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 0.95em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-promotions__card-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  margin-top: auto; /* Push to bottom */
}

.page-promotions__card-list li {
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__card-list li::before {
  content: '✓';
  color: var(--main-color, #11A84E);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

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

.page-promotions__step-item {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-promotions__step-title {
  color: var(--gold-color, #F2C14E);
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.page-promotions__step-text {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1em;
  text-align: justify;
  margin-bottom: 25px;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--divider-color, #1E3A2A);
  overflow: hidden;
  color: var(--text-main-color, #F2FFF6);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--deep-green-color, #0A4B2C);
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--glow-color, #57E38D);
}

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

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: justify;
}

.page-promotions__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-image {
    max-height: 50vh;
  }
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 15px;
  }
  .page-promotions__main-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 0.95em;
  }
  .page-promotions__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image,
  .page-promotions__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__card,
  .page-promotions__step-item,
  .page-promotions__faq-item {
    padding: 20px;
  }
  .page-promotions__card-title,
  .page-promotions__step-title {
    font-size: 1.3em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__hero-image-wrapper,
  .page-promotions__hero-content,
  .page-promotions__cta-buttons,
  .page-promotions__grid-layout,
  .page-promotions__steps-grid,
  .page-promotions__step-item,
  .page-promotions__faq-list,
  .page-promotions__faq-item,
  .page-promotions__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-promotions__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.7em;
  }
  .page-promotions__hero-content {
    margin-top: -60px;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__btn-large {
    font-size: 1.1em;
    padding: 14px 25px;
  }
}