/* style/index-latest-promotions.css */
.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-index-latest-promotions__hero {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

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

.page-index-latest-promotions__hero-description a {
  color: #FFFF00; /* Vàng sáng để nổi bật */
  text-decoration: underline;
}

.page-index-latest-promotions__hero-button {
  display: inline-block;
  background-color: #FFFF00; /* Vàng sáng làm điểm nhấn */
  color: #FF4500;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__hero-button:hover {
  background-color: #FFD700; /* Màu vàng đậm hơn khi hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
}

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

.page-index-latest-promotions__promotions-overview, .page-index-latest-promotions__how-to-claim, .page-index-latest-promotions__why-choose, .page-index-latest-promotions__faq, .page-index-latest-promotions__cta {
  padding: 60px 0;
}

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

.page-index-latest-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FF4500;
}

.page-index-latest-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions__promo-card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-index-latest-promotions__promo-card-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-index-latest-promotions__promo-card-text a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-index-latest-promotions__promo-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.page-index-latest-promotions__promo-features li {
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF4500"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #444;
}

.page-index-latest-promotions__promo-card-button {
  display: inline-block;
  background-color: #FF4500;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__promo-card-button:hover {
  background-color: #E63900;
}

.page-index-latest-promotions__how-to-claim {
  background-color: #eef7ff;
}

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

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

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

.page-index-latest-promotions__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

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

.page-index-latest-promotions__step-text {
  font-size: 0.95em;
  color: #666;
}

.page-index-latest-promotions__step-text a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-index-latest-promotions__main-cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FF4500;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__main-cta-button:hover {
  background-color: #E63900;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__why-choose {
  background-color: #ffffff;
}

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

.page-index-latest-promotions__benefit-item {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-bottom: 4px solid #1E90FF;
}

.page-index-latest-promotions__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.page-index-latest-promotions__benefit-title {
  font-size: 1.6em;
  color: #FF4500;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-latest-promotions__benefit-text {
  font-size: 0.95em;
  color: #666;
}

.page-index-latest-promotions__benefit-text a {
  color: #FF4500;
  text-decoration: underline;
}

.page-index-latest-promotions__faq {
  background-color: #f8f9fa;
}

.page-index-latest-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__faq-question {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.page-index-latest-promotions__faq-question a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-index-latest-promotions__faq-answer {
  font-size: 1em;
  color: #555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-index-latest-promotions__faq-answer a {
  color: #FF4500;
  text-decoration: underline;
}

.page-index-latest-promotions__cta {
  background: linear-gradient(135deg, #1E90FF, #FF4500);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-index-latest-promotions__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #ffffff;
}

.page-index-latest-promotions__cta-description a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FFFF00;
  color: #FF4500;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__cta-button:hover {
  background-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__promo-card-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__cta-button {
    font-size: 1.2em;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero {
    padding: 80px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__promo-grid,
  .page-index-latest-promotions__steps-grid,
  .page-index-latest-promotions__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__cta-button {
    font-size: 1em;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero {
    padding: 60px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.6em;
  }
  .page-index-latest-promotions__promo-card, .page-index-latest-promotions__step-item, .page-index-latest-promotions__benefit-item, .page-index-latest-promotions__faq-item {
    padding: 20px;
  }
  .page-index-latest-promotions__promo-card-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__step-title, .page-index-latest-promotions__benefit-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 1.6em;
  }
  .page-index-latest-promotions__cta-button {
    font-size: 0.9em;
    padding: 10px 25px;
  }
}