/* style/promo-daily-offers.css */
.page-promo-daily-offers {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f8f8; /* Slightly off-white background for the page content */
}

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

/* Header offset for the first visual content section */
.page-promo-daily-offers__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    position: relative;
    overflow: hidden; /* For image */
    background-color: #0A2463; /* Deep blue background for hero */
    color: #ffffff;
    text-align: center;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

.page-promo-daily-offers__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.5); /* Darken image to make text readable, NOT changing color hue/saturation */
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-promo-daily-offers__hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promo-daily-offers__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B342; /* Gold for main title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo-daily-offers__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0; /* Light text for description */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promo-daily-offers__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promo-daily-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;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-promo-daily-offers__button--primary {
    background-color: #E0B342; /* Gold button */
    color: #0A2463; /* Deep blue text */
    border: 2px solid #E0B342;
}

.page-promo-daily-offers__button--primary:hover {
    background-color: #f5c750;
    transform: translateY(-2px);
}

.page-promo-daily-offers__button--secondary {
    background-color: transparent;
    color: #E0B342; /* Gold text */
    border: 2px solid #E0B342;
}

.page-promo-daily-offers__button--secondary:hover {
    background-color: rgba(224, 179, 66, 0.1);
    transform: translateY(-2px);
}

.page-promo-daily-offers__introduction,
.page-promo-daily-offers__offer-categories,
.page-promo-daily-offers__how-it-works,
.page-promo-daily-offers__why-choose-us,
.page-promo-daily-offers__faq,
.page-promo-daily-offers__call-to-action {
    padding: 60px 0;
    background-color: #ffffff; /* White background for sections */
    margin-bottom: 20px; /* Space between sections */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-promo-daily-offers__introduction .page-promo-daily-offers__container,
.page-promo-daily-offers__offer-categories .page-promo-daily-offers__container,
.page-promo-daily-offers__how-it-works .page-promo-daily-offers__container,
.page-promo-daily-offers__why-choose-us .page-promo-daily-offers__container,
.page-promo-daily-offers__faq .page-promo-daily-offers__container,
.page-promo-daily-offers__call-to-action .page-promo-daily-offers__container {
    padding: 40px; /* Inner padding for containers */
}

.page-promo-daily-offers__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Deep blue for section titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promo-daily-offers__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B342; /* Gold underline */
    border-radius: 2px;
}

.page-promo-daily-offers__section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #555555;
}

.page-promo-daily-offers__offer-categories {
    background-color: #f0f4f8; /* Light blue-grey background */
}

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

.page-promo-daily-offers__category-card {
    background-color: #ffffff;
    border-radius: 10px;
    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-promo-daily-offers__category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-offers__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-promo-daily-offers__card-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-promo-daily-offers__card-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promo-daily-offers__card-title a:hover {
    color: #E0B342;
}

.page-promo-daily-offers__card-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 25px;
    text-align: justify;
}

.page-promo-daily-offers__how-it-works {
    background-color: #ffffff;
}

.page-promo-daily-offers__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promo-daily-offers__step-item {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #E0B342; /* Gold accent */
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo-daily-offers__step-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-promo-daily-offers__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 15px;
    text-align: justify;
}

.page-promo-daily-offers__why-choose-us {
    background-color: #0A2463; /* Deep blue background */
    color: #ffffff;
}

.page-promo-daily-offers__why-choose-us .page-promo-daily-offers__section-title {
    color: #E0B342; /* Gold title on deep blue background */
}

.page-promo-daily-offers__why-choose-us .page-promo-daily-offers__section-title::after {
    background-color: #ffffff; /* White underline */
}

.page-promo-daily-offers__why-choose-us .page-promo-daily-offers__section-text {
    color: #f0f0f0;
}

.page-promo-daily-offers__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promo-daily-offers__benefit-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white card */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-promo-daily-offers__benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-promo-daily-offers__benefit-title {
    font-size: 1.5em;
    color: #E0B342; /* Gold title */
    margin-bottom: 10px;
}

.page-promo-daily-offers__benefit-description {
    font-size: 1em;
    color: #e0e0e0;
    text-align: justify;
}

.page-promo-daily-offers__button--cta {
    margin-top: 40px;
    background-color: #E0B342;
    color: #0A2463;
    border: 2px solid #E0B342;
}

.page-promo-daily-offers__button--cta:hover {
    background-color: #f5c750;
    transform: translateY(-2px);
}

.page-promo-daily-offers__faq {
    background-color: #ffffff;
}

