/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #2C3E50;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions .highlight {
    color: #C0392B;
    font-weight: bold;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #C0392B, #2C3E50);
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.page-promotions__hero-content {
    max-width: 800px;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-promotions__hero-title .highlight {
    color: #F39C12; /* Accent color for highlight in hero */
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.page-promotions__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;
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #F39C12; /* Accent color */
    color: #2C3E50;
    border: 2px solid #F39C12;
}

.page-promotions__btn--primary:hover {
    background-color: #e08c00;
    transform: translateY(-3px);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-promotions__hero-image-wrapper {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-promotions__intro, 
.page-promotions__categories, 
.page-promotions__how-to-claim, 
.page-promotions__why-choose-us, 
.page-promotions__cta, 
.page-promotions__responsible-gaming, 
.page-promotions__faq, 
.page-promotions__final-cta {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__intro {
    background-color: #f0f0f0;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #C0392B;
    margin-bottom: 20px;
}

.page-promotions__section-subtitle {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions__intro-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #333;
}

.page-promotions__intro-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Categories Grid */
.page-promotions__categories {
    background-color: #ffffff;
}

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

.page-promotions__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #C0392B;
    margin-bottom: 15px;
}

.page-promotions__card-description {
    color: #555;
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions__btn--card {
    padding: 10px 20px;
    font-size: 0.95em;
    background-color: #2C3E50;
    color: #ffffff;
    border: 2px solid #2C3E50;
    align-self: flex-start;
}

.page-promotions__btn--card:hover {
    background-color: #1a2a3a;
    border-color: #1a2a3a;
}

/* How-to-Claim Section */
.page-promotions__how-to-claim {
    background-color: #f0f0f0;
}

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

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

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

.page-promotions__step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: #C0392B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-icon img {
    width: 40px;
    height: 40px;
    filter: invert(100%); /* Make icons white */
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #2C3E50;
    margin-bottom: 10px;
}

.page-promotions__step-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-promotions__btn--small {
    padding: 10px 18px;
    font-size: 0.9em;
    background-color: #F39C12;
    color: #2C3E50;
    border: 2px solid #F39C12;
}

.page-promotions__btn--small:hover {
    background-color: #e08c00;
    border-color: #e08c00;
}

.page-promotions__how-to-claim-note {
    margin-top: 40px;
    font-style: italic;
    color: #777;
}

/* Why Choose Us Section */
.page-promotions__why-choose-us {
    background-color: #ffffff;
}

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

.page-promotions__reason-item {
    text-align: center;
    padding: 25px;
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-promotions__reason-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions__reason-title {
    font-size: 1.5em;
    color: #C0392B;
    margin-bottom: 10px;
}

.page-promotions__reason-description {
    color: #666;
    font-size: 0.95em;
}

/* CTA Section */
.page-promotions__cta, .page-promotions__final-cta {
    background-color: #2C3E50;
    color: #ffffff;
    padding: 80px 20px;
}

.page-promotions__cta-title, .page-promotions__final-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-promotions__cta-description, .page-promotions__final-cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-promotions__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin: 0 10px;
}

/* Responsible Gaming Section */
.page-promotions__responsible-gaming {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.page-promotions__responsible-gaming-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1em;
    color: #444;
}

/* FAQ Section */
.page-promotions__faq {
    background-color: #ffffff;
    text-align: left;
}

.page-promotions__faq .page-promotions__section-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-promotions__faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.page-promotions__faq-item:last-child {
    border-bottom: none;
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #2C3E50;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #C0392B;
}

/* .page-promotions__faq-question.active::after { content: '-'; } */ /* Uncomment if adding JS for accordion */

.page-promotions__faq-answer {
    font-size: 1em;
    color: #666;
    padding-left: 15px;
    /* display: none; */ /* Uncomment if adding JS for accordion */
}

.page-promotions__faq-answer a {
    color: #C0392B;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__faq-answer a:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.page-promotions__final-cta .page-promotions__btn--primary {
    background-color: #F39C12;
    color: #2C3E50;
    border-color: #F39C12;
}

.page-promotions__final-cta .page-promotions__btn--primary:hover {
    background-color: #e08c00;
    border-color: #e08c00;
}

.page-promotions__final-cta .page-promotions__btn--secondary {
    background-color: #C0392B;
    color: #ffffff;
    border-color: #C0392B;
}

.page-promotions__final-cta .page-promotions__btn--secondary:hover {
    background-color: #a02a1e;
    border-color: #a02a1e;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero {
        padding: 60px 20px;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__grid, .page-promotions__steps-grid, .page-promotions__reason-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__cta-title, .page-promotions__final-cta-title {
        font-size: 2.2em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        flex-direction: column;
        gap: 30px;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__intro-image {
        margin-top: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__step-title {
        font-size: 1.2em;
    }
    .page-promotions__cta-title, .page-promotions__final-cta-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-description, .page-promotions__final-cta-description {
        font-size: 1em;
    }
    .page-promotions__btn--large {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 40px 15px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__grid, .page-promotions__steps-grid, .page-promotions__reason-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__cta-title, .page-promotions__final-cta-title {
        font-size: 1.6em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
}