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

/* General Styles for the page */
.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-daily-cashback-section-title {
    font-size: 2.5em;
    color: #0086b3; /* Darker shade of secondary color for contrast */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-cashback-section-title .highlight {
    color: #b39700; /* Darker shade of primary color for contrast */
}

.page-promotions-daily-cashback-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-cashback-text-content {
    font-size: 1.1em;
    color: #444;
    text-align: center;
    margin-bottom: 30px;
}

/* Buttons */
.page-promotions-daily-cashback-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-promotions-daily-cashback-btn-primary {
    background-color: #FFD700;
    color: #333;
    border: 2px solid #FFD700;
}

.page-promotions-daily-cashback-btn-primary:hover {
    background-color: #b39700; /* Darker gold */
    border-color: #b39700;
    color: #fff;
}

.page-promotions-daily-cashback-btn-secondary {
    background-color: #00BFFF;
    color: #fff;
    border: 2px solid #00BFFF;
}

.page-promotions-daily-cashback-btn-secondary:hover {
    background-color: #0086b3; /* Darker blue */
    border-color: #0086b3;
}

.page-promotions-daily-cashback-btn-outline {
    background-color: transparent;
    color: #00BFFF;
    border: 2px solid #00BFFF;
}

.page-promotions-daily-cashback-btn-outline:hover {
    background-color: #00BFFF;
    color: #fff;
}

.page-promotions-daily-cashback .large-btn {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions-daily-cashback-hero-section {
    background: linear-gradient(135deg, #FFD700, #00BFFF);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.page-promotions-daily-cashback-hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions-daily-cashback-hero-title .highlight {
    color: #333;
}

.page-promotions-daily-cashback-hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

/* Intro Section */
.page-promotions-daily-cashback-intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-promotions-daily-cashback-features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-promotions-daily-cashback-feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-cashback-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-cashback-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-daily-cashback-feature-item h3 {
    font-size: 1.8em;
    color: #005f80; /* Darker blue for headings */
    margin-bottom: 15px;
}

.page-promotions-daily-cashback-feature-item p {
    font-size: 1em;
    color: #555;
}

/* How It Works Section */
.page-promotions-daily-cashback-how-it-works {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-promotions-daily-cashback-step-item {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-promotions-daily-cashback-step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #00BFFF; /* Secondary color border */
    box-shadow: 0 0 0 5px rgba(0, 191, 255, 0.3);
}

.page-promotions-daily-cashback-step-item h3 {
    font-size: 2em;
    color: #005f80;
    margin-bottom: 15px;
}

.page-promotions-daily-cashback-step-item p {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 25px;
}

.page-promotions-daily-cashback-step-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    object-fit: cover;
}

/* Terms & Conditions Section */
.page-promotions-daily-cashback-terms-conditions {
    padding: 80px 0;
    background-color: #e6f7ff; /* Lighter blue background */
}

.page-promotions-daily-cashback-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-daily-cashback-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444;
    position: relative;
    padding-left: 45px;
}

.page-promotions-daily-cashback-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

/* FAQ Section */
.page-promotions-daily-cashback-faq {
    padding: 80px 0;
    background-color: #fff;
}

.page-promotions-daily-cashback-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-daily-cashback-accordion-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.page-promotions-daily-cashback-accordion-header:hover {
    background-color: #f0f0f0;
}

.page-promotions-daily-cashback-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-daily-cashback-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

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

.page-promotions-daily-cashback-accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
}

/* CTA Bottom Section */
.page-promotions-daily-cashback-cta-bottom {
    background: linear-gradient(45deg, #00BFFF, #FFD700);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-promotions-daily-cashback-cta-title {
    font-size: 3em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-promotions-daily-cashback-cta-title .highlight {
    color: #333;
}

.page-promotions-daily-cashback-cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-promotions-daily-cashback-cta-bottom .page-promotions-daily-cashback-btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-cashback-hero-title {
        font-size: 3em;
    }
    .page-promotions-daily-cashback-hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-daily-cashback-section-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback-features {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-cashback-feature-item {
        max-width: 80%;
    }
    .page-promotions-daily-cashback-steps {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-cashback-step-item {
        max-width: 80%;
        padding-top: 50px;
    }
    .page-promotions-daily-cashback-step-number {
        top: -20px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-promotions-daily-cashback-cta-title {
        font-size: 2.5em;
    }
    .page-promotions-daily-cashback-cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-cashback-hero-section,
    .page-promotions-daily-cashback-intro-section,
    .page-promotions-daily-cashback-how-it-works,
    .page-promotions-daily-cashback-terms-conditions,
    .page-promotions-daily-cashback-faq,
    .page-promotions-daily-cashback-cta-bottom {
        padding: 60px 0;
    }
    .page-promotions-daily-cashback-hero-title {
        font-size: 2.5em;
    }
    .page-promotions-daily-cashback-hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-cashback-section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-cashback-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-cashback .large-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-daily-cashback-cta-bottom .page-promotions-daily-cashback-btn {
        margin: 10px auto;
        display: block;
        max-width: 300px;
    }
    .page-promotions-daily-cashback-feature-item,
    .page-promotions-daily-cashback-step-item {
        max-width: 95%;
    }
    .page-promotions-daily-cashback-list li {
        padding: 15px 15px 15px 40px;
        font-size: 0.95em;
    }
    .page-promotions-daily-cashback-accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-daily-cashback-accordion-content p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-cashback-hero-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback-hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-daily-cashback-section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-cashback-cta-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback-cta-text {
        font-size: 1em;
    }
}