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

.page-promotions__hero {
  position: relative;
  background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 450px;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #E0E0E0; /* Lighter white for subtitle */
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #E0B700; /* Darker gold on hover */
  border-color: #E0B700;
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #0A2463; /* Dark blue text */
  border: 2px solid #0A2463;
}

.page-promotions__btn--secondary:hover {
  background-color: #0A2463; /* Dark blue background */
  color: #FFD700; /* Gold text */
}

.page-promotions__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section--intro {
  background-color: #f8f8f8;
}

.page-promotions__section--highlight {
  background-color: #0A2463;
  color: #E0E0E0;
}

.page-promotions__section--categories {
  background-color: #fff;
}

.page-promotions__section--claim-guide {
  background-color: #f8f8f8;
}

.page-promotions__section--vip-focus {
  background-color: #0A2463;
  color: #E0E0E0;
}

.page-promotions__section--terms {
  background-color: #fff;
}

.page-promotions__section--cta {
  background: linear-gradient(90deg, #0A2463, #1A3E8A);
  color: #fff;
  padding: 80px 0;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #0A2463; /* Dark blue for titles on light background */
  font-weight: bold;
}

.page-promotions__section--highlight .page-promotions__section-title,
.page-promotions__section--vip-focus .page-promotions__section-title,
.page-promotions__section--cta .page-promotions__section-title {
  color: #FFD700; /* Gold for titles on dark background */
}

.page-promotions__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-promotions__section--highlight .page-promotions__text-block,
.page-promotions__section--vip-focus .page-promotions__text-block,
.page-promotions__section--cta .page-promotions__text-block {
  color: #E0E0E0;
}

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

.page-promotions__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promotions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promo-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__card-list li {
  color: #555;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-promotions__card-list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promotions__step-item:hover {
  transform: translateY(-5px);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue */
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-description {
  font-size: 1em;
  color: #555;
}

.page-promotions__claim-image-wrapper {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__claim-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promotions__list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  transition: background-color 0.3s ease;
}

.page-promotions__list li:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__list li strong {
  color: #FFD700;
}

.page-promotions__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 15px;
    min-height: 350px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__sub-title {
    font-size: 1.5em;
  }
  .page-promotions__features-grid,
  .page-promotions__promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__feature-item,
  .page-promotions__promo-card,
  .page-promotions__step-item {
    padding: 20px;
  }
}