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

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

.page-promotions__section {
    padding: 60px 0;
}

.page-promotions__section--dark-bg {
    background-color: #0056b3; /* Darker shade of primary for contrast */
    color: #fff;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions__section--dark-bg .page-promotions__section-title {
    color: #FFD700; /* Gold text on dark background */
}

.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-promotions__btn--primary {
    background-color: #007BFF;
    color: #fff;
}

.page-promotions__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--secondary {
    background-color: #FFD700;
    color: #333;
}

.page-promotions__btn--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

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

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

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
    transform: scale(1.1);
}

/* Intro Section */
.page-promotions__advantage-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-promotions__advantage-list li {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 1.05em;
    border-left: 5px solid #007BFF;
}

.page-promotions__advantage-list li strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #007BFF;
}

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

.page-promotions__category-card {
    background-color: #007BFF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #f0f0f0;
}

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

.page-promotions__category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    object-fit: cover;
}

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

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

/* Featured Offers */
.page-promotions__offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.page-promotions__offer-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-promotions__offer-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__offer-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
}

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

.page-promotions__offer-validity {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.page-promotions__offer-content .page-promotions__btn {
    margin-top: auto;
}

/* How To Claim */
.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-promotions__steps-list li {
    background-color: #007BFF;
    color: #fff;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.page-promotions__steps-list li strong {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.3em;
}

.page-promotions__steps-list li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__steps-list li a:hover {
    color: #fff;
}

/* Detail Pages */
.page-promotions__detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #FFD700;
    display: flex;
    flex-direction: column;
}

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

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

.page-promotions__detail-title a:hover {
    color: #0056b3;
}

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

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-item {
    background-color: #007BFF;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1.05em;
    color: #f0f0f0;
    padding: 0 25px 20px;
    margin: 0;
    display: none;
}

.page-promotions__faq-answer.active {
    display: block;
}

/* Final CTA */
.page-promotions__final-cta-content {
    text-align: center;
    padding: 40px 0;
}

.page-promotions__final-cta-content .page-promotions__text-block {
    margin-bottom: 30px;
}

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

/* Sticky CTA */
.page-promotions__sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 123, 255, 0.95); /* Primary color with transparency */
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%); /* Start hidden */
    transition: transform 0.5s ease-out;
}

.page-promotions__sticky-cta.show {
    transform: translateY(0%);
}

.page-promotions__sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.page-promotions__sticky-cta-text {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #FFD700;
}

.page-promotions__btn--sticky {
    background-color: #FFD700;
    color: #007BFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page-promotions__btn--sticky:hover {
    background-color: #e6c200;
}

.page-promotions__sticky-cta-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 20px;
    line-height: 1;
}

.page-promotions__sticky-cta-close:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__advantage-list {
        grid-template-columns: 1fr;
    }

    .page-promotions__offer-cards-grid, .page-promotions__categories-grid, .page-promotions__detail-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-promotions__btn--large {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
    
    .page-promotions__sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .page-promotions__sticky-cta-text {
        font-size: 1em;
    }

    .page-promotions__sticky-cta-close {
        position: absolute;
        top: 5px;
        right: 10px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 15px;
        min-height: 400px;
    }

    .page-promotions__hero-title {
        font-size: 2.2em;
    }

    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions__section {
        padding: 40px 0;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__offer-card {
        margin: 0 10px;
    }

    .page-promotions__category-card {
        margin: 0 10px;
    }

    .page-promotions__detail-card {
        margin: 0 10px;
    }

    .page-promotions__steps-list li {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    .page-promotions__steps-list li strong {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }

    .page-promotions__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.5em;
    }

    .page-promotions__btn--large {
        width: 90%;
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .page-promotions__sticky-cta {
        padding: 10px 15px;
    }

    .page-promotions__sticky-cta-text {
        font-size: 0.9em;
    }

    .page-promotions__btn--sticky {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-promotions__sticky-cta-close {
        font-size: 1.2em;
    }
}