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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  animation: page-promotions__bubble-animation 15s infinite ease-in-out;
}

.page-promotions__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 204, 0, 0.15);
  border-radius: 50%;
  animation: page-promotions__bubble-animation 12s infinite reverse ease-in-out;
}

@keyframes page-promotions__bubble-animation {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(20px, 20px) scale(1.1); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

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

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Auxiliary color for emphasis */
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text */
  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: 2px solid #FFCC00;
}

.page-promotions__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-promotions__cta-button--secondary {
  background-color: #003366; /* Main color */
  color: #FFCC00; /* Auxiliary color for text */
  border: 2px solid #FFCC00;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #004d99;
  color: #fff;
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

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

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

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-promotions__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.page-promotions__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-promotions__text-content {
  flex: 1;
}

.page-promotions__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-promotions__text-content a {
  color: #003366;
  text-decoration: underline;
}

.page-promotions__text-content a:hover {
  color: #FFCC00;
}

.page-promotions__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-promotions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-promotions__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-promotions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

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

.page-promotions__grid-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.page-promotions__item-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promotions__item-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-promotions__grid-item p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions__small-cta {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promotions__small-cta:hover {
  background-color: #e6b800;
}

.page-promotions__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-promotions__promo-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-left: 5px solid #003366;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.page-promotions__promo-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__promo-title a {
  color: #003366;
  text-decoration: none;
}

.page-promotions__promo-title a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

.page-promotions__promo-description {
  font-size: 1.0em;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions__button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promotions__button:hover {
  background-color: #e6b800;
}

.page-promotions__how-to-claim ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions__how-to-claim li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
  font-size: 1.1em;
  color: #444;
}

.page-promotions__how-to-claim li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #003366;
  color: #FFCC00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-promotions__how-to-claim li strong {
  color: #003366;
}

.page-promotions__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #666;
}

.page-promotions__final-cta {
  text-align: center;
  background-color: #003366;
  color: #fff;
}

.page-promotions__final-cta .page-promotions__section-title {
  color: #FFCC00;
}

.page-promotions__final-cta .page-promotions__section-title::after {
  background-color: #fff;
}

.page-promotions__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-promotions__final-cta p a {
  color: #FFCC00;
  text-decoration: underline;
}

.page-promotions__final-cta p a:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__content-wrapper {
    flex-direction: column;
  }
  .page-promotions__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-promotions__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__item-title {
    font-size: 1.4em;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__how-to-claim li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-promotions__how-to-claim li::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__grid-item {
    padding: 20px;
  }
  .page-promotions__item-title {
    font-size: 1.2em;
  }
  .page-promotions__item-image {
    height: 150px;
  }
  .page-promotions__promo-item {
    padding: 20px;
  }
  .page-promotions__promo-title {
    font-size: 1.3em;
  }
  .page-promotions__promo-description {
    font-size: 0.9em;
  }
}