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

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

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

.page-promotions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  color: #FFCC00; /* Adjusted for contrast */
}

.page-promotions__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #f0f0f0; /* Adjusted for contrast */
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-promotions__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #f5f5f5;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title .highlight {
  color: #FFCC00;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

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

.page-promotions__why-choose .page-promotions__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promotions__why-choose .page-promotions__text-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions__why-choose .page-promotions__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-promotions__why-choose .page-promotions__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions__why-choose .page-promotions__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__promo-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promotions__promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions__promo-item h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__promo-item p {
  font-size: 1em;
  color: #666;
}

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

.page-promotions__promo-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-promotions__card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-promotions__card-title a:hover {
  color: #FFCC00;
}

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

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background-color: #e6b800;
}

.page-promotions__how-to-claim .page-promotions__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-promotions__how-to-claim .page-promotions__steps-list li {
  background-color: #fefefe;
  border-left: 5px solid #003366;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-promotions__how-to-claim .page-promotions__steps-list li strong {
  color: #003366;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-promotions__how-to-claim .page-promotions__steps-list li a {
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__how-to-claim .page-promotions__steps-list li a:hover {
  text-decoration: underline;
}

.page-promotions__terms-conditions .page-promotions__list {
  max-width: 900px;
  margin: 40px auto;
  list-style-type: disc;
  padding-left: 25px;
}

.page-promotions__terms-conditions .page-promotions__list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-promotions__terms-conditions .page-promotions__list li strong {
  color: #003366;
}

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

.page-promotions__faq-item {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

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

.page-promotions__faq-item p {
  font-size: 1em;
  color: #666;
}

.page-promotions__cta-bottom {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 8px;
}

.page-promotions__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
}

.page-promotions__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__cta-description a:hover {
  color: #fff;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-promotions__main-cta-button, .page-promotions__secondary-cta-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__main-cta-button {
  background-color: #FFCC00;
  color: #003366;
}

.page-promotions__main-cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-promotions__secondary-cta-button {
  background-color: #CC0000;
  color: #fff;
  border: 2px solid #CC0000;
}

.page-promotions__secondary-cta-button:hover {
  background-color: #a30000;
  border-color: #a30000;
  transform: translateY(-3px);
}

.page-promotions__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1000;
  display: none; /* Hidden by default, shown by JS */
  animation: page-promotions-fadeInUp 0.5s ease forwards;
}

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

.page-promotions__close-ad {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions__close-ad:hover {
  background-color: #CC0000;
}

@keyframes page-promotions-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__cta-title {
    font-size: 2.5em;
  }
  .page-promotions__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__why-choose .page-promotions__content-wrapper {
    flex-direction: column;
  }
  .page-promotions__promo-grid, .page-promotions__promo-list, .page-promotions__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__cta-bottom {
    padding: 60px 0;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__main-cta-button, .page-promotions__secondary-cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-promotions__floating-ad {
    width: 250px;
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
  }
  .page-promotions__promo-item h3 {
    font-size: 1.4em;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__main-cta-button, .page-promotions__secondary-cta-button {
    width: 90%;
    max-width: 300px;
  }
}