/* 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 {
  background: linear-gradient(135deg, #0A2463, #3A5A93);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-promotions__hero > div {
  position: relative;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

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

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

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

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

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

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

.page-promotions__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #FFD700;
}

.page-promotions__offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-promotions__offer-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-promotions__offer-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__offer-content p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  margin-right: 15px; /* Space between buttons */
  margin-top: 10px;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
  font-size: 1.1em;
}

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

.page-promotions__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #0A2463;
}

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

.page-promotions__btn--tertiary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

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

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

.page-promotions__step-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  padding: 30px;
  text-align: center;
  position: relative;
}

.page-promotions__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A2463;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: -55px auto 25px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-claim .page-promotions__step-card {
  margin-top: 55px; /* Adjust for step number */
}

.page-promotions__guide-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions__list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: #555;
}

.page-promotions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions__list strong {
  color: #0A2463;
}

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

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  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: 1.05em;
  color: #555;
  display: none;
  margin-top: 15px;
}

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

.page-promotions__faq-image {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions__cta {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.page-promotions__cta .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__cta .page-promotions__section-title::after {
  background-color: #e6c200;
}

.page-promotions__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-promotions__offer-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-promotions__offer-card {
    flex-direction: row;
  }
  .page-promotions__offer-image {
    width: 40%;
    height: auto;
    border-bottom: none;
    border-right: 1px solid #eee;
  }
  .page-promotions__offer-content {
    width: 60%;
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description,
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__feature-card,
  .page-promotions__offer-card,
  .page-promotions__step-card,
  .page-promotions__faq-item {
    margin-bottom: 20px;
  }
  .page-promotions__offer-card {
    flex-direction: column;
  }
  .page-promotions__offer-image {
    height: 200px;
  }
  .page-promotions__btn {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__how-to-claim .page-promotions__step-card {
    margin-top: 0;
    padding-top: 55px; /* Adjust for step number */
  }
  .page-promotions__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

@media (min-width: 1024px) {
  .page-promotions__offer-list {
    grid-template-columns: repeat(2, 1fr);
  }
}