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

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

.page-index-featured-promotions__hero-section {
  background: linear-gradient(135deg, #003366 0%, #003366 60%, #FFCC00 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-featured-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-featured-promotions__hero-section .page-index-featured-promotions__container {
  position: relative;
  z-index: 1;
}

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

.page-index-featured-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-featured-promotions__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark Blue */
  padding: 15px 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-featured-promotions__cta-button:hover {
  background-color: #e6b800; /* Darker gold */
  transform: translateY(-3px);
}

.page-index-featured-promotions__cta-button--secondary {
  background-color: #004488;
  color: #fff;
}

.page-index-featured-promotions__cta-button--secondary:hover {
  background-color: #002244;
}

.page-index-featured-promotions__content-section {
  padding: 60px 0;
}

.page-index-featured-promotions__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-index-featured-promotions__paragraph {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

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

.page-index-featured-promotions__offer-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-featured-promotions__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-index-featured-promotions__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-featured-promotions__card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-featured-promotions__card-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 25px;
}

.page-index-featured-promotions__card-button {
  display: inline-block;
  background-color: #003366; /* Dark Blue */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-index-featured-promotions__card-button:hover {
  background-color: #004488;
}

.page-index-featured-promotions__step-list {
  list-style-type: none;
  padding: 0;
  margin: 40px auto 60px auto;
  max-width: 800px;
  counter-reset: step-counter;
}

.page-index-featured-promotions__step-list li {
  background-color: #fff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-index-featured-promotions__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark Blue */
  font-weight: bold;
  font-size: 1.3em;
  width: 40px;
  height: 40px;
  min-width: 40px; /* Ensure it doesn't shrink */
  min-height: 40px; /* Ensure it doesn't shrink */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-featured-promotions__bullet-list {
  list-style-type: none;
  padding: 0;
  margin: 40px auto 60px auto;
  max-width: 900px;
}

.page-index-featured-promotions__bullet-list li {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: #444;
}

.page-index-featured-promotions__bullet-list li strong {
  color: #003366;
}

.page-index-featured-promotions__faq-container {
  max-width: 900px;
  margin: 40px auto 60px auto;
}

.page-index-featured-promotions__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-featured-promotions__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-index-featured-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-index-featured-promotions__faq-answer {
  padding: 0 25px;
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-featured-promotions__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-index-featured-promotions__final-cta {
  text-align: center;
  padding: 60px 0;
  background-color: #003366;
  color: #fff;
  border-radius: 10px;
  margin-top: 60px;
}

.page-index-featured-promotions__final-cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

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

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

  .page-index-featured-promotions__hero-description,
  .page-index-featured-promotions__paragraph,
  .page-index-featured-promotions__final-cta-description {
    font-size: 1em;
  }

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

  .page-index-featured-promotions__offer-grid {
    grid-template-columns: 1fr;
  }

  .page-index-featured-promotions__step-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-index-featured-promotions__step-list li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

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

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

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

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

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

  .page-index-featured-promotions__card-title {
    font-size: 1.4em;
  }

  .page-index-featured-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-index-featured-promotions__faq-question::after {
    right: 20px;
  }

  .page-index-featured-promotions__faq-answer.open {
    padding: 15px 20px;
  }
}