/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray text for dark background */
  background-color: #1a1a1a; /* 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, #007BFF, #0056b3); /* Blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.page-promotions__section {
  padding: 80px 0;
  background-color: #2a2a2a; /* Slightly lighter dark background */
  margin-bottom: 20px;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Blue for titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-promotions__text-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

.page-promotions__two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-promotions__content-block {
  flex: 1;
  min-width: 300px;
}

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

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

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

.page-promotions__step-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700; /* Gold icon background */
  color: #1a1a1a; /* Dark text for gold */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-promotions__step-title {
  color: #007BFF; /* Blue title */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions__image-wrapper {
  text-align: center;
  margin-top: 60px;
}

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

.page-promotions__promo-card {
  background-color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions__card-title {
  color: #FFD700; /* Gold title */
  font-size: 1.4em;
  padding: 20px 20px 10px;
}

.page-promotions__card-description {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn--small {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.page-promotions__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-promotions__feature-list li {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-title {
  color: #007BFF; /* Blue for feature titles */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions__faq-item {
  background-color: #333333;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  color: #FFD700; /* Gold for FAQ questions */
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #444;
  margin-top: 10px;
}

.page-promotions__faq-answer.active {
  display: block;
}

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

.page-promotions__detail-card {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__detail-title a {
  color: #FFD700; /* Gold for detail link titles */
  font-size: 1.5em;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
  color: #007BFF;
}

.page-promotions__detail-description {
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__cta-final {
  background: linear-gradient(135deg, #0056b3, #007BFF); /* Blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text for gold */
}

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

.page-promotions__btn--secondary {
  background-color: #007BFF; /* Blue button */
  color: #ffffff;
}

.page-promotions__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-promotions__btn--tertiary {
  background-color: #444444; /* Dark gray button */
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1em;
}

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

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #007BFF; /* Blue for small buttons */
  color: #ffffff;
}

.page-promotions__btn--small:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-promotions__highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__two-column {
    flex-direction: column;
  }

  .page-promotions__image-block {
    order: -1; /* Image above text on mobile for some sections */
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }

  .page-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-promotions__hero-description {
    font-size: 1.1em;
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-promotions__steps, .page-promotions__promo-grid, .page-promotions__feature-list, .page-promotions__detail-list {
    grid-template-columns: 1fr;
  }

  .page-promotions__cta-title {
    font-size: 2em;
  }

  .page-promotions__cta-description {
    font-size: 1em;
  }

  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}