/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A2A40; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-promotions__section-title {
  color: #FFD700; /* Gold accent for titles */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-subtitle {
  color: #C0C0C0; /* Lighter grey for subtitles */
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2A40 0%, #3A4A60 100%); /* Gradient background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  color: #F0F0F0; /* Off-white for description */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2A40; /* Dark blue text on gold button */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-cta:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 60px 0;
  background-color: #1A2A40;
}

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

/* Categories Section */
.page-promotions__categories-section {
  padding: 80px 0;
  background-color: #22334A; /* Slightly lighter dark blue */
}

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

.page-promotions__category-item {
  background-color: #1A2A40;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__category-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__category-description {
  color: #C0C0C0;
  font-size: 1em;
}

/* Detail List Section */
.page-promotions__detail-list-section {
  padding: 80px 0;
  background-color: #1A2A40;
}

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

.page-promotions__promo-card {
  background-color: #22334A;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-promotions__promo-description {
  color: #E0E0E0;
  font-size: 1.05em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promo-cta-small {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2A40;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-cta-small:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Featured Promotions Section */
.page-promotions__featured-promo-section {
  padding: 80px 0;
  background-color: #22334A;
}

.page-promotions__featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.page-promotions__featured-card {
  background-color: #1A2A40;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__featured-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__featured-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__featured-description {
  color: #E0E0E0;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-promotions__featured-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2A40;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__featured-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #1A2A40;
}

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.page-promotions__claim-steps li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  font-size: 1.15em;
  color: #E0E0E0;
}

.page-promotions__claim-steps li:last-child {
  margin-bottom: 0;
}

.page-promotions__claim-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #1A2A40;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__claim-steps li strong {
  color: #FFD700;
  font-size: 1.2em;
}

.page-promotions__claim-steps li a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions__claim-steps li a:hover {
  color: #e6c200;
}

.page-promotions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__main-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2A40;
  padding: 20px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.6em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__main-cta:hover {
  background-color: #e6c200;
  transform: translateY(-4px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
  padding: 80px 0;
  background-color: #22334A;
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions__benefits-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promotions__benefits-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1.5em;
  line-height: 1;
}

.page-promotions__benefits-list li strong {
  color: #FFD700;
}

.page-promotions__why-choose-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: justify;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #1A2A40;
}

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

.page-promotions__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__faq-answer {
  color: #E0E0E0;
  font-size: 1.05em;
}

/* Final CTA Section */
.page-promotions__final-cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient background */
  color: #1A2A40; /* Dark blue text on gold background */
  text-align: center;
}

.page-promotions__final-cta-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promotions__final-cta-title {
  font-size: 3em;
  color: #1A2A40; /* Dark blue for title */
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-promotions__final-cta-description {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 40px;
}

.page-promotions__final-cta-button {
  display: inline-block;
  background-color: #1A2A40; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue button */
  padding: 20px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__final-cta-button:hover {
  background-color: #3A4A60; /* Lighter dark blue on hover */
  color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions__final-cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-promotions__hero-cta {
    font-size: 1.3em;
    padding: 15px 35px;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__section-subtitle {
    font-size: 1em;
  }
  .page-promotions__category-grid, .page-promotions__promo-grid, .page-promotions__featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__final-cta-title {
    font-size: 2.5em;
  }
  .page-promotions__final-cta-button {
    font-size: 1.5em;
    padding: 18px 40px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 15px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__hero-cta {
    font-size: 1.2em;
    padding: 12px 30px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-subtitle {
    font-size: 0.95em;
  }
  .page-promotions__claim-steps li {
    font-size: 1.05em;
    padding-left: 50px;
  }
  .page-promotions__claim-steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-promotions__main-cta {
    font-size: 1.4em;
    padding: 15px 30px;
  }
  .page-promotions__final-cta-title {
    font-size: 2em;
  }
  .page-promotions__final-cta-description {
    font-size: 1.1em;
  }
  .page-promotions__final-cta-button {
    font-size: 1.3em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section {
    padding: 40px 10px;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-cta {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__section-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__category-grid, .page-promotions__promo-grid, .page-promotions__featured-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__category-item, .page-promotions__promo-card, .page-promotions__featured-card {
    padding: 20px;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__featured-title {
    font-size: 1.6em;
  }
  .page-promotions__claim-steps li {
    font-size: 1em;
    padding-left: 45px;
  }
  .page-promotions__claim-steps li::before {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .page-promotions__main-cta {
    font-size: 1.2em;
    padding: 12px 25px;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-promotions__final-cta-title {
    font-size: 1.8em;
  }
  .page-promotions__final-cta-description {
    font-size: 1em;
  }
  .page-promotions__final-cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}