/* style/index-latest-promotions.css */
.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #2A2E43; /* Main dark background */
  line-height: 1.6;
}

.page-index-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-latest-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #B0B0B0; /* Slightly darker light grey for descriptions */
}

.page-index-latest-promotions .highlight {
  color: #FFD700;
}

.page-index-latest-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.05em;
  cursor: pointer;
  text-align: center;
}

.page-index-latest-promotions__btn--primary {
  background-color: #FFD700; /* Gold button background */
  color: #2A2E43; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-index-latest-promotions__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index-latest-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-index-latest-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #2A2E43;
}

.page-index-latest-promotions__btn--link {
  background-color: #3A3F57; /* Darker blue for secondary action buttons */
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  font-size: 0.95em;
}

.page-index-latest-promotions__btn--link:hover {
  background-color: #4A4F67;
  color: #FFEA80;
}

/* Hero Section */
.page-index-latest-promotions__hero {
  background: linear-gradient(135deg, #2A2E43, #3A3F57); /* Subtle gradient */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
  min-height: 500px;
}

.page-index-latest-promotions__hero-content {
  max-width: 600px;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-latest-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-index-latest-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-latest-promotions__hero-image-wrapper {
  max-width: 500px;
}

.page-index-latest-promotions__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-index-latest-promotions__introduction {
  padding: 60px 0;
  background-color: #2A2E43;
}

/* Promotions Grid */
.page-index-latest-promotions__promotions-grid {
  padding: 60px 0;
  background-color: #202438; /* Slightly lighter dark background */
}

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

.page-index-latest-promotions__promotion-card {
  background-color: #3A3F57; /* Card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-latest-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions__card-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* CTA Download Section */
.page-index-latest-promotions__cta-download {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 60px 0;
  color: #2A2E43; /* Dark text on gold */
}

.page-index-latest-promotions__cta-download-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-latest-promotions__cta-text {
  max-width: 600px;
  text-align: center;
}

.page-index-latest-promotions__cta-title {
  font-size: 2.8em;
  color: #2A2E43;
  margin-bottom: 20px;
}

.page-index-latest-promotions__cta-description {
  font-size: 1.1em;
  color: #4A4F67; /* Darker grey for description on gold */
  margin-bottom: 30px;
}

.page-index-latest-promotions__cta-download .page-index-latest-promotions__btn--primary {
  background-color: #2A2E43;
  color: #FFD700;
  border-color: #2A2E43;
}

.page-index-latest-promotions__cta-download .page-index-latest-promotions__btn--primary:hover {
  background-color: #4A4F67;
  border-color: #4A4F67;
  color: #FFD700;
}

.page-index-latest-promotions__cta-image-wrapper {
  max-width: 300px;
}

.page-index-latest-promotions__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section */
.page-index-latest-promotions__why-choose-us {
  padding: 80px 0;
  background-color: #2A2E43;
}

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

.page-index-latest-promotions__feature-item {
  background-color: #3A3F57;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-index-latest-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions__feature-description {
  font-size: 1em;
  color: #B0B0B0;
}

/* FAQ Section */
.page-index-latest-promotions__faq {
  padding: 80px 0;
  background-color: #202438;
}

.page-index-latest-promotions__faq-item {
  background-color: #3A3F57;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-latest-promotions__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 10px;
}

.page-index-latest-promotions__faq-answer.active {
  display: block;
}

/* Final CTA Section */
.page-index-latest-promotions__final-cta {
  padding: 80px 0;
  text-align: center;
  background-color: #2A2E43;
}

.page-index-latest-promotions__final-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-latest-promotions__final-cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero {
    flex-direction: column-reverse;
    padding: 60px 0;
  }

  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }

  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-latest-promotions__hero-content,
  .page-index-latest-promotions__hero-image-wrapper {
    max-width: 100%;
  }

  .page-index-latest-promotions__cta-download-inner {
    flex-direction: column;
  }

  .page-index-latest-promotions__cta-title {
    font-size: 2.2em;
  }

  .page-index-latest-promotions__cta-image-wrapper {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }

  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-index-latest-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-latest-promotions__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-index-latest-promotions__grid {
    grid-template-columns: 1fr;
  }

  .page-index-latest-promotions__final-cta-title {
    font-size: 2.5em;
  }

  .page-index-latest-promotions__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }

  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-index-latest-promotions__btn {
    width: 90%;
  }

  .page-index-latest-promotions__final-cta-title {
    font-size: 2em;
  }
}