/* style/promotions-holiday-specials.css */

:root {
    --page-promotions-holiday-specials-primary-color: #0A2463;
    --page-promotions-holiday-specials-secondary-color: #FFD700;
    --page-promotions-holiday-specials-text-light: #FFFFFF;
    --page-promotions-holiday-specials-text-dark: #333333;
    --page-promotions-holiday-specials-background-light: #F8F8F8;
    --page-promotions-holiday-specials-background-dark: #071C40;
    --page-promotions-holiday-specials-accent-color: #f5db9c; /* Complementary to primary */
}

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

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

.page-promotions-holiday-specials__hero-section {
    background: linear-gradient(135deg, var(--page-promotions-holiday-specials-primary-color), var(--page-promotions-holiday-specials-background-dark));
    color: var(--page-promotions-holiday-specials-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-holiday-specials__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-promotions-holiday-specials-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-holiday-specials__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-holiday-specials__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-specials__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-holiday-specials-primary-color);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
}

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

.page-promotions-holiday-specials__intro-section, 
.page-promotions-holiday-specials__how-to-claim, 
.page-promotions-holiday-specials__why-choose, 
.page-promotions-holiday-specials__final-cta {
    padding: 60px 0;
}

.page-promotions-holiday-specials__intro-section p, 
.page-promotions-holiday-specials__how-to-claim p, 
.page-promotions-holiday-specials__why-choose p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-holiday-specials__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;
    border: none;
}

.page-promotions-holiday-specials__btn--primary {
    background-color: var(--page-promotions-holiday-specials-secondary-color);
    color: var(--page-promotions-holiday-specials-primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-specials__btn--primary:hover {
    background-color: var(--page-promotions-holiday-specials-accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-specials__btn--secondary {
    background-color: var(--page-promotions-holiday-specials-primary-color);
    color: var(--page-promotions-holiday-specials-text-light);
    border: 2px solid var(--page-promotions-holiday-specials-secondary-color);
    margin-left: 20px;
}

.page-promotions-holiday-specials__btn--secondary:hover {
    background-color: var(--page-promotions-holiday-specials-background-dark);
    border-color: var(--page-promotions-holiday-specials-accent-color);
    transform: translateY(-3px);
}

.page-promotions-holiday-specials__featured-promos {
    background-color: var(--page-promotions-holiday-specials-background-dark);
    padding: 80px 0;
    color: var(--page-promotions-holiday-specials-text-light);
}

.page-promotions-holiday-specials__featured-promos .page-promotions-holiday-specials__section-title {
    color: var(--page-promotions-holiday-specials-secondary-color);
}

.page-promotions-holiday-specials__promo-card {
    display: flex;
    background-color: var(--page-promotions-holiday-specials-primary-color);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-promotions-holiday-specials__promo-card:hover {
    transform: translateY(-5px);
}

.page-promotions-holiday-specials__promo-card:nth-child(even) {
    flex-direction: row-reverse;
}

.page-promotions-holiday-specials__promo-image {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.page-promotions-holiday-specials__promo-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-promotions-holiday-specials__promo-title {
    font-size: 1.8em;
    color: var(--page-promotions-holiday-specials-secondary-color);
    margin-bottom: 15px;
}

.page-promotions-holiday-specials__promo-content p {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-holiday-specials__how-to-claim .page-promotions-holiday-specials__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions-holiday-specials__how-to-claim .page-promotions-holiday-specials__steps-list li {
    margin-bottom: 25px;
    font-size: 1.1em;
    padding-left: 50px;
    position: relative;
}

.page-promotions-holiday-specials__how-to-claim .page-promotions-holiday-specials__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-promotions-holiday-specials-secondary-color);
    color: var(--page-promotions-holiday-specials-primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-specials__how-to-claim .page-promotions-holiday-specials__link {
    color: var(--page-promotions-holiday-specials-primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-holiday-specials__how-to-claim .page-promotions-holiday-specials__link:hover {
    color: var(--page-promotions-holiday-specials-secondary-color);
}

.page-promotions-holiday-specials__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

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

.page-promotions-holiday-specials__why-choose .page-promotions-holiday-specials__benefits-list li {
    background-color: var(--page-promotions-holiday-specials-text-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05em;
    transition: transform 0.3s ease;
}

.page-promotions-holiday-specials__why-choose .page-promotions-holiday-specials__benefits-list li:hover {
    transform: translateY(-5px);
}

.page-promotions-holiday-specials__why-choose .page-promotions-holiday-specials__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.page-promotions-holiday-specials__why-choose .page-promotions-holiday-specials__benefits-list li strong {
    color: var(--page-promotions-holiday-specials-primary-color);
}

.page-promotions-holiday-specials__final-cta {
    background: linear-gradient(135deg, var(--page-promotions-holiday-specials-background-dark), var(--page-promotions-holiday-specials-primary-color));
    color: var(--page-promotions-holiday-specials-text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-promotions-holiday-specials__final-cta .page-promotions-holiday-specials__section-title {
    color: var(--page-promotions-holiday-specials-secondary-color);
}

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

.page-promotions-holiday-specials__cta-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 2em;
    }
    .page-promotions-holiday-specials__promo-card {
        flex-direction: column;
    }
    .page-promotions-holiday-specials__promo-card:nth-child(even) {
        flex-direction: column;
    }
    .page-promotions-holiday-specials__promo-image,
    .page-promotions-holiday-specials__promo-content {
        width: 100%;
    }
    .page-promotions-holiday-specials__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-holiday-specials__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-promotions-holiday-specials__hero-section {
        padding: 60px 0;
    }
    .page-promotions-holiday-specials__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-holiday-specials__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-specials__intro-section p,
    .page-promotions-holiday-specials__how-to-claim p,
    .page-promotions-holiday-specials__why-choose p,
    .page-promotions-holiday-specials__promo-content p {
        font-size: 1em;
    }
    .page-promotions-holiday-specials__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-holiday-specials__how-to-claim .page-promotions-holiday-specials__steps-list li {
        padding-left: 40px;
    }
    .page-promotions-holiday-specials__how-to-claim .page-promotions-holiday-specials__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-holiday-specials__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-holiday-specials__hero-description {
        font-size: 0.95em;
    }
    .page-promotions-holiday-specials__section-title {
        font-size: 1.5em;
    }
    .page-promotions-holiday-specials__btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    .page-promotions-holiday-specials__cta-buttons .page-promotions-holiday-specials__btn--secondary {
        margin-top: 15px;
    }
    .page-promotions-holiday-specials__promo-title {
        font-size: 1.5em;
    }
}