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

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

.page-index-exclusive-promotions__hero {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-exclusive-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* Ensure high contrast */
}

.page-index-exclusive-promotions__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.9;
  color: #f0f8ff; /* Lighter text for contrast */
}

.page-index-exclusive-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

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

.page-index-exclusive-promotions__button--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-index-exclusive-promotions__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-index-exclusive-promotions__button--secondary {
  background-color: transparent;
  color: #FFCC00; /* Accent color */
  border: 2px solid #FFCC00;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.page-index-exclusive-promotions__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366; /* Dark text for contrast */
  transform: translateY(-2px);
}

.page-index-exclusive-promotions__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-exclusive-promotions__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show partial image or full */
  right: -100px;
  width: 500px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  transform: rotate(15deg);
  display: none; /* Hide on smaller screens */
}

@media (min-width: 768px) {
  .page-index-exclusive-promotions__hero-image-wrapper {
    display: block;
  }
}

.page-index-exclusive-promotions__hero-image {
  width: 100%;
  height: auto;
  filter: grayscale(100%) brightness(50%);
}

.page-index-exclusive-promotions__section {
  padding: 60px 0;
}

.page-index-exclusive-promotions__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

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

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

.page-index-exclusive-promotions__section--intro p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
  color: #444;
}

.page-index-exclusive-promotions__promo-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-exclusive-promotions__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-exclusive-promotions__promo-content {
  padding: 30px;
}

.page-index-exclusive-promotions__promo-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-exclusive-promotions__promo-content p {
  margin-bottom: 10px;
  color: #555;
}

.page-index-exclusive-promotions__promo-content h4 {
  font-size: 1.3em;
  color: #003366;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-index-exclusive-promotions__promo-content ul,
.page-index-exclusive-promotions__promo-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555;
}

.page-index-exclusive-promotions__promo-content ul li,
.page-index-exclusive-promotions__promo-content ol li {
  margin-bottom: 8px;
}

.page-index-exclusive-promotions__promo-content .page-index-exclusive-promotions__button {
  margin-top: 20px;
}

.page-index-exclusive-promotions__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-index-exclusive-promotions__promo-card {
    flex-direction: row;
  }

  .page-index-exclusive-promotions__promo-card--reversed {
    flex-direction: row-reverse;
  }

  .page-index-exclusive-promotions__promo-image {
    width: 40%;
    height: auto;
    border-bottom: none;
  }

  .page-index-exclusive-promotions__promo-card--reversed .page-index-exclusive-promotions__promo-image {
    border-left: 1px solid #eee;
  }

  .page-index-exclusive-promotions__promo-card .page-index-exclusive-promotions__promo-image {
    border-right: 1px solid #eee;
  }

  .page-index-exclusive-promotions__promo-content {
    width: 60%;
  }

  .page-index-exclusive-promotions__grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.page-index-exclusive-promotions__guide-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-index-exclusive-promotions__guide-item h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-index-exclusive-promotions__guide-item p {
  color: #555;
}

.page-index-exclusive-promotions__section--about .page-index-exclusive-promotions__about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-index-exclusive-promotions__about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-exclusive-promotions__section--about ul {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-index-exclusive-promotions__section--about ul li {
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .page-index-exclusive-promotions__section--about .page-index-exclusive-promotions__about-content {
    flex-direction: row;
    text-align: left;
  }

  .page-index-exclusive-promotions__section--about .page-index-exclusive-promotions__about-image {
    width: 45%;
    margin-right: 5%;
  }
}

.page-index-exclusive-promotions__section--faq {
  background-color: #e6f0f8; /* Lighter blue background for FAQ */
  position: relative;
  overflow: hidden;
}

.page-index-exclusive-promotions__faq-list {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-index-exclusive-promotions__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-index-exclusive-promotions__faq-question {
  font-size: 1.2em;
  color: #003366;
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin: 0;
}

.page-index-exclusive-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

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

.page-index-exclusive-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-exclusive-promotions__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 25px;
}

.page-index-exclusive-promotions__faq-answer p {
  color: #555;
  margin-bottom: 0;
}

.page-index-exclusive-promotions__faq-image {
  width: 300px;
  height: auto;
  position: absolute;
  bottom: -50px;
  left: -50px;
  opacity: 0.1;
  transform: rotate(-20deg);
  z-index: 0;
  display: none;
}

@media (min-width: 768px) {
  .page-index-exclusive-promotions__faq-image {
    display: block;
  }
}

.page-index-exclusive-promotions__section--cta {
  background-color: #003366; /* Main color */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-index-exclusive-promotions__section--cta .page-index-exclusive-promotions__section-title {
  color: #FFCC00; /* Accent color for title */
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__section--cta .page-index-exclusive-promotions__section-title::after {
  background-color: #ffffff;
}

.page-index-exclusive-promotions__section--cta p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f8ff;
}

.page-index-exclusive-promotions__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 600px) {
  .page-index-exclusive-promotions__cta-actions {
    flex-direction: row;
  }
}

.page-index-exclusive-promotions .highlight {
  color: #FFCC00;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-exclusive-promotions__hero-title {
    font-size: 3em;
  }
  .page-index-exclusive-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-promotions__hero {
    padding: 60px 0;
  }
  .page-index-exclusive-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-exclusive-promotions__hero-actions {
    flex-direction: column;
  }
  .page-index-exclusive-promotions__section {
    padding: 40px 0;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-promotions__promo-content {
    padding: 20px;
  }
  .page-index-exclusive-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-promotions__guide-item {
    padding: 20px;
  }
  .page-index-exclusive-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-index-exclusive-promotions__faq-answer.active {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotions__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-promotions__promo-title {
    font-size: 1.3em;
  }
  .page-index-exclusive-promotions__guide-icon {
    width: 50px;
    height: 50px;
  }
  .page-index-exclusive-promotions__guide-item h3 {
    font-size: 1.2em;
  }
}