/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0F1D2F; /* Darker background for overall page */
  line-height: 1.6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #1A2E47, #0F1D2F);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #B0C4DE; /* Lighter blue for subtitle */
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions__hero-image {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #1A2E47; /* Dark blue for primary button text */
  border: none;
}

.page-promotions__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #1A2E47; /* Dark blue for secondary button */
  color: #FFD700; /* Gold for secondary button text */
  border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #2F4F6F;
  transform: translateY(-2px);
}

.page-promotions__btn--text {
  background: none;
  border: none;
  color: #FFD700; /* Gold for text button */
  padding: 0;
  margin: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-promotions__btn--text:hover {
  color: #E5C100;
}

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

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

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

.page-promotions__section-description {
  font-size: 1.1em;
  color: #B0C4DE;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-promotions__feature-card {
  background-color: #263E5A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

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

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

.page-promotions__promo-card {
  background-color: #263E5A;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__promo-title {
  font-size: 1.7em;
  color: #FFD700; /* Gold for promo titles */
  margin-bottom: 10px;
}

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

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

.page-promotions__step-card {
  background-color: #263E5A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  min-height: 220px;
}

.page-promotions__step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 3.5em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.2);
  line-height: 1;
}

.page-promotions__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding-top: 20px; /* Space for number */
}

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

.page-promotions__step-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__step-description a:hover {
  color: #E5C100;
}

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

.page-promotions__list li {
  background-color: #1A2E47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__list li p {
  margin: 0;
  color: #B0C4DE;
  font-size: 1.1em;
}

.page-promotions__list li p strong {
  color: #FFD700;
  font-size: 1.2em;
}

.page-promotions__cta-banner {
  background: linear-gradient(90deg, #FFD700, #E5C100);
  padding: 40px;
  border-radius: 15px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  color: #1A2E47; /* Dark text on light background */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-promotions__cta-text {
  font-size: 1.8em;
  font-weight: bold;
  margin: 0;
  color: #1A2E47;
  position: relative;
  z-index: 1;
}

.page-promotions__cta-image {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 250px;
  height: auto;
  opacity: 0.3;
  transform: rotate(15deg);
  z-index: 0;
}

.page-promotions__section--conclusion {
  padding-bottom: 100px;
}

.page-promotions__section--conclusion .page-promotions__section-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__section--conclusion .page-promotions__section-description a:hover {
  color: #E5C100;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__grid, .page-promotions__promo-list, .page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .page-promotions__hero-image {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0 40px;
  }
  .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__feature-card, .page-promotions__promo-card, .page-promotions__step-card {
    padding: 25px;
  }
  .page-promotions__step-number {
    font-size: 3em;
  }
  .page-promotions__cta-text {
    font-size: 1.5em;
  }
  .page-promotions__cta-image {
    width: 200px;
    bottom: -10px;
    right: -20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 0 30px;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
  }
  .page-promotions__feature-title, .page-promotions__promo-title, .page-promotions__step-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-banner {
    padding: 30px;
  }
  .page-promotions__cta-text {
    font-size: 1.2em;
  }
  .page-promotions__cta-image {
    width: 150px;
    bottom: 0px;
    right: -10px;
  }
}