/* style/promotions-daily-rebate.css */

.page-promotions-daily-rebate__hero-section {
  background: linear-gradient(135deg, #003366, #1a4f80);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-rebate__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-promotions-daily-rebate__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-daily-rebate__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-promotions-daily-rebate__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-promotions-daily-rebate__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

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

.page-promotions-daily-rebate__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

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

.page-promotions-daily-rebate__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-promotions-daily-rebate__section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-promotions-daily-rebate__section:nth-of-type(even) {
  background-color: #e9e9e9;
}

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

.page-promotions-daily-rebate__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-daily-rebate__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-daily-rebate__intro p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-daily-rebate__highlight {
  color: #003366;
  font-weight: bold;
}

.page-promotions-daily-rebate__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-daily-rebate__list li {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFCC00;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1.05em;
}

.page-promotions-daily-rebate__list li strong {
  color: #003366;
}

.page-promotions-daily-rebate__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rebate__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-rebate__rebate-types .page-promotions-daily-rebate__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-daily-rebate__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-rebate__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-daily-rebate__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rebate__card p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555555;
}

.page-promotions-daily-rebate__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-promotions-daily-rebate__how-it-works .page-promotions-daily-rebate__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions-daily-rebate__step {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-promotions-daily-rebate__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #003366;
  color: #FFCC00;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #FFCC00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions-daily-rebate__step p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
}

.page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li {
  counter-increment: guide-counter;
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 70px;
}

.page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #FFCC00;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li strong {
  color: #003366;
  font-size: 1.2em;
}

.page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li p {
  margin-top: 10px;
  line-height: 1.7;
  color: #555555;
}

.page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li a:hover {
  color: #FFCC00;
}

.page-promotions-daily-rebate__note {
  background-color: #fff3e0;
  border-left: 5px solid #FFCC00;
  padding: 15px 20px;
  margin-top: 30px;
  border-radius: 5px;
  color: #663300;
  font-style: italic;
}

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

.page-promotions-daily-rebate__benefit-item {
  background-color: #003366;
  color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.page-promotions-daily-rebate__benefit-item:hover {
  background-color: #1a4f80;
}

.page-promotions-daily-rebate__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(70%) sepia(80%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Makes icon golden */
}

.page-promotions-daily-rebate__benefit-item h3 {
  font-size: 1.6em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-daily-rebate__benefit-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-promotions-daily-rebate__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
}

.page-promotions-daily-rebate__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.page-promotions-daily-rebate__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-daily-rebate__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-promotions-daily-rebate__faq-answer {
  padding: 0 25px 20px;
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  display: none;
}

.page-promotions-daily-rebate__faq-answer p {
  margin: 0;
}

.page-promotions-daily-rebate__final-cta {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #ffffff;
  text-align: center;
}

.page-promotions-daily-rebate__final-cta .page-promotions-daily-rebate__section-title {
  color: #ffffff;
}

.page-promotions-daily-rebate__final-cta .page-promotions-daily-rebate__section-title::after {
  background-color: #ffffff;
}

.page-promotions-daily-rebate__final-cta p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-rebate__main-title {
    font-size: 2.8em;
  }
  .page-promotions-daily-rebate__subtitle {
    font-size: 1.3em;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-rebate__grid, .page-promotions-daily-rebate__steps-grid, .page-promotions-daily-rebate__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-rebate__hero-section {
    padding: 80px 15px;
  }
  .page-promotions-daily-rebate__main-title {
    font-size: 2.2em;
  }
  .page-promotions-daily-rebate__subtitle {
    font-size: 1.1em;
  }
  .page-promotions-daily-rebate__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-daily-rebate__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-daily-rebate__section {
    padding: 40px 0;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-rebate__card, .page-promotions-daily-rebate__step, .page-promotions-daily-rebate__benefit-item {
    padding: 20px;
  }
  .page-promotions-daily-rebate__card-title {
    font-size: 1.5em;
  }
  .page-promotions-daily-rebate__step-title {
    font-size: 1.3em;
  }
  .page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li {
    padding-left: 60px;
  }
  .page-promotions-daily-rebate__guide .page-promotions-daily-rebate__numbered-list li::before {
    left: 15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-rebate__main-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-rebate__subtitle {
    font-size: 1em;
  }
  .page-promotions-daily-rebate__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 1.5em;
  }
  .page-promotions-daily-rebate__grid, .page-promotions-daily-rebate__steps-grid, .page-promotions-daily-rebate__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-rebate__card-image {
    height: 150px;
  }
  .page-promotions-daily-rebate__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-daily-rebate__faq-question::after {
    right: 20px;
  }
  .page-promotions-daily-rebate__faq-answer {
    padding: 0 20px 15px;
  }
}