/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E5E5D1; /* Light text for dark background */
    background-color: #1A1A2E;
    line-height: 1.6;
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #3A3A5E 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions__hero-section .page-promotions__container {
    position: relative;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #E6B325;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #E6B325;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__intro-section, 
.page-promotions__why-choose-section, 
.page-promotions__how-to-claim-section, 
.page-promotions__faq-section, 
.page-promotions__related-promos-section, 
.page-promotions__final-cta-section {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-promotions__intro-section {
    background-color: #2a2a4a;
}

.page-promotions__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D1D1D1;
    text-align: justify;
}

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

.page-promotions__promo-card {
    background-color: #2A2A4A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #E6B325;
}

.page-promotions__promo-card-title {
    font-size: 1.8em;
    color: #E6B325;
    padding: 20px;
    margin-bottom: 0;
}

.page-promotions__promo-card-description {
    font-size: 1em;
    color: #D1D1D1;
    padding: 0 20px 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin-top: auto;
    margin: 20px;
}

.page-promotions__btn--primary {
    background-color: #E6B325;
    color: #1A1A2E;
    border: 2px solid #E6B325;
}

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

.page-promotions__btn--secondary {
    background-color: #3A3A5E;
    color: #E6B325;
    border: 2px solid #E6B325;
}

.page-promotions__btn--secondary:hover {
    background-color: #4A4A7E;
    transform: translateY(-2px);
}

.page-promotions__btn--link {
    background-color: transparent;
    color: #E6B325;
    border: 2px solid #E6B325;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-promotions__btn--link:hover {
    background-color: #E6B325;
    color: #1A1A2E;
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions__benefits-list li {
    background-color: #2A2A4A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-title {
    color: #E6B325;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions__steps-list li {
    background-color: #2A2A4A;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    position: relative;
    padding-left: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E6B325;
    color: #1A1A2E;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
}

.page-promotions__faq-item {
    background-color: #2A2A4A;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    color: #E6B325;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    color: #D1D1D1;
    font-size: 1em;
    text-align: justify;
}

.page-promotions__related-promos-section {
    background-color: #1A1A2E;
}

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

.page-promotions__detail-promo-item {
    background-color: #2A2A4A;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-promotions__detail-promo-title {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-promotions__detail-promo-title a {
    color: #E6B325;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__detail-promo-title a:hover {
    color: #FFC94A;
    text-decoration: underline;
}

.page-promotions__detail-promo-description {
    color: #D1D1D1;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions__final-cta-section {
    background-color: #2A2A4A;
    text-align: center;
    padding: 80px 0;
}

.page-promotions__final-cta-section .page-promotions__section-title {
    margin-bottom: 20px;
}

.page-promotions__final-cta-section .page-promotions__text-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.highlight {
    color: #E6B325;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__promo-grid, .page-promotions__benefits-list, .page-promotions__detail-promo-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__intro-section, 
    .page-promotions__why-choose-section, 
    .page-promotions__how-to-claim-section, 
    .page-promotions__faq-section, 
    .page-promotions__related-promos-section, 
    .page-promotions__final-cta-section {
        padding: 40px 0;
    }
    .page-promotions__promo-card-title {
        font-size: 1.5em;
    }
    .page-promotions__list-title {
        font-size: 1.3em;
    }
    .page-promotions__steps-list li {
        padding-left: 60px;
    }
    .page-promotions__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__promo-grid, .page-promotions__benefits-list, .page-promotions__detail-promo-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-card-title {
        font-size: 1.3em;
    }
    .page-promotions__list-title {
        font-size: 1.2em;
    }
}