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

.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    color: #f5dcbd; /* Light text for dark background */
    background-color: #0A2342; /* Main dark blue background */
}

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

/* Hero Section */
.page-promotions-daily-cashback .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-cashback .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.page-promotions-daily-cashback .hero-content {
    max-width: 800px;
    text-align: center;
}

.page-promotions-daily-cashback .hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for highlight */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-cashback .hero-subtitle {
    font-size: 1.4em;
    color: #f5dcbd;
    margin-bottom: 40px;
    line-height: 1.6;
}

.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: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
    cursor: pointer;
}

.page-promotions-daily-cashback .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-promotions-daily-cashback .btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
}

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

.page-promotions-daily-cashback .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-promotions-daily-cashback .hero-image-wrapper {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
}

.page-promotions-daily-cashback .hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-promotions-daily-cashback section {
    padding: 80px 0;
}

.page-promotions-daily-cashback .section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.page-promotions-daily-cashback p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #f5dcbd;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-daily-cashback strong {
    color: #FFD700;
}

/* Introduction Section */
.page-promotions-daily-cashback .introduction-section {
    background-color: #1A3A60;
}

/* How It Works Section */
.page-promotions-daily-cashback .how-it-works-section {
    background-color: #0A2342;
}

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

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

.page-promotions-daily-cashback .feature-card:hover {
    transform: translateY(-10px);
}

.page-promotions-daily-cashback .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-daily-cashback .note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #ccc;
}

/* Benefits Section */
.page-promotions-daily-cashback .benefits-section {
    background-color: #1A3A60;
}

.page-promotions-daily-cashback .content-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.page-promotions-daily-cashback .text-content {
    flex: 1;
    min-width: 300px;
}

.page-promotions-daily-cashback .text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-daily-cashback .text-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.95"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f5dcbd;
}

.page-promotions-daily-cashback .image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

/* Terms & Conditions Section */
.page-promotions-daily-cashback .terms-conditions-section {
    background-color: #0A2342;
}

.page-promotions-daily-cashback .accordion {
    margin-top: 40px;
}

.page-promotions-daily-cashback .accordion-item {
    background-color: #1A3A60;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-cashback .accordion-header {
    padding: 20px;
    font-size: 1.3em;
    color: #FFD700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-promotions-daily-cashback .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    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 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-daily-cashback .accordion-content p {
    color: #f5dcbd;
    padding-bottom: 20px;
    margin-top: 0;
}

.page-promotions-daily-cashback .accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
    padding-bottom: 20px;
}

.page-promotions-daily-cashback .call-to-action {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
}

.page-promotions-daily-cashback .call-to-action a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-daily-cashback .call-to-action a:hover {
    color: #e6c200;
}

/* CTA Section */
.page-promotions-daily-cashback .cta-section {
    background-color: #1A3A60;
    text-align: center;
}

.page-promotions-daily-cashback .cta-section p {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-daily-cashback .cta-buttons {
    margin-top: 30px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-cashback .hero-title {
        font-size: 3em;
    }
    .page-promotions-daily-cashback .hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback .content-grid {
        flex-direction: column;
    }
    .page-promotions-daily-cashback .text-content, .page-promotions-daily-cashback .image-content {
        flex: none;
        width: 100%;
    }
    .page-promotions-daily-cashback .hero-section .container {
      flex-direction: column;
    }
    .page-promotions-daily-cashback .hero-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-cashback .hero-section {
        padding: 80px 0;
        min-height: 500px;
    }
    .page-promotions-daily-cashback .hero-title {
        font-size: 2.5em;
    }
    .page-promotions-daily-cashback .hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-cashback .btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-promotions-daily-cashback section {
        padding: 60px 0;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-promotions-daily-cashback .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-cashback .card-title {
        font-size: 1.4em;
    }
    .page-promotions-daily-cashback .accordion-header {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-promotions-daily-cashback .accordion-content p {
        font-size: 1em;
    }
    .page-promotions-daily-cashback .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@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 .btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-cashback .text-content ul li {
        font-size: 1em;
    }
    .page-promotions-daily-cashback .accordion-header {
        font-size: 1em;
    }
    .page-promotions-daily-cashback .call-to-action {
        font-size: 1em;
    }
    .page-promotions-daily-cashback .btn-large {
        width: 100%;
        max-width: 280px;
    }
}