/* style/promotions-daily-offers.css */
.page-promotions-daily-offers {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-promotions-daily-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-daily-offers__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-daily-offers__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffc107; /* Auxiliary color for titles */
  font-weight: bold;
}

.page-promotions-daily-offers__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promotions-daily-offers__inline-link {
  color: #ffc107;
  text-decoration: underline;
}

.page-promotions-daily-offers__inline-link:hover {
  color: #ffffff;
}

.page-promotions-daily-offers__text-center {
  text-align: center;
}

/* Hero Section */
.page-promotions-daily-offers__hero-section {
  position: relative;
  padding: 120px 0 60px 0; /* Adjusted padding-top for header offset */
  background-color: #007bff; /* Primary brand color for hero background */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
}

.page-promotions-daily-offers__hero-content {
  z-index: 1;
  max-width: 800px;
  text-align: center;
  padding: 20px;
}

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

.page-promotions-daily-offers__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-promotions-daily-offers__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

/* Buttons */
.page-promotions-daily-offers__btn-primary,
.page-promotions-daily-offers__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-daily-offers__btn-primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

.page-promotions-daily-offers__btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

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

.page-promotions-daily-offers__btn-secondary:hover {
  background-color: #ffc107;
  color: #007bff;
}

/* Offer Types Section */
.page-promotions-daily-offers__offer-types-section {
  background-color: rgba(0, 123, 255, 0.1); /* Light transparent primary color background */
  padding: 80px 0;
}

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

.page-promotions-daily-offers__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card background */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-offers__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-offers__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

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

.page-promotions-daily-offers__card-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

/* How to Claim Section */
.page-promotions-daily-offers__how-to-claim-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-promotions-daily-offers__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions-daily-offers__step-icon {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-promotions-daily-offers__step-title {
  font-size: 1.5em;
  color: #ffc107;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-offers__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Terms Section */
.page-promotions-daily-offers__terms-section {
  background-color: #007bff;
  padding: 80px 0;
  color: #ffffff;
}

.page-promotions-daily-offers__terms-section .page-promotions-daily-offers__section-title {
  color: #ffc107;
}

.page-promotions-daily-offers__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-daily-offers__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.5;
}

.page-promotions-daily-offers__list-item strong {
  color: #ffc107;
}

/* Why Choose Section */
.page-promotions-daily-offers__why-choose-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

.page-promotions-daily-offers__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
}

.page-promotions-daily-offers__feature-icon {
  width: 100px; /* Min size 200x200px, but display smaller for icons */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-daily-offers__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-promotions-daily-offers__faq-section {
  background-color: #0d0d0d; /* Darker background for contrast */
  padding: 80px 0;
}

.page-promotions-daily-offers__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promotions-daily-offers__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-daily-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(0, 123, 255, 0.2); /* Slightly transparent primary color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-promotions-daily-offers__faq-question:hover {
  background-color: rgba(0, 123, 255, 0.4);
}

.page-promotions-daily-offers__faq-title {
  font-size: 1.2em;
  color: #ffc107;
  margin: 0;
}

.page-promotions-daily-offers__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-promotions-daily-offers__faq-item.active .page-promotions-daily-offers__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-daily-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.02);
}

.page-promotions-daily-offers__faq-item.active .page-promotions-daily-offers__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px;
}

.page-promotions-daily-offers__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* CTA Section */
.page-promotions-daily-offers__cta-section {
  background-color: #007bff;
  padding: 80px 0;
  color: #ffffff;
}

.page-promotions-daily-offers__cta-section .page-promotions-daily-offers__section-title {
  color: #ffc107;
}

.page-promotions-daily-offers__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-offers__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-daily-offers__section-title {
    font-size: 2em;
  }

  .page-promotions-daily-offers__grid,
  .page-promotions-daily-offers__steps-grid,
  .page-promotions-daily-offers__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-offers__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  
  .page-promotions-daily-offers__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-daily-offers__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-daily-offers__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-daily-offers__btn-primary,
  .page-promotions-daily-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-daily-offers__section {
    padding: 40px 0;
  }

  .page-promotions-daily-offers__section-title {
    font-size: 1.8em;
  }

  .page-promotions-daily-offers__paragraph {
    font-size: 1em;
  }

  /* Image responsiveness */
  .page-promotions-daily-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-offers__section,
  .page-promotions-daily-offers__card,
  .page-promotions-daily-offers__container,
  .page-promotions-daily-offers__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-promotions-daily-offers__card-image {
    height: auto; /* Allow height to adjust */
  }

  .page-promotions-daily-offers__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-offers__faq-list {
    padding: 0 15px;
  }

  .page-promotions-daily-offers__faq-question {
    padding: 15px;
  }

  .page-promotions-daily-offers__faq-answer {
    padding: 0 15px;
  }

  .page-promotions-daily-offers__faq-item.active .page-promotions-daily-offers__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-offers__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-daily-offers__section-title {
    font-size: 1.5em;
  }

  .page-promotions-daily-offers__grid,
  .page-promotions-daily-offers__steps-grid,
  .page-promotions-daily-offers__features-grid {
    grid-template-columns: 1fr;
  }
}