/* style/promotions-daily-weekly-benefits.css */

:root {
  --win550-green-primary: #11A84E;
  --win550-green-secondary: #22C768;
  --win550-bg-dark: #08160F;
  --win550-card-bg: #11271B;
  --win550-text-main: #F2FFF6;
  --win550-text-secondary: #A7D9B8;
  --win550-border: #2E7A4E;
  --win550-glow: #57E38D;
  --win550-gold: #F2C14E;
  --win550-divider: #1E3A2A;
  --win550-deep-green: #0A4B2C;
  --win550-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-promotions-daily-weekly-benefits {
  background-color: var(--win550-bg-dark);
  color: var(--win550-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-daily-weekly-benefits__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles header offset, small top padding */
  text-align: center;
  overflow: hidden;
}

.page-promotions-daily-weekly-benefits__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-promotions-daily-weekly-benefits__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-promotions-daily-weekly-benefits__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.page-promotions-daily-weekly-benefits__main-title {
  color: var(--win550-gold);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size constraint */
}

.page-promotions-daily-weekly-benefits__description {
  color: var(--win550-text-main);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.page-promotions-daily-weekly-benefits__btn-primary,
.page-promotions-daily-weekly-benefits__btn-secondary,
.page-promotions-daily-weekly-benefits__btn-small,
.page-promotions-daily-weekly-benefits__card-button,
.page-promotions-daily-weekly-benefits__faq-link,
.page-promotions-daily-weekly-benefits__cta-bottom a {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
}

.page-promotions-daily-weekly-benefits__btn-primary {
  background: var(--win550-btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions-daily-weekly-benefits__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions-daily-weekly-benefits__btn-secondary {
  background-color: transparent;
  color: var(--win550-green-secondary);
  border: 2px solid var(--win550-green-secondary);
}

.page-promotions-daily-weekly-benefits__btn-secondary:hover {
  background-color: var(--win550-green-secondary);
  color: var(--win550-bg-dark);
}

.page-promotions-daily-weekly-benefits__section {
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--win550-divider);
}

.page-promotions-daily-weekly-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-daily-weekly-benefits__section-title {
  color: var(--win550-gold);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-daily-weekly-benefits__section-description {
  color: var(--win550-text-secondary);
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-daily-weekly-benefits__card {
  background-color: var(--win550-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--win550-text-main);
  border: 1px solid var(--win550-border);
}

.page-promotions-daily-weekly-benefits__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-height: 200px; /* Ensure min size */
}

.page-promotions-daily-weekly-benefits__card-title {
  color: var(--win550-gold);
  font-size: 1.5rem;
  padding: 20px 20px 10px 20px;
  font-weight: bold;
}

.page-promotions-daily-weekly-benefits__card-text {
  color: var(--win550-text-secondary);
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-promotions-daily-weekly-benefits__card-button {
  margin: 0 20px 20px 20px;
  padding: 12px 20px;
  background: var(--win550-btn-gradient);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  text-align: center;
}

.page-promotions-daily-weekly-benefits__card-button:hover {
  opacity: 0.9;
}

.page-promotions-daily-weekly-benefits__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions-daily-weekly-benefits__steps-list li {
  background-color: var(--win550-card-bg);
  border: 1px solid var(--win550-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions-daily-weekly-benefits__step-title {
  color: var(--win550-gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-weekly-benefits__step-text {
  color: var(--win550-text-secondary);
  margin-bottom: 15px;
}

.page-promotions-daily-weekly-benefits__btn-small {
  padding: 10px 20px;
  background: var(--win550-deep-green);
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9rem;
}

.page-promotions-daily-weekly-benefits__btn-small:hover {
  background: var(--win550-green-primary);
}

.page-promotions-daily-weekly-benefits__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-promotions-daily-weekly-benefits__benefits-list li {
  background-color: var(--win550-card-bg);
  border: 1px solid var(--win550-border);
  border-radius: 10px;
  padding: 25px;
  color: var(--win550-text-main);
}

.page-promotions-daily-weekly-benefits__benefit-title {
  color: var(--win550-gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-weekly-benefits__benefit-text {
  color: var(--win550-text-secondary);
}

.page-promotions-daily-weekly-benefits__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-daily-weekly-benefits__faq-item {
  background-color: var(--win550-card-bg);
  border: 1px solid var(--win550-border);
  border-radius: 10px;
  margin-bottom: 15px;
  color: var(--win550-text-main);
}

.page-promotions-daily-weekly-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--win550-gold);
  list-style: none;
}

.page-promotions-daily-weekly-benefits__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-weekly-benefits__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--win550-green-secondary);
}

.page-promotions-daily-weekly-benefits__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--win550-text-secondary);
}

.page-promotions-daily-weekly-benefits__faq-answer p {
  margin-bottom: 15px;
}

.page-promotions-daily-weekly-benefits__faq-link {
  color: var(--win550-green-secondary);
  text-decoration: underline;
}

.page-promotions-daily-weekly-benefits__faq-link:hover {
  color: var(--win550-gold);
}

.page-promotions-daily-weekly-benefits__cta-bottom {
  margin-top: 60px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions-daily-weekly-benefits__hero-content {
    max-width: 768px;
  }
  .page-promotions-daily-weekly-benefits__cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-weekly-benefits__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-daily-weekly-benefits__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions-daily-weekly-benefits__description {
    font-size: 1rem;
  }

  .page-promotions-daily-weekly-benefits__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions-daily-weekly-benefits__btn-primary,
  .page-promotions-daily-weekly-benefits__btn-secondary,
  .page-promotions-daily-weekly-benefits__btn-small,
  .page-promotions-daily-weekly-benefits__card-button,
  .page-promotions-daily-weekly-benefits__faq-link,
  .page-promotions-daily-weekly-benefits__cta-bottom a {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-weekly-benefits__section {
    padding: 40px 15px;
  }

  .page-promotions-daily-weekly-benefits__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-promotions-daily-weekly-benefits__container,
  .page-promotions-daily-weekly-benefits__cards-grid,
  .page-promotions-daily-weekly-benefits__steps-list,
  .page-promotions-daily-weekly-benefits__benefits-list,
  .page-promotions-daily-weekly-benefits__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-daily-weekly-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-weekly-benefits__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }

  .page-promotions-daily-weekly-benefits__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-promotions-daily-weekly-benefits__faq-answer {
    padding: 0 20px 15px 20px;
  }
}