/* style/promotions.css */
.page-promotions {
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: var(--dark-bg-1);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Spacing for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Spacing for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
}

.page-promotions__hero-banner {
  background: linear-gradient(135deg, #FFD700, #1a1a1a); /* Gold to dark grey gradient */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:hero:f16878_promotions_banner,vip_offers,gold_abstract]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 1;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.page-promotions__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.page-promotions__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions__btn--primary {
  background: #FFD700;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 25px;
  font-size: 16px;
}

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

.page-promotions__btn--small {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 5px;
}

.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--dark-bg-1);
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 38px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-intro {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.page-promotions__card-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-promotions__benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__benefit-title {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__benefit-text {
  font-size: 15px;
  color: #cccccc;
}

.page-promotions__cta-box {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-promotions__cta-box p {
  font-size: 18px;
  color: #f0f0f0;
  margin: 0;
}

.page-promotions__cta-box a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions__cta-box a:hover {
  color: #e6c200;
}

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

.page-promotions__step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__step-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px auto;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-promotions__step-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-text {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a1a1a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background: #2a2a2a;
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
  color: #e6c200;
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #cccccc;
  font-size: 16px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* Ensure content expands fully */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 8px 8px;
}

.page-promotions__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

/* Latest News Section */
.page-promotions__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__news-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promotions__news-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-promotions__news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-promotions__news-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promotions__news-title a:hover {
  color: #e6c200;
}

.page-promotions__news-excerpt {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__news-date {
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

/* Contact CTA */
.page-promotions__contact-cta {
  background: linear-gradient(90deg, #1a1a1a, #0d0d0d);
  padding: 80px 20px;
}

.page-promotions__contact-container {
  max-width: 800px;
}

.page-promotions__contact-cta .page-promotions__section-title {
  color: #ffffff;
}

.page-promotions__contact-cta p {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 40px;
  }

  .page-promotions__hero-description {
    font-size: 18px;
  }

  .page-promotions__section-title {
    font-size: 32px;
  }

  .page-promotions__card-grid,
  .page-promotions__benefits-list,
  .page-promotions__steps-grid,
  .page-promotions__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important;
  }

  .page-promotions__hero-banner {
    padding: 60px 15px;
    min-height: 350px;
  }

  .page-promotions__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

  .page-promotions__section {
    padding: 40px 15px;
  }

  .page-promotions__container,
  .page-promotions__contact-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-promotions__section-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions__card-grid,
  .page-promotions__benefits-list,
  .page-promotions__steps-grid,
  .page-promotions__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image-wrapper {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__card-text {
    font-size: 15px;
  }

  .page-promotions__benefit-item,
  .page-promotions__step-card,
  .page-promotions__news-card {
    padding: 25px;
  }

  .page-promotions__benefit-icon,
  .page-promotions__step-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .page-promotions__step-icon {
    width: 50px;
    height: 50px;
  }

  .page-promotions__benefit-title,
  .page-promotions__step-title {
    font-size: 20px;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
    margin-left: 15px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px;
    font-size: 15px;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }

  .page-promotions__news-image-wrapper {
    height: 160px;
  }

  .page-promotions__news-title {
    font-size: 18px;
  }

  .page-promotions__news-excerpt {
    font-size: 14px;
  }

  .page-promotions__contact-cta {
    padding: 60px 15px;
  }

  .page-promotions__contact-cta p {
    font-size: 16px;
  }
}

/* Ensure all images are responsive */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile forced image adaptation */
@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}