/* style/index-latest-promotions.css */
.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light gray for text on dark background */
  background-color: #1A202C; /* 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__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4e 100%); /* Dark gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #CBD5E0; /* Lighter gray for subtitle */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-index-latest-promotions__section {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-index-latest-promotions__section:nth-of-type(even) {
  background-color: #2D3748; /* Slightly lighter dark for alternating sections */
}

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

.page-index-latest-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-index-latest-promotions__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E2E8F0;
}

.page-index-latest-promotions__promotions-list {
  padding-top: 20px;
}

.page-index-latest-promotions__promo-card {
  background-color: #2D3748; /* Dark gray for cards */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-promotions__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-latest-promotions__promo-description {
  color: #CBD5E0;
  margin-bottom: 20px;
}

.page-index-latest-promotions__promo-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
  max-width: 500px;
}

.page-index-latest-promotions__promo-card ul li {
  background-color: #3B4557;
  margin-bottom: 8px;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #E2E8F0;
}

.page-index-latest-promotions__promo-card ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
}

.page-index-latest-promotions__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-latest-promotions__btn:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-index-latest-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-index-latest-promotions__btn--large {
  padding: 18px 50px;
  font-size: 1.3em;
}

.page-index-latest-promotions__guide-list {
  list-style: none;
  padding: 0;
}

.page-index-latest-promotions__guide-list li {
  background-color: #2D3748;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-latest-promotions__guide-list p {
  color: #CBD5E0;
  margin-bottom: 15px;
}

.page-index-latest-promotions__tips ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-latest-promotions__tips ul li {
  background-color: #2D3748;
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #E2E8F0;
  font-size: 1.1em;
}

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

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

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

.page-index-latest-promotions__why-choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__why-choose-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-latest-promotions__why-choose-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-latest-promotions__why-choose-item p {
  color: #CBD5E0;
}

.page-index-latest-promotions__cta-final {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__promo-image {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero {
    padding: 60px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__section {
    padding: 40px 0;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__promo-card {
    padding: 20px;
  }
  .page-index-latest-promotions__btn {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__btn--primary {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-index-latest-promotions__why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__promo-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__btn--primary {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__btn--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}