.page-promo-daily-offers__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promo-daily-offers__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promo-daily-offers__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #E0B342;
    transition: transform 0.3s ease;
}

.page-promo-daily-offers__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promo-daily-offers__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    text-align: justify;
}

.page-promo-daily-offers__call-to-action {
    text-align: center;
    background-color: #0A2463;
    color: #ffffff;
}

.page-promo-daily-offers__call-to-action .page-promo-daily-offers__section-title {
    color: #E0B342;
}

.page-promo-daily-offers__call-to-action .page-promo-daily-offers__section-title::after {
    background-color: #ffffff;
}

.page-promo-daily-offers__call-to-action .page-promo-daily-offers__section-text {
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promo-daily-offers__button--final-cta,
.page-promo-daily-offers__button--final-cta-secondary {
    margin: 10px 15px;
}

.page-promo-daily-offers__button--final-cta {
    background-color: #E0B342;
    color: #0A2463;
    border: 2px solid #E0B342;
}

.page-promo-daily-offers__button--final-cta:hover {
    background-color: #f5c750;
    transform: translateY(-2px);
}

.page-promo-daily-offers__button--final-cta-secondary {
    background-color: transparent;
    color: #E0B342;
    border: 2px solid #E0B342;
}

.page-promo-daily-offers__button--final-cta-secondary:hover {
    background-color: rgba(224, 179, 66, 0.1);
    transform: translateY(-2px);
}

.text-highlight {
    color: #E0B342; /* Highlight important keywords */
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo-daily-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promo-daily-offers__hero-description {
        font-size: 1.2em;
    }
    .page-promo-daily-offers__section-title {
        font-size: 2em;
    }
    .page-promo-daily-offers__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo-daily-offers__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
        padding-bottom: 40px;
    }
    .page-promo-daily-offers__hero-content {
        padding: 40px 15px;
    }
    .page-promo-daily-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promo-daily-offers__hero-description {
        font-size: 1em;
    }
    .page-promo-daily-offers__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo-daily-offers__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-promo-daily-offers__introduction,
    .page-promo-daily-offers__offer-categories,
    .page-promo-daily-offers__how-it-works,
    .page-promo-daily-offers__why-choose-us,
    .page-promo-daily-offers__faq,
    .page-promo-daily-offers__call-to-action {
        padding: 40px 0;
        margin-bottom: 15px;
        border-radius: 0; /* No border-radius on mobile for full width look */
    }
    .page-promo-daily-offers__introduction .page-promo-daily-offers__container,
    .page-promo-daily-offers__offer-categories .page-promo-daily-offers__container,
    .page-promo-daily-offers__how-it-works .page-promo-daily-offers__container,
    .page-promo-daily-offers__why-choose-us .page-promo-daily-offers__container,
    .page-promo-daily-offers__faq .page-promo-daily-offers__container,
    .page-promo-daily-offers__call-to-action .page-promo-daily-offers__container {
        padding: 20px 15px;
    }
    .page-promo-daily-offers__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-promo-daily-offers__section-text {
        font-size: 0.95em;
    }
    .page-promo-daily-offers__category-card,
    .page-promo-daily-offers__benefit-item,
    .page-promo-daily-offers__step-item,
    .page-promo-daily-offers__faq-item {
        padding: 20px;
    }
    .page-promo-daily-offers__card-image {
        height: 200px; /* Adjust height for mobile */
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }
    .page-promo-daily-offers__button--cta,
    .page-promo-daily-offers__button--final-cta,
    .page-promo-daily-offers__button--final-cta-secondary {
        width: 100%;
        max-width: none; /* Allow full width on mobile */
        margin: 10px 0;
    }

    /* CRITICAL: Mobile content images must not overflow */
    .page-promo-daily-offers img {
        max-width: 100%;
        height: auto;
    }
    .page-promo-daily-offers__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-promo-daily-offers__card-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promo-daily-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promo-daily-offers__section-title {
        font-size: 1.5em;
    }
    .page-promo-daily-offers__card-title {
        font-size: 1.4em;
    }
    .page-promo-daily-offers__step-title {
        font-size: 1.3em;
    }
    .page-promo-daily-offers__benefit-title {
        font-size: 1.3em;
    }
    .page-promo-daily-offers__faq-question {
        font-size: 1.1em;
    }
}

/* Ensure image width/height attributes are respected for CLS and responsive via CSS */
/* All content images must have min 200px display width/height */
.page-promo-daily-offers__hero-image,
.page-promo-daily-offers__card-image {
    min-width: 200px;
    min-height: 200px;
}