/* style/index-latest-promotions-express.css */
.page-index-latest-promotions-express {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0d1a26; /* Slightly lighter dark blue for main background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-index-latest-promotions-express__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #0d1a26 100%); /* Dark blue gradient */
  color: #FFD700; /* Gold for main title */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions-express__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
}

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

.page-index-latest-promotions-express__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #E0E0E0; /* Light grey for subtitle */
}

.page-index-latest-promotions-express__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.page-index-latest-promotions-express__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-index-latest-promotions-express__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E44; /* Dark blue */
}

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

.page-index-latest-promotions-express__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700; /* Gold border */
}

.page-index-latest-promotions-express__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-index-latest-promotions-express__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-latest-promotions-express__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* General Content Sections */
.page-index-latest-promotions-express__content-section {
  padding: 60px 0;
  background-color: #1A2E44; /* Main dark blue for content sections */
  color: #E0E0E0; /* Light grey for text */
}

.page-index-latest-promotions-express__content-section:nth-of-type(even) {
  background-color: #0d1a26; /* Alternate dark blue for variety */
}

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

.page-index-latest-promotions-express__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

/* Why WW88 Grid */
.page-index-latest-promotions-express__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-index-latest-promotions-express__grid-item {
  background-color: #2a4058; /* Slightly lighter dark blue for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-index-latest-promotions-express__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-latest-promotions-express__item-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for item titles */
  margin-bottom: 15px;
}

.page-index-latest-promotions-express__item-description {
  color: #C0C0C0;
}

.page-index-latest-promotions-express__full-width-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Promotion Cards */
.page-index-latest-promotions-express__promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-latest-promotions-express__promo-card {
  background-color: #2a4058;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions-express__promo-card:hover {
  transform: translateY(-5px);
}

.page-index-latest-promotions-express__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-latest-promotions-express__promo-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 25px 20px 15px;
}

.page-index-latest-promotions-express__promo-card-text {
  padding: 0 20px 25px;
  color: #C0C0C0;
  flex-grow: 1;
}

.page-index-latest-promotions-express__promo-card .page-index-latest-promotions-express__btn {
  margin: 0 20px 25px;
  align-self: center;
  width: calc(100% - 40px);
}

/* How to Claim Steps */
.page-index-latest-promotions-express__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-promotions-express__step-item {
  background-color: #2a4058;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions-express__step-number {
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.2);
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 0;
}

.page-index-latest-promotions-express__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions-express__step-description {
  color: #C0C0C0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* FAQ Section */
.page-index-latest-promotions-express__faq-item {
  background-color: #2a4058;
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.page-index-latest-promotions-express__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions-express__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-latest-promotions-express__faq-answer {
  font-size: 1.1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-index-latest-promotions-express__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  padding-top: 10px;
}

/* Final CTA */
.page-index-latest-promotions-express__cta-final {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #1A2E44; /* Dark blue for text on gold background */
}

.page-index-latest-promotions-express__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A2E44;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions-express__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions-express__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions-express__promo-card-title {
    font-size: 1.4em;
  }
  .page-index-latest-promotions-express__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions-express__hero-section {
    padding: 80px 0 40px;
  }
  .page-index-latest-promotions-express__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions-express__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions-express__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-promotions-express__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-latest-promotions-express__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-express__grid, .page-index-latest-promotions-express__promo-card-grid, .page-index-latest-promotions-express__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions-express__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions-express__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-express__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions-express__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-latest-promotions-express__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions-express__promo-card-title {
    font-size: 1.2em;
  }
  .page-index-latest-promotions-express__cta-title {
    font-size: 1.8em;
  }
}