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

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0D47A1, #2a6dbd); /* Dark blue to lighter blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700; /* Gold for highlight */
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0D47A1; /* Dark blue text on gold */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-promotions__section:nth-of-type(even) {
  background-color: #f0f4f7; /* Light greyish blue */
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #0D47A1; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title .highlight {
  color: #FFD700; /* Gold highlight */
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text-block .highlight {
  font-weight: bold;
  color: #0D47A1;
}

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

.page-promotions__promotion-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.page-promotions__card-title {
  font-size: 1.6em;
  color: #0D47A1;
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px 20px;
  flex-grow: 2;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0D47A1; /* Dark blue */
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions__card-button:hover {
  background-color: #e6c200;
}

.page-promotions__why-choose-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__why-choose-text {
  flex: 2;
  min-width: 300px;
}

.page-promotions__why-choose-image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-promotions__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-promotions__sub-title {
  font-size: 1.8em;
  color: #0D47A1;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__step-list li {
  background-color: #f0f4f7;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  padding-left: 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-promotions__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0D47A1; /* Dark blue */
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: #0D47A1;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__step-list li p {
  color: #555;
  margin-bottom: 0;
}

.page-promotions__step-list li a {
  color: #FFD700; /* Gold link */
  font-weight: bold;
  text-decoration: none;
}

.page-promotions__step-list li a:hover {
  text-decoration: underline;
}

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

.page-promotions__faq-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 5px solid #0D47A1; /* Dark blue border */
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #0D47A1;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions__faq-answer {
  color: #666;
  font-size: 1em;
}

.page-promotions__final-cta-section {
  background: linear-gradient(to right, #0D47A1, #2a6dbd); /* Dark blue gradient */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promotions__final-cta-content {
  max-width: 900px;
}

.page-promotions__final-cta-section .page-promotions__section-title {
  color: #FFD700; /* Gold */
  margin-bottom: 25px;
}

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

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

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__cta-button--primary {
  background-color: #FFD700;
  color: #0D47A1;
  border-color: #FFD700;
}

.page-promotions__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0D47A1;
}

/* Floating Ad Menu */
.page-promotions__floating-ad-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #0D47A1; /* Dark blue background */
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.page-promotions__floating-ad-menu.hidden {
  transform: translateX(calc(100% + 20px));
}

.page-promotions__floating-ad-content p {
  margin: 5px 0;
  font-size: 1em;
}

.page-promotions__floating-ad-content .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-promotions__floating-ad-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0D47A1; /* Dark blue text */
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  border: none;
}

.page-promotions__floating-ad-button:hover {
  background-color: #e6c200;
}

.page-promotions__floating-ad-close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5em;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.page-promotions__floating-ad-close-button:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__why-choose-content {
    flex-direction: column;
  }
  .page-promotions__floating-ad-menu {
    width: 280px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__step-list li {
    padding-left: 60px;
  }
  .page-promotions__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    left: 15px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__floating-ad-menu {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__card-description {
    font-size: 0.95em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__floating-ad-content p {
    font-size: 0.9em;
  }
  .page-promotions__floating-ad-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}