/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #0A2342; /* Deep Sapphire Blue */
  line-height: 1.6;
}

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

.page-promotions__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Deep Sapphire Blue */
  border: 2px solid #FFD700;
}

.page-promotions__cta-button--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-2px);
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 5px;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.page-promotions__intro-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-promotions__feature-item {
  background-color: #1A3F6C; /* Slightly lighter blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

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

.page-promotions__text-block {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: justify;
  margin-bottom: 40px;
  padding: 0 20px;
}

.page-promotions__list-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-promotions__promo-card {
  background-color: #1A3F6C; /* Slightly lighter blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700; /* Gold border */
}

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

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

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

.page-promotions__promo-title a:hover {
  text-decoration: underline;
}

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

.page-promotions__detail-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9em;
  font-weight: bold;
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-right: 10px;
}

.page-promotions__detail-button:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

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

.page-promotions__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD700);
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

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

.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-promotions__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions__accordion-header {
  background-color: #1A3F6C; /* Lighter blue for header */
  color: #FFD700; /* Gold */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__accordion-header:hover {
  background-color: #2A5A8D;
}

.page-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__accordion-content {
  background-color: #0A2342; /* Dark blue for content */
  color: #E0E0E0;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content p {
  padding: 15px 0;
  margin: 0;
}

.page-promotions__final-cta-section {
  padding: 80px 0;
  background-color: #1A3F6C; /* Lighter blue */
  text-align: center;
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__feature-item {
    padding: 25px;
  }

  .page-promotions__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions__accordion-content p {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }

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

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__promo-title {
    font-size: 1.5em;
  }

  .page-promotions__detail-button {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .page-promotions__cta-button--small {
    width: 100%;
    text-align: center;
  }
}