/* style/index-latest-promotions.css */

.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #f0e5d4; /* Light text on dark background */
  background-color: #0F1A2B;
  line-height: 1.6;
}

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

.page-index-latest-promotions__hero-section {
  background: linear-gradient(135deg, #0F1A2B 0%, #302b63 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-index-latest-promotions__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0F1A2B;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-latest-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-index-latest-promotions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0F1A2B;
  transform: translateY(-3px);
}

.page-index-latest-promotions__cta-button--primary {
  background-color: #FFD700;
  color: #0F1A2B;
}

.page-index-latest-promotions__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-index-latest-promotions__cta-button--final {
  background-color: #FF0000; /* Deep red for final CTA */
  color: #ffffff;
  padding: 20px 45px;
  font-size: 1.5em;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

.page-index-latest-promotions__cta-button--final:hover {
  background-color: #cc0000;
  transform: translateY(-5px);
}

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

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 40px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  font-weight: bold;
}

.page-index-latest-promotions__section-paragraph {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-index-latest-promotions__why-choose-us {
  padding: 80px 0;
  background-color: #1a2a40; /* Slightly lighter dark background */
}

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

.page-index-latest-promotions__feature-item {
  background-color: #0F1A2B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-latest-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

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

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

.page-index-latest-promotions__promotions-grid {
  padding: 80px 0;
  background-color: #0F1A2B;
}

.page-index-latest-promotions__promo-category {
  margin-bottom: 60px;
}

.page-index-latest-promotions__category-title {
  font-size: 2em;
  color: #FFD700;
  text-align: center;
  margin: 50px 0 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 15px;
  display: inline-block;
  width: auto;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__category-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-index-latest-promotions__promo-card {
  display: flex;
  background-color: #1a2a40;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__promo-card:hover {
  transform: translateY(-10px);
}

.page-index-latest-promotions__promo-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-index-latest-promotions__promo-content {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-index-latest-promotions__promo-name {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions__promo-details {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-index-latest-promotions__promo-list {
  list-style: disc inside;
  color: #e0e0e0;
  margin-bottom: 25px;
  padding-left: 20px;
}

.page-index-latest-promotions__promo-list li {
  margin-bottom: 8px;
}

.page-index-latest-promotions__how-to-claim {
  padding: 80px 0;
  background-color: #1a2a40;
}

.page-index-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 40px auto;
}

.page-index-latest-promotions__steps-list li {
  background-color: #0F1A2B;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
}

.page-index-latest-promotions__steps-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0F1A2B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

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

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

.page-index-latest-promotions__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions__step-description a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions__guide-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__terms-conditions {
  padding: 80px 0;
  background-color: #0F1A2B;
}

.page-index-latest-promotions__terms-list {
  list-style: outside;
  padding-left: 40px;
  max-width: 900px;
  margin: 40px auto;
  color: #e0e0e0;
}

.page-index-latest-promotions__terms-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-index-latest-promotions__faq-section {
  padding: 80px 0;
  background-color: #1a2a40;
}

.page-index-latest-promotions__faq-item {
  background-color: #0F1A2B;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 25px 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__faq-question {
  font-size: 1.4em;
  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: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-index-latest-promotions__faq-question.active::after {
  content: '-';
}

.page-index-latest-promotions__faq-answer {
  font-size: 1em;
  color: #c0c0c0;
  margin-top: 15px;
  display: none;
}

.page-index-latest-promotions__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions__faq-answer a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions__faq-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__final-cta {
  padding: 100px 0;
  background: linear-gradient(45deg, #0F1A2B, #330000);
  text-align: center;
}

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

.page-index-latest-promotions__final-cta .page-index-latest-promotions__section-paragraph {
  font-size: 1.2em;
  margin-bottom: 50px;
  color: #f0e5d4;
}

.page-index-latest-promotions__final-cta-image {
  max-width: 90%;
  height: auto;
  margin-top: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.5em;
  }

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

  .page-index-latest-promotions__promo-card {
    flex-direction: column;
  }

  .page-index-latest-promotions__promo-image,
  .page-index-latest-promotions__promo-content {
    width: 100%;
  }

  .page-index-latest-promotions__promo-image {
    height: 250px;
  }

  .page-index-latest-promotions__steps-list li {
    padding-left: 30px;
  }

  .page-index-latest-promotions__steps-list li::before {
    left: 10px;
    width: 30px;
    height: 30px;
    font-size: 0.9em;
  }
}

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

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

  .page-index-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-index-latest-promotions__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-index-latest-promotions__feature-title {
    font-size: 1.4em;
  }

  .page-index-latest-promotions__category-title {
    font-size: 1.6em;
  }

  .page-index-latest-promotions__promo-name {
    font-size: 1.5em;
  }

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

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

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

  .page-index-latest-promotions__hero-description {
    font-size: 1em;
  }

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

  .page-index-latest-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-index-latest-promotions__hero-section,
  .page-index-latest-promotions__why-choose-us,
  .page-index-latest-promotions__promotions-grid,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__terms-conditions,
  .page-index-latest-promotions__faq-section,
  .page-index-latest-promotions__final-cta {
    padding: 50px 0;
  }

  .page-index-latest-promotions__promo-content {
    padding: 20px;
  }

  .page-index-latest-promotions__steps-list li {
    padding: 20px;
    padding-left: 60px;
  }

  .page-index-latest-promotions__steps-list li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }

  .page-index-latest-promotions__step-title {
    font-size: 1.2em;
  }

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

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