/* style/promotions-limited-time-offers.css */

.page-promotions-limited-time-offers {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-promotions-limited-time-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-promotions-limited-time-offers__hero {
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px; /* Ensure sufficient height */
}

.page-promotions-limited-time-offers__hero-content {
  z-index: 10;
  position: relative;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-promotions-limited-time-offers__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-offers__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #ffffff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-limited-time-offers__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust size as needed */
  max-width: 700px;
  opacity: 0.2;
  z-index: 5;
}

.page-promotions-limited-time-offers__image-responsive {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.page-promotions-limited-time-offers__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-promotions-limited-time-offers__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0047AB; /* Dark blue */
}

.page-promotions-limited-time-offers__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-limited-time-offers__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-limited-time-offers__button--secondary:hover {
  background-color: #FFD700;
  color: #0047AB;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-promotions-limited-time-offers__section {
  padding: 60px 0;
}

.page-promotions-limited-time-offers__section:nth-of-type(even) {
  background-color: #f0f2f5;
}

.page-promotions-limited-time-offers__heading {
  font-size: 2.5em;
  color: #0047AB; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-limited-time-offers__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promotions-limited-time-offers__text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-limited-time-offers__text strong {
  color: #0047AB;
}

.page-promotions-limited-time-offers__link {
  color: #0047AB;
  text-decoration: underline;
}

.page-promotions-limited-time-offers__link:hover {
  color: #FFD700;
}

/* Offer Types Grid */
.page-promotions-limited-time-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions-limited-time-offers__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-limited-time-offers__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-limited-time-offers__card-title {
  font-size: 1.6em;
  color: #0047AB;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-limited-time-offers__card-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

/* Benefits Grid */
.page-promotions-limited-time-offers__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions-limited-time-offers__benefit-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-promotions-limited-time-offers__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-promotions-limited-time-offers__benefit-title {
  font-size: 1.4em;
  color: #0047AB;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-limited-time-offers__benefit-description {
  font-size: 0.95em;
  color: #666;
}

/* How-To-Claim Steps */
.page-promotions-limited-time-offers__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-limited-time-offers__steps li {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 25px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  counter-increment: step-counter;
}

.page-promotions-limited-time-offers__steps li::before {
  content: counter(step-counter);
  position: absolute;
  top: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: #0047AB; /* Dark blue step number */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  z-index: 1;
}

.page-promotions-limited-time-offers__step-title {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 10px;
  padding-left: 60px; /* Space for step number */
  font-weight: 600;
}

.page-promotions-limited-time-offers__step-description {
  font-size: 1.05em;
  color: #555;
  padding-left: 60px;
  text-align: justify;
}

/* Terms and Conditions */
.page-promotions-limited-time-offers__list {
  list-style: disc;
  margin-left: 25px;
  margin-top: 20px;
  color: #444;
}

.page-promotions-limited-time-offers__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-limited-time-offers__strong {
  color: #0047AB;
}

/* FAQ Accordion */
.page-promotions-limited-time-offers__accordion {
  margin-top: 30px;
}

.page-promotions-limited-time-offers__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-limited-time-offers__accordion-header {
  padding: 20px 25px;
  background-color: #f5f5f5;
  color: #0047AB;
  font-size: 1.3em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-limited-time-offers__accordion-header:hover {
  background-color: #e9ecef;
}

.page-promotions-limited-time-offers__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
}

.page-promotions-limited-time-offers__accordion-header.active::after {
  content: '-';
}

.page-promotions-limited-time-offers__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-limited-time-offers__accordion-content.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 20px;
}

.page-promotions-limited-time-offers__accordion-content p {
  margin-bottom: 0;
  color: #555;
  font-size: 1em;
}

/* Call to Action Section */
.page-promotions-limited-time-offers__cta {
  background-color: #0047AB; /* Dark blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promotions-limited-time-offers__cta .page-promotions-limited-time-offers__heading {
  color: #FFD700; /* Gold heading */
}

.page-promotions-limited-time-offers__cta .page-promotions-limited-time-offers__heading::after {
  background-color: #ffffff;
}

.page-promotions-limited-time-offers__cta .page-promotions-limited-time-offers__text {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-limited-time-offers__title {
    font-size: 2.5em;
  }
  .page-promotions-limited-time-offers__heading {
    font-size: 2em;
  }
  .page-promotions-limited-time-offers__hero-image {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-promotions-limited-time-offers__hero {
    padding: 60px 0;
  }
  .page-promotions-limited-time-offers__title {
    font-size: 2em;
  }
  .page-promotions-limited-time-offers__subtitle {
    font-size: 1.2em;
  }
  .page-promotions-limited-time-offers__hero-image {
    width: 80%;
    opacity: 0.15;
  }
  .page-promotions-limited-time-offers__section {
    padding: 40px 0;
  }
  .page-promotions-limited-time-offers__heading {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-offers__card, .page-promotions-limited-time-offers__benefit-item {
    padding: 20px;
  }
  .page-promotions-limited-time-offers__card-title {
    font-size: 1.4em;
  }
  .page-promotions-limited-time-offers__benefit-title {
    font-size: 1.2em;
  }
  .page-promotions-limited-time-offers__steps li::before {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
  .page-promotions-limited-time-offers__step-title {
    font-size: 1.5em;
    padding-left: 50px;
  }
  .page-promotions-limited-time-offers__step-description {
    padding-left: 50px;
  }
  .page-promotions-limited-time-offers__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-limited-time-offers__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-limited-time-offers__hero {
    padding: 40px 0;
  }
  .page-promotions-limited-time-offers__title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-offers__subtitle {
    font-size: 1em;
  }
  .page-promotions-limited-time-offers__hero-image {
    display: none;
  }
  .page-promotions-limited-time-offers__heading {
    font-size: 1.5em;
  }
  .page-promotions-limited-time-offers__grid, .page-promotions-limited-time-offers__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-limited-time-offers__steps li {
    padding: 20px;
  }
  .page-promotions-limited-time-offers__steps li::before {
    position: static;
    margin-bottom: 10px;
  }
  .page-promotions-limited-time-offers__step-title, .page-promotions-limited-time-offers__step-description {
    padding-left: 0;
    text-align: center;
  }
  .page-promotions-limited-time-offers__benefit-item {
    align-items: center;
    text-align: center;
  }
  .page-promotions-limited-time-offers__accordion-header {
    padding: 12px 15px;
  }
  .page-promotions-limited-time-offers__accordion-content.active {
    padding: 10px 15px 15px;
  }
  .page-promotions-limited-time-offers__button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}