/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #0d1a2d; /* Slightly lighter dark blue for overall background */
}

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold for CTA buttons */
  color: #003366; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #003366; /* Dark blue for section backgrounds */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__section:nth-of-type(even) {
  background-color: #0a2d52; /* Slightly different dark blue for alternating sections */
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions__feature-list, .page-promotions__terms-list, .page-promotions__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__feature-list li, .page-promotions__terms-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #ffffff;
}

.page-promotions__icon {
  color: #FFCC00;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.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: #1a4d80; /* Medium dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions__promo-image {
  max-width: 100%;
  height: 200px; /* Fixed height for images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__promo-description {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to the bottom */
}

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

.page-promotions__step-list {
  counter-reset: step-counter;
}

.page-promotions__step-list li {
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.6;
}

.page-promotions__step-list li:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFCC00;
  color: #003366;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions__security-image {
  max-width: 300px;
  display: block;
  margin: 30px auto 0;
  filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.5));
}

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

.page-promotions__detail-item {
  background-color: #1a4d80;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-promotions__detail-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions__detail-title a {
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-promotions__detail-description {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions__detail-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  border: 1px solid #FFCC00;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__detail-button:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-promotions__final-cta {
  background: linear-gradient(90deg, #FFCC00, #e6b800);
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions__final-cta-title {
  font-size: 3em;
  color: #003366;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions__final-cta-description {
  font-size: 1.3em;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 8px;
}

.page-promotions__floating-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 204, 0, 0.95); /* Semi-transparent gold */
  color: #003366;
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  font-size: 1.1em;
  font-weight: bold;
  animation: page-promotions-fadeInUp 0.5s ease-out;
}

.page-promotions__floating-banner a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__floating-banner a:hover {
  color: #333333;
}

.page-promotions__close-banner-btn {
  background: none;
  border: none;
  color: #003366;
  font-size: 1.5em;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.page-promotions__close-banner-btn:hover {
  transform: rotate(90deg);
}

@keyframes page-promotions-fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

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

@media (max-width: 768px) {
  .page-promotions__hero-section, .page-promotions__section, .page-promotions__final-cta {
    padding: 40px 0;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__text-content, .page-promotions__feature-list li, .page-promotions__terms-list li, .page-promotions__step-list li {
    font-size: 0.95em;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__final-cta-title {
    font-size: 2em;
  }
  .page-promotions__final-cta-description {
    font-size: 1.1em;
  }
  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions__floating-banner {
    width: 90%;
    bottom: 10px;
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-promotions__close-banner-btn {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__final-cta-title {
    font-size: 1.8em;
  }
  .page-promotions__floating-banner {
    font-size: 0.8em;
    padding: 8px 10px;
  }
}