/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #0A2239; /* Main dark background */
  line-height: 1.6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #E0B44B; /* Gold for hero titles */
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page-promotions__button {
  display: inline-block;
  background-color: #E0B44B; /* Gold button */
  color: #0A2239; /* Dark blue text on button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__button:hover {
  background-color: #F0C45B; /* Lighter gold on hover */
  transform: translateY(-2px);
}

.page-promotions__button--hero {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions__button--large {
  padding: 20px 45px;
  font-size: 1.4em;
}

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

.page-promotions__section--dark {
  background-color: #1A3A5A; /* Slightly lighter dark blue for contrast */
  color: #F0F0F0;
}

.page-promotions__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: #E0B44B; /* Gold for section titles */
  font-weight: bold;
}

.page-promotions__section--dark .page-promotions__section-title {
  color: #E0B44B;
}

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

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

.page-promotions__card {
  background-color: #0A2239; /* Dark blue background for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(224, 180, 75, 0.3);
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E0B44B);
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #E0B44B; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-promotions__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  margin-top: 50px;
  gap: 50px;
}

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

.page-promotions__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__text-content {
  flex: 2;
  min-width: 300px;
}

.page-promotions__content-title {
  font-size: 2em;
  color: #E0B44B; /* Gold for sub-titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-promotions__link {
  color: #E0B44B; /* Gold for inline links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__link:hover {
  color: #F0C45B;
  text-decoration: underline;
}

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

.page-promotions__step-item {
  background-color: #1A3A5A; /* Slightly lighter dark blue */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(224, 180, 75, 0.2);
}

.page-promotions__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #E0B44B; /* Gold for step numbers */
  color: #0A2239; /* Dark blue text on step numbers */
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: #E0B44B; /* Gold for step titles */
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

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

.page-promotions__feature-item {
  background-color: #0A2239;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(224, 180, 75, 0.3);
}

.page-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 3px #E0B44B);
}

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #E0B44B;
  margin-bottom: 10px;
}

.page-promotions__feature-description {
  font-size: 0.95em;
  color: #C0C0C0;
}

.page-promotions__section--detail-list {
  background-color: #0A2239;
}

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

.page-promotions__detail-card {
  background-color: #1A3A5A;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid rgba(224, 180, 75, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__detail-title {
  font-size: 1.5em;
  color: #E0B44B;
  margin-bottom: 15px;
}

.page-promotions__detail-title a {
  color: #E0B44B;
  text-decoration: none;
}

.page-promotions__detail-title a:hover {
  color: #F0C45B;
  text-decoration: underline;
}

.page-promotions__detail-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__cta-final {
  background: linear-gradient(45deg, #E0B44B 0%, #F0C45B 100%); /* Gold gradient for final CTA */
  padding: 80px 0;
  text-align: center;
  color: #0A2239; /* Dark blue text on gold background */
}

.page-promotions__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0A2239;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #2A4A6A;
}

.page-promotions__cta-description .page-promotions__link {
  color: #0A2239;
  font-weight: bold;
}

.page-promotions__cta-description .page-promotions__link:hover {
  color: #1A3A5A;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__content-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section {
    padding: 60px 0;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__content-block--reverse {
    flex-direction: column;
  }
  .page-promotions__image-wrapper {
    margin-bottom: 30px;
  }
  .page-promotions__text-content {
    text-align: center;
  }
  .page-promotions__list {
    text-align: left;
    margin-left: 20px;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__button--hero, .page-promotions__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__content-title {
    font-size: 1.6em;
  }
  .page-promotions__step-title {
    font-size: 1.4em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__button--small {
    padding: 12px 15px;
  }
}