/* style/promotions.css */

.page-promotions {
  font-family: Arial, sans-serif;
  color: #1A202C; /* Main text color */
  background-color: #f8f8f8;
}

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

.page-promotions__hero {
  background-color: #1A202C; /* Dark blue background */
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
  z-index: 0;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-promotions__introduction, .page-promotions__how-to-claim, .page-promotions__why-choose, .page-promotions__faq {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.page-promotions__offer-list {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-promotions__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text-content--center {
  text-align: center;
}

.page-promotions__offer-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.page-promotions__offer-card-image-wrapper {
  height: 250px;
  overflow: hidden;
}

.page-promotions__offer-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions__offer-card-content {
  padding: 30px;
}

.page-promotions__offer-card-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__offer-card-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold accent */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

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

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

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

.page-promotions__steps-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-promotions__steps-list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
}

.page-promotions__steps-list li strong {
  color: #1A202C;
}

.page-promotions__steps-list li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-promotions__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #fcfcfc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-promotions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #3a414e;
}

.page-promotions__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #1A202C;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #3a414e;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-promotions__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__offer-card {
    flex-direction: column;
  }
  .page-promotions__offer-card-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 20px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__introduction, .page-promotions__how-to-claim, .page-promotions__why-choose, .page-promotions__faq {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-promotions__text-content {
    font-size: 1em;
  }
  .page-promotions__offer-card-content {
    padding: 20px;
  }
  .page-promotions__offer-card-title {
    font-size: 1.5em;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-promotions__steps-list {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__offer-card-title {
    font-size: 1.3em;
  }
  .page-promotions__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
}