/* style/promotions-cashback.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-dark: #222222;
    --border-color: #DDDDDD;
}

.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-promotions-cashback__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-cashback__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-cashback__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-promotions-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-promotions-cashback__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-promotions-cashback__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
}

.page-promotions-cashback__btn-primary,
.page-promotions-cashback__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
}

.page-promotions-cashback__btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.page-promotions-cashback__btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-3px);
}

.page-promotions-cashback__btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-promotions-cashback__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-promotions-cashback__section {
    padding: 60px 0;
}

.page-promotions-cashback__section:nth-of-type(even) {
    background-color: var(--bg-light);
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-cashback__intro p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
}

.page-promotions-cashback__intro p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-cashback__intro p a:hover {
    text-decoration: underline;
}

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

.page-promotions-cashback__card {
    background-color: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-cashback__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-cashback__card-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-cashback__card p {
    color: #555;
    font-size: 1em;
}

.page-promotions-cashback__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

.page-promotions-cashback__step {
    background-color: var(--text-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: center;
}

.page-promotions-cashback__step-number {
    counter-increment: step-counter;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--text-light);
}

.page-promotions-cashback__step h3 {
    margin-top: 30px;
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions-cashback__step p {
    color: #666;
}

.page-promotions-cashback__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
    font-size: 0.95em;
}

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

.page-promotions-cashback__benefit-item {
    text-align: center;
    background-color: var(--text-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-promotions-cashback__benefit-item:hover {
    transform: translateY(-5px);
}

.page-promotions-cashback__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-promotions-cashback__benefit-item h4 {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-promotions-cashback__benefit-item p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions-cashback__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-cashback__accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.page-promotions-cashback__accordion-header {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback__accordion-header:hover {
    background-color: #3f5872;
}

.page-promotions-cashback__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions-cashback__accordion-content {
    padding: 0 25px;
    background-color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-cashback__accordion-content p {
    padding: 15px 0;
    color: #555;
    font-size: 1em;
}

.page-promotions-cashback__cta {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.page-promotions-cashback__cta .page-promotions-cashback__section-title {
    color: var(--text-light);
}

.page-promotions-cashback__cta .page-promotions-cashback__section-title::after {
    background-color: var(--primary-color);
}

.page-promotions-cashback__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback__cta .large-btn {
    padding: 18px 40px;
    font-size: 1.25em;
    margin-bottom: 20px;
}

.page-promotions-cashback .highlight {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-cashback__section-title {
        font-size: 2em;
    }
    .page-promotions-cashback__grid, .page-promotions-cashback__steps, .page-promotions-cashback__benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero {
        padding: 60px 0;
    }
    .page-promotions-cashback__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-cashback__btn-primary, .page-promotions-cashback__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-cashback__section {
        padding: 40px 0;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__card, .page-promotions-cashback__step, .page-promotions-cashback__benefit-item {
        padding: 25px;
    }
    .page-promotions-cashback__accordion-header {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-promotions-cashback__cta .large-btn {
        padding: 15px 30px;
        font-size: 1.15em;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-cashback__btn-primary, .page-promotions-cashback__btn-secondary {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: -15px;
    }
    .page-promotions-cashback__accordion-header {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions-cashback__cta p {
        font-size: 1em;
    }
}