/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #1A0526; /* Darker background to contrast with main purple */
}

.page-promotions a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions a:hover {
  text-decoration: underline;
  color: #FFEB3B;
}

.page-promotions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  background-color: #FFD700;
  color: #4A0E6B; /* Dark text for golden button */
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.page-promotions__button:hover {
  background-color: #FFEB3B;
  color: #3A0B56;
}

.page-promotions__button--primary {
  background-color: #FFD700;
  color: #4A0E6B;
  font-size: 1.1em;
  padding: 15px 30px;
}

.page-promotions__button--primary:hover {
  background-color: #FFEB3B;
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #4A0E6B 0%, #7D1DAB 100%);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #F8F8F8;
}

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

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

.page-promotions__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.page-promotions__hero-image img {
  width: 500px;
  height: auto;
  transform: rotate(15deg);
}

/* Why Choose Section */
.page-promotions__why-choose {
  padding: 80px 20px;
  text-align: center;
  background-color: #1A0526;
}

.page-promotions__why-choose h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #FFD700;
}

.page-promotions__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__feature-item {
  background-color: #2F0A47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions__feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions__feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions__feature-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

/* Overview Section */
.page-promotions__overview {
  padding: 80px 20px;
  text-align: center;
  background-color: #4A0E6B;
}

.page-promotions__overview h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promotions__overview > p {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__card {
  background-color: #2F0A47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions__card p {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promotions__card .page-promotions__button {
  align-self: flex-start;
}

/* How To Claim Section */
.page-promotions__how-to-claim {
  padding: 80px 20px;
  text-align: center;
  background-color: #1A0526;
}

.page-promotions__how-to-claim h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #FFD700;
}

.page-promotions__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.page-promotions__step-item {
  background-color: #2F0A47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

.page-promotions__step-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #4A0E6B;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin: -55px auto 25px auto; /* Adjust to place above card */
  border: 4px solid #1A0526;
}

.page-promotions__step-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions__step-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-promotions__cta-bottom {
  margin-top: 60px;
}

.page-promotions__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFD700;
}

/* Detail List Section */
.page-promotions__detail-list {
  padding: 80px 20px;
  background-color: #4A0E6B;
  text-align: center;
}

.page-promotions__detail-list h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promotions__detail-list > p {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-promotions__list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__list-item {
  background-color: #2F0A47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__list-item img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__list-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions__list-item h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__list-item h3 a:hover {
  text-decoration: underline;
}

.page-promotions__list-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promotions__list-item .page-promotions__button {
  align-self: flex-start;
}

/* FAQ Section */
.page-promotions__faq {
  padding: 80px 20px;
  background-color: #1A0526;
  text-align: center;
}

.page-promotions__faq h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #FFD700;
}

.page-promotions__faq-item {
  background-color: #2F0A47;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 10px;
}

.page-promotions__faq-item.active p {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions__hero h1 {
    font-size: 2.5em;
  }

  .page-promotions__hero p {
    font-size: 1em;
  }

  .page-promotions__hero-image {
    display: none;
  }

  .page-promotions__why-choose h2,
  .page-promotions__overview h2,
  .page-promotions__how-to-claim h2,
  .page-promotions__detail-list h2,
  .page-promotions__faq h2 {
    font-size: 2em;
  }

  .page-promotions__grid,
  .page-promotions__features,
  .page-promotions__steps,
  .page-promotions__list-container {
    grid-template-columns: 1fr;
  }

  .page-promotions__step-item span {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 15px;
  }

  .page-promotions__hero h1 {
    font-size: 2em;
  }

  .page-promotions__why-choose,
  .page-promotions__overview,
  .page-promotions__how-to-claim,
  .page-promotions__detail-list,
  .page-promotions__faq {
    padding: 50px 15px;
  }

  .page-promotions__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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