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

/* General Styles for the Page */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

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

.page-promotions-daily-rebate__section-title {
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-daily-rebate__subsection-title {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions-daily-rebate__list {
    list-style: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}

.page-promotions-daily-rebate__list li {
    margin-bottom: 10px;
}

/* Hero Section */
.page-promotions-daily-rebate__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #364F6B 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-rebate__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.page-promotions-daily-rebate__hero-btn,
.page-promotions-daily-rebate__btn-primary,
.page-promotions-daily-rebate__btn-secondary {
    display: inline-block;
    background-color: #FFD700; /* Accent color for buttons */
    color: #0A192F; /* Dark text for accent background */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-daily-rebate__hero-btn:hover,
.page-promotions-daily-rebate__btn-primary:hover {
    background-color: #e6c200; /* Slightly darker accent on hover */
    transform: translateY(-3px);
}

.page-promotions-daily-rebate__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions-daily-rebate__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

/* Intro Section */
.page-promotions-daily-rebate__intro-section {
    padding: 60px 0;
    background-color: #1A2A3F;
}

.page-promotions-daily-rebate__intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-promotions-daily-rebate__intro-text p {
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__intro-image-wrapper {
    text-align: center;
}

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

/* Benefits Section */
.page-promotions-daily-rebate__benefits-section {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-promotions-daily-rebate__benefit-card {
    background-color: #1A2A3F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-daily-rebate__benefit-card:hover {
    transform: translateY(-5px);
    background-color: #2A3B50;
}

.page-promotions-daily-rebate__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-promotions-daily-rebate__benefit-card p {
    font-size: 0.95em;
    color: #B0B0B0;
}

/* How It Works Section */
.page-promotions-daily-rebate__how-it-works-section {
    padding: 80px 0;
    background-color: #1A2A3F;
}

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

.page-promotions-daily-rebate__step-card {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-rebate__step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #FFD700; /* Accent color */
    color: #0A192F; /* Dark text */
    font-size: 2.5em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: rotate(-15deg);
}

.page-promotions-daily-rebate__step-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__step-card p {
    color: #B0B0B0;
}

.page-promotions-daily-rebate__cta-bottom {
    text-align: center;
    margin-top: 40px;
}

.page-promotions-daily-rebate__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #FFD700;
}

/* Details Section */
.page-promotions-daily-rebate__details-section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-promotions-daily-rebate__details-section p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

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

/* FAQ Section */
.page-promotions-daily-rebate__faq-section {
    padding: 80px 0;
    background-color: #1A2A3F;
}

.page-promotions-daily-rebate__faq-item {
    background-color: #0A192F;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__faq-question {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-promotions-daily-rebate__faq-answer {
    color: #B0B0B0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-daily-rebate__faq-answer.show {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Final CTA Section */
.page-promotions-daily-rebate__cta-final-section {
    background: linear-gradient(45deg, #0A192F, #364F6B);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-promotions-daily-rebate__cta-final-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-daily-rebate__cta-final-section .page-promotions-daily-rebate__section-title {
    color: #FFD700;
}

.page-promotions-daily-rebate__cta-final-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

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

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

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

    .page-promotions-daily-rebate__intro-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-rebate__intro-image-wrapper {
        order: -1; /* Image first on mobile */
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate__hero-section {
        padding: 80px 0;
    }

    .page-promotions-daily-rebate__hero-title {
        font-size: 2.2em;
    }

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

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

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

    .page-promotions-daily-rebate__benefits-grid,
    .page-promotions-daily-rebate__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-rebate__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-daily-rebate__btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

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

    .page-promotions-daily-rebate__hero-btn,
    .page-promotions-daily-rebate__btn-primary,
    .page-promotions-daily-rebate__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-promotions-daily-rebate__faq-question {
        font-size: 1.2em;
    }

    .page-promotions-daily-rebate__list {
        padding-left: 20px;
    }
}