/* style/promotions.css */

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

.page-promotions {
  background-color: var(--page-promotions-bg-color);
  color: var(--page-promotions-text-secondary);
  font-family: 'Arial', sans-serif;
}

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

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

.page-promotions__dark-bg {
  background-color: var(--page-promotions-bg-color);
  color: var(--page-promotions-text-secondary);
}

.page-promotions__light-bg {
  background-color: #11271B; /* Using card BG for contrast with dark overall BG */
  color: var(--page-promotions-text-main);
}

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--page-promotions-text-main);
  line-height: 1.2;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  min-height: 600px;
  overflow: hidden;
}

.page-promotions__hero-image {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
  max-height: 700px; /* Limit height for hero image */
}

.page-promotions__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  background: linear-gradient(0deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 0.4) 50%, rgba(8, 22, 15, 0.8) 100%);
}

.page-promotions__main-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: var(--page-promotions-text-main);
  margin-bottom: 20px;
  line-height: 1.1;
  max-width: 900px;
  text-shadow: 0 0 15px rgba(34, 199, 104, 0.5);
}

.page-promotions__hero-description {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--page-promotions-text-secondary);
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: var(--page-promotions-btn-gradient);
  color: var(--page-promotions-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--page-promotions-glow-color);
  border: 2px solid var(--page-promotions-glow-color);
  box-shadow: 0 2px 10px rgba(87, 227, 141, 0.3);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--page-promotions-glow-color);
  color: var(--page-promotions-bg-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.5);
}

.page-promotions__text-main {
  color: var(--page-promotions-text-main);
}

.page-promotions__text-secondary {
  color: var(--page-promotions-text-secondary);
}

.page-promotions__inline-link {
  color: var(--page-promotions-glow-color);
  text-decoration: none;
  font-weight: 600;
}

.page-promotions__inline-link:hover {
  text-decoration: underline;
}

.page-promotions__introduction p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__introduction .page-promotions__cta-button {
  margin-top: 30px;
}

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

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

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px 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;
  justify-content: space-between;
}

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

.page-promotions__card-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions__how-to-claim ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__step-item {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: var(--page-promotions-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--page-promotions-glow-color);
}

.page-promotions__step-item::before {
  content: counter(step-counter);
  font-size: 36px;
  font-weight: 900;
  color: var(--page-promotions-glow-color);
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__step-description {
  font-size: 16px;
  line-height: 1.6;
}

.page-promotions__terms-overview ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__terms-item {
  background-color: var(--page-promotions-card-bg);
  padding: 18px 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.6;
  border-left: 4px solid var(--page-promotions-deep-green);
}

.page-promotions__terms-overview p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__why-choose ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-promotions__benefit-item {
  background-color: var(--page-promotions-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--page-promotions-border-color);
}

.page-promotions__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__benefit-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--page-promotions-text-secondary);
}

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

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

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--page-promotions-text-main);
}

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

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

.page-promotions__faq-toggle {
  font-size: 28px;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-promotions-glow-color);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--page-promotions-text-secondary);
}

.page-promotions__final-cta {
  text-align: center;
}

.page-promotions__final-cta p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(28px, 4.5vw, 50px);
  }

  .page-promotions__hero-description {
    font-size: clamp(15px, 1.8vw, 20px);
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__cards-grid,
  .page-promotions__why-choose ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    min-height: 450px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-image {
    max-height: 450px;
  }

  .page-promotions__hero-content {
    padding: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(24px, 6vw, 40px);
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: clamp(14px, 2.5vw, 18px);
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions__section {
    padding: 30px 0;
  }

  .page-promotions__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .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-section,
  .page-promotions__promotion-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__promotion-card {
    padding: 0;
  }

  .page-promotions__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: 200px;
  }

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__card-description {
    font-size: 15px;
  }

  .page-promotions__how-to-claim ol {
    margin-top: 20px;
  }

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .page-promotions__step-item::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promotions__step-title {
    font-size: 20px;
  }

  .page-promotions__step-description {
    font-size: 15px;
  }

  .page-promotions__terms-item {
    font-size: 15px;
    padding: 15px 20px;
  }

  .page-promotions__why-choose ul {
    grid-template-columns: 1fr;
  }

  .page-promotions__benefit-item {
    padding: 25px;
  }

  .page-promotions__benefit-title {
    font-size: 20px;
  }

  .page-promotions__faq-item summary {
    padding: 15px 20px;
    font-size: 18px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }

  .page-promotions__final-cta p {
    font-size: 16px;
  }

  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(22px, 8vw, 36px);
  }

  .page-promotions__hero-description {
    font-size: clamp(13px, 3vw, 16px);
  }

  .page-promotions__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
}