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

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

.page-promotions-daily-rewards__hero-section {
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Adjusted for better contrast with gold */
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

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

.page-promotions-daily-rewards__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-promotions-daily-rewards__hero-title .highlight {
  color: #FFD700; /* Gold color */
}

.page-promotions-daily-rewards__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-daily-rewards__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0047AB; /* Dark blue */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rewards__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-daily-rewards__hero-image-wrapper {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin-top: 20px;
}

.page-promotions-daily-rewards__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rewards__section-title {
  font-size: 2.5em;
  color: #0047AB;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

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

.page-promotions-daily-rewards__section-description {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions-daily-rewards__intro-section, 
.page-promotions-daily-rewards__details-section, 
.page-promotions-daily-rewards__how-to-claim-section, 
.page-promotions-daily-rewards__benefits-section, 
.page-promotions-daily-rewards__faq-section, 
.page-promotions-daily-rewards__final-cta-section {
  padding: 40px 0;
}

.page-promotions-daily-rewards__details-section {
  background-color: #eef4f9;
}

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

.page-promotions-daily-rewards__detail-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-rewards__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-rewards__detail-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-daily-rewards__card-title {
  font-size: 1.6em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-promotions-daily-rewards__detail-card p {
  color: #666;
  font-size: 1em;
}

.page-promotions-daily-rewards__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

.page-promotions-daily-rewards__how-to-claim-section {
  background-color: #fff;
}

.page-promotions-daily-rewards__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-daily-rewards__step-item {
  flex: 1 1 300px;
  text-align: center;
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-promotions-daily-rewards__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0047AB;
  color: #fff;
  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 #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-daily-rewards__step-item p {
  color: #666;
}

.page-promotions-daily-rewards__step-item a {
  color: #0047AB;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-rewards__step-item a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions-daily-rewards__call-to-action-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-daily-rewards__button-primary {
  display: inline-block;
  background-color: #0047AB;
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rewards__button-primary:hover {
  background-color: #003a8d;
  transform: translateY(-3px);
}

.page-promotions-daily-rewards__benefits-section {
  background-color: #f0f8ff;
}

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

.page-promotions-daily-rewards__benefit-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promotions-daily-rewards__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-promotions-daily-rewards__benefit-item h3 {
  font-size: 1.4em;
  color: #0047AB;
  margin-bottom: 10px;
}

.page-promotions-daily-rewards__benefit-item p {
  color: #666;
}

.page-promotions-daily-rewards__faq-section {
  background-color: #fff;
}

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

.page-promotions-daily-rewards__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-rewards__accordion-header {
  background-color: #0047AB;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-daily-rewards__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-daily-rewards__accordion-header.active {
  background-color: #003a8d;
}

.page-promotions-daily-rewards__accordion-header.active::after {
  transform: rotate(45deg);
}

.page-promotions-daily-rewards__accordion-content {
  padding: 0 25px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-daily-rewards__accordion-content.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 25px;
}

.page-promotions-daily-rewards__accordion-content p {
  color: #555;
}

.page-promotions-daily-rewards__final-cta-section {
  background-color: #0047AB;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-promotions-daily-rewards__final-cta-section .page-promotions-daily-rewards__section-title {
  color: #FFD700;
}

.page-promotions-daily-rewards__final-cta-section .page-promotions-daily-rewards__section-description {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions-daily-rewards__final-cta-section a {
  margin: 0 10px;
}

.page-promotions-daily-rewards__button-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rewards__button-secondary:hover {
  background-color: #FFD700;
  color: #0047AB;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-rewards__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-daily-rewards__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-daily-rewards__hero-section {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-promotions-daily-rewards__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-promotions-daily-rewards__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-rewards__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-rewards__steps {
    flex-direction: column;
  }
  .page-promotions-daily-rewards__step-item {
    flex: none;
    width: 100%;
  }
  .page-promotions-daily-rewards__final-cta-section a {
    display: block;
    margin: 15px auto;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-rewards__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-daily-rewards__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-daily-rewards__hero-button, 
  .page-promotions-daily-rewards__button-primary, 
  .page-promotions-daily-rewards__button-secondary {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions-daily-rewards__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-rewards__detail-card, 
  .page-promotions-daily-rewards__benefit-item {
    padding: 20px;
  }
  .page-promotions-daily-rewards__card-title {
    font-size: 1.3em;
  }
  .page-promotions-daily-rewards__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-daily-rewards__accordion-content.active {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-rewards__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-rewards__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-daily-rewards__hero-button, 
  .page-promotions-daily-rewards__button-primary, 
  .page-promotions-daily-rewards__button-secondary {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promotions-daily-rewards__section-title {
    font-size: 1.6em;
  }
  .page-promotions-daily-rewards__container {
    padding: 0 15px;
  }
  .page-promotions-daily-rewards__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
}