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

.page-index-featured-promotions {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for readability on dark background */
  background-color: #1A2B4C; /* Main dark blue background */
  line-height: 1.6;
}

.page-index-featured-promotions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-featured-promotions-hero {
  background: linear-gradient(135deg, #1A2B4C, #3A506B);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-index-featured-promotions-hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FF8C00; /* Orange for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-featured-promotions-hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-featured-promotions-hero-description {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-index-featured-promotions-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
}

.page-index-featured-promotions-btn-primary {
  background-color: #FF8C00; /* Orange */
  color: #1A2B4C; /* Dark blue text on orange */
  border: 2px solid #FF8C00;
}

.page-index-featured-promotions-btn-primary:hover {
  background-color: #e57e00;
  border-color: #e57e00;
  color: #FFFFFF;
}

.page-index-featured-promotions-btn-secondary {
  background-color: transparent;
  color: #FF8C00;
  border: 2px solid #FF8C00;
}

.page-index-featured-promotions-btn-secondary:hover {
  background-color: #FF8C00;
  color: #1A2B4C;
}

.page-index-featured-promotions-btn-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;
}

.page-index-featured-promotions-btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-index-featured-promotions-section {
  padding: 60px 0;
  background-color: #1A2B4C;
}

.page-index-featured-promotions-section:nth-of-type(even) {
  background-color: #2a3d5b;
}

.page-index-featured-promotions-section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #FF8C00;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-featured-promotions-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-index-featured-promotions-features-grid,
.page-index-featured-promotions-promo-cards-grid,
.page-index-featured-promotions-steps-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-featured-promotions-features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.page-index-featured-promotions-feature-item:hover {
  transform: translateY(-10px);
}

.page-index-featured-promotions-feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(70%) sepia(90%) saturate(1000%) hue-rotate(340deg) brightness(100%) contrast(100%); /* Orange tint */
}

.page-index-featured-promotions-feature-item h3 {
  font-size: 1.5em;
  color: #FF8C00;
  margin-bottom: 15px;
}

.page-index-featured-promotions-feature-item p {
  color: #E0E0E0;
}

.page-index-featured-promotions-text-center {
  text-align: center;
  font-size: 1.1em;
  margin-top: 20px;
  color: #E0E0E0;
}

.page-index-featured-promotions-promo-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.page-index-featured-promotions-promo-card:hover {
  transform: translateY(-10px);
}

.page-index-featured-promotions-promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-featured-promotions-promo-card h3 {
  font-size: 1.4em;
  color: #FF8C00;
  padding: 20px 25px 10px;
}

.page-index-featured-promotions-promo-card p {
  padding: 0 25px 20px;
  color: #E0E0E0;
  flex-grow: 1;
}

.page-index-featured-promotions-promo-card .page-index-featured-promotions-btn {
  margin: 0 25px 25px;
  align-self: flex-start;
}

.page-index-featured-promotions-steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-index-featured-promotions-step-item {
  background-color: #2a3d5b;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-index-featured-promotions-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF8C00;
  color: #1A2B4C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #1A2B4C;
  box-shadow: 0 0 0 5px #2a3d5b;
}

.page-index-featured-promotions-step-item h3 {
  font-size: 1.4em;
  color: #FF8C00;
  margin-bottom: 15px;
}

.page-index-featured-promotions-step-item p {
  color: #E0E0E0;
}

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

.page-index-featured-promotions-list li {
  background-color: #2a3d5b;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
}

.page-index-featured-promotions-list li::before {
  content: '✓';
  color: #FF8C00;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-index-featured-promotions-list li strong {
  color: #FF8C00;
}

.page-index-featured-promotions-responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-featured-promotions-faq-item {
  background-color: #2a3d5b;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-featured-promotions-faq-question {
  font-size: 1.3em;
  color: #FF8C00;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-featured-promotions-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  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 {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-featured-promotions-faq-answer.active {
  max-height: 500px; /* Adjust based on content */
  padding-top: 15px;
}

.page-index-featured-promotions-cta {
  background-color: #FF8C00; /* Orange background for strong CTA */
  padding: 80px 0;
  text-align: center;
  color: #1A2B4C; /* Dark blue text on orange */
}

.page-index-featured-promotions-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #1A2B4C;
}

.page-index-featured-promotions-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #1A2B4C;
}

.page-index-featured-promotions-cta-small-text {
  font-size: 0.9em;
  margin-top: 30px;
  color: #1A2B4C;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-featured-promotions-hero-title {
    font-size: 2.2em;
  }

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

  .page-index-featured-promotions-features-grid,
  .page-index-featured-promotions-promo-cards-grid,
  .page-index-featured-promotions-steps-grid {
    grid-template-columns: 1fr;
  }

  .page-index-featured-promotions-list li {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
  }

  .page-index-featured-promotions-list li::before {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .page-index-featured-promotions-hero {
    padding: 60px 0;
  }

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

  .page-index-featured-promotions-hero-subtitle,
  .page-index-featured-promotions-hero-description {
    font-size: 1em;
  }

  .page-index-featured-promotions-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-featured-promotions-section {
    padding: 40px 0;
  }

  .page-index-featured-promotions-section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-index-featured-promotions-feature-item,
  .page-index-featured-promotions-promo-card,
  .page-index-featured-promotions-step-item,
  .page-index-featured-promotions-faq-item {
    padding: 20px;
  }

  .page-index-featured-promotions-promo-card h3,
  .page-index-featured-promotions-step-item h3,
  .page-index-featured-promotions-faq-question {
    font-size: 1.2em;
  }

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

  .page-index-featured-promotions-cta-description {
    font-size: 1em;
  }
}