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

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

/* Hero Section */
.page-promotions-hero-section {
  background: linear-gradient(135deg, #003366 0%, #003366 50%, #FFCC00 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions-hero-section > .page-promotions-container {
  position: relative;
  z-index: 1;
}

.page-promotions-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Golden yellow for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions-hero-actions .page-promotions-btn {
  margin: 0 10px;
}

/* Buttons */
.page-promotions-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-promotions-btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-promotions-btn-primary:hover {
  background-color: #e6b800;
  color: #002244;
  border-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-btn-secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promotions-btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-btn-link {
  color: #003366;
  text-decoration: underline;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.95em;
}

.page-promotions-btn-link:hover {
  color: #FFCC00;
  text-decoration: none;
}

.page-promotions-btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* Section Titles */
.page-promotions-section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Offers Grid */
.page-promotions-featured-offers {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-promotions-offer-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

.page-promotions-offer-desc {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-offer-card .page-promotions-btn {
  margin-top: 15px;
  width: 100%;
}

/* All Offers List */
.page-promotions-all-offers {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promotions-offer-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-promotions-list-item {
  background-color: #f0f7ff; /* Lighter blue background */
  border-left: 5px solid #003366;
  border-radius: 8px;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .page-promotions-list-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page-promotions-item-content {
    flex-grow: 1;
    padding-right: 20px;
  }
  .page-promotions-item-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
}

.page-promotions-item-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 8px;
}

.page-promotions-item-title a {
  color: #003366;
  text-decoration: none;
}

.page-promotions-item-title a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

.page-promotions-item-desc {
  color: #555;
  font-size: 1em;
}

/* Why Choose Us */
.page-promotions-why-choose-us {
  padding: 80px 0;
  background-color: #003366;
  color: #ffffff;
}

.page-promotions-why-choose-us .page-promotions-section-title {
  color: #FFCC00;
}

.page-promotions-why-choose-us .page-promotions-section-subtitle {
  color: #e0e0e0;
}

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

.page-promotions-reason-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions-reason-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-reason-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust to make icon golden */
}

.page-promotions-reason-title {
  font-size: 1.4em;
  color: #FFCC00;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-reason-text {
  color: #e0e0e0;
}

/* FAQ Section */
.page-promotions-faq {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promotions-accordion {
  margin-top: 40px;
}

.page-promotions-accordion-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-accordion-header {
  width: 100%;
  background-color: #003366;
  color: #ffffff;
  padding: 18px 25px;
  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: #004488;
}

.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 {
  padding: 0 25px;
  background-color: #ffffff;
  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;
  color: #555;
  border-top: 1px solid #eee;
  margin: 0;
}

/* Call to Action */
.page-promotions-cta {
  background-color: #FFCC00;
  color: #003366;
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-promotions-cta .page-promotions-btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-hero-title {
    font-size: 2.8em;
  }
  .page-promotions-section-title {
    font-size: 2em;
  }
  .page-promotions-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-hero-section {
    padding: 60px 0;
  }
  .page-promotions-hero-title {
    font-size: 2.2em;
  }
  .page-promotions-hero-description {
    font-size: 1em;
  }
  .page-promotions-hero-actions .page-promotions-btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  .page-promotions-section-title {
    font-size: 1.8em;
  }
  .page-promotions-section-subtitle {
    font-size: 0.95em;
  }
  .page-promotions-offer-card {
    padding: 20px;
  }
  .page-promotions-offer-title {
    font-size: 1.4em;
  }
  .page-promotions-list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-promotions-item-actions {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }
  .page-promotions-item-actions .page-promotions-btn {
    flex: 1;
  }
  .page-promotions-reason-title {
    font-size: 1.2em;
  }
  .page-promotions-accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-cta-title {
    font-size: 2em;
  }
  .page-promotions-cta-description {
    font-size: 1em;
  }
  .page-promotions-cta .page-promotions-btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-promotions-hero-title {
    font-size: 1.8em;
  }
  .page-promotions-section-title {
    font-size: 1.6em;
  }
  .page-promotions-cta-title {
    font-size: 1.8em;
  }
}