/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A2E47;
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  position: relative;
}

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

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

.page-promotions__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #0D1B2A 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

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

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A2E47;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__featured-offers {
  padding: 80px 0;
  background-color: #1A2E47;
}

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

.page-promotions__offer-card {
  background-color: #253C5A;
  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;
  padding-bottom: 20px;
}

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

.page-promotions__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #FFD700;
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #A0A0A0;
  padding: 0 20px;
  flex-grow: 1;
}

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

.page-promotions__all-promotions {
  padding: 80px 0;
  background-color: #112233;
}

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

.page-promotions__promo-item {
  background-color: #253C5A;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

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

.page-promotions__promo-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

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

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

.page-promotions__promo-description {
  color: #A0A0A0;
  font-size: 1em;
  margin-bottom: 15px;
}

.page-promotions__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.page-promotions__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions__why-choose {
  padding: 80px 0;
  background-color: #1A2E47;
}

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

.page-promotions__feature-item {
  background-color: #253C5A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

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

.page-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__feature-text {
  color: #A0A0A0;
  font-size: 0.95em;
}

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

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

.page-promotions__faq-item {
  background-color: #253C5A;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  color: #A0A0A0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

.page-promotions__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__faq-answer a:hover {
  color: #e6c200;
}

.page-promotions__cta-bottom {
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2E47 100%);
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

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

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

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin: 15px;
}

.page-promotions__btn--inverted {
  background-color: #1A2E47;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn--inverted:hover {
  background-color: #FFD700;
  color: #1A2E47;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__cta-title {
    font-size: 2.5em;
  }
  .page-promotions__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__feature-title {
    font-size: 1.3em;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-text {
    font-size: 1em;
  }
  .page-promotions__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-promotions__offers-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}