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

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

.page-promotions-loyalty-program__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #FFD700 100%); /* Main color with a hint of accent */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-loyalty-program__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: page-promotions-loyalty-program__ripple 10s infinite ease-in-out;
}

.page-promotions-loyalty-program__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-promotions-loyalty-program__ripple 12s infinite reverse ease-in-out;
}

@keyframes page-promotions-loyalty-program__ripple {
    0% { transform: scale(0.8) translate(0, 0); opacity: 0.8; }
    50% { transform: scale(1.2) translate(20px, 20px); opacity: 0.5; }
    100% { transform: scale(0.8) translate(0, 0); opacity: 0.8; }
}

.page-promotions-loyalty-program__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-loyalty-program__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-loyalty-program__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for CTA */
    color: #0A2463; /* Text color for CTA */
    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;
    border: none;
    cursor: pointer;
}

.page-promotions-loyalty-program__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-loyalty-program__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions-loyalty-program__cta-button--centered {
    display: block;
    margin: 40px auto;
    width: fit-content;
}

.page-promotions-loyalty-program__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-loyalty-program__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-loyalty-program__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-promotions-loyalty-program__centered-text {
    text-align: center;
}

.page-promotions-loyalty-program__benefits-section,
.page-promotions-loyalty-program__levels-section,
.page-promotions-loyalty-program__exclusive-benefits,
.page-promotions-loyalty-program__how-to-join,
.page-promotions-loyalty-program__faq-section,
.page-promotions-loyalty-program__conclusion-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-promotions-loyalty-program__benefits-section {
    background-color: #fff;
}

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

.page-promotions-loyalty-program__benefit-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A2463;
}

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

.page-promotions-loyalty-program__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-promotions-loyalty-program__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-promotions-loyalty-program__image-full-width {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-loyalty-program__level-details {
    margin-top: 60px;
}

.page-promotions-loyalty-program__level-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-promotions-loyalty-program__level-details p {
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-loyalty-program__exclusive-benefits {
    background-color: #f0f3f7;
}

.page-promotions-loyalty-program__benefit-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.page-promotions-loyalty-program__benefit-item--reversed {
    flex-direction: row-reverse;
}

.page-promotions-loyalty-program__benefit-image {
    width: 40%;
    min-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-loyalty-program__benefit-content {
    flex: 1;
}

.page-promotions-loyalty-program__benefit-heading {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-promotions-loyalty-program__benefit-content p {
    color: #555;
    margin-bottom: 20px;
}

.page-promotions-loyalty-program__text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-loyalty-program__text-link:hover {
    color: #0A2463;
    text-decoration: underline;
}

.page-promotions-loyalty-program__how-to-join {
    background-color: #fff;
}

.page-promotions-loyalty-program__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-promotions-loyalty-program__steps-list li {
    background-color: #f0f3f7;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-promotions-loyalty-program__steps-list li:hover {
    background-color: #e6eaf0;
}

.page-promotions-loyalty-program__step-heading {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-promotions-loyalty-program__step-heading + p {
    color: #555;
}

.page-promotions-loyalty-program__step-heading a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-loyalty-program__step-heading a:hover {
    text-decoration: underline;
}

.page-promotions-loyalty-program__faq-section {
    background-color: #f0f3f7;
}

.page-promotions-loyalty-program__faq-accordion {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.page-promotions-loyalty-program__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-loyalty-program__accordion-header {
    background-color: #0A2463;
    color: #fff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-promotions-loyalty-program__accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-loyalty-program__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-loyalty-program__accordion-header:hover {
    background-color: #1a3a7c;
}

.page-promotions-loyalty-program__accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-loyalty-program__accordion-content p {
    padding: 15px 0;
    color: #444;
    margin-bottom: 0;
}

.page-promotions-loyalty-program__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions-loyalty-program__conclusion-section .page-promotions-loyalty-program__section-description {
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-loyalty-program__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-loyalty-program__section-title {
        font-size: 2em;
    }

    .page-promotions-loyalty-program__benefit-item {
        flex-direction: column;
        gap: 20px;
    }

    .page-promotions-loyalty-program__benefit-item--reversed {
        flex-direction: column;
    }

    .page-promotions-loyalty-program__benefit-image {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-promotions-loyalty-program__hero-section {
        padding: 60px 0;
    }

    .page-promotions-loyalty-program__hero-title {
        font-size: 2em;
    }

    .page-promotions-loyalty-program__hero-description {
        font-size: 1em;
    }

    .page-promotions-loyalty-program__section-title {
        font-size: 1.8em;
    }

    .page-promotions-loyalty-program__section-description {
        font-size: 1em;
    }

    .page-promotions-loyalty-program__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-loyalty-program__level-title {
        font-size: 1.5em;
    }

    .page-promotions-loyalty-program__benefit-heading {
        font-size: 1.6em;
    }

    .page-promotions-loyalty-program__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-loyalty-program__accordion-header::after {
        right: 20px;
    }

    .page-promotions-loyalty-program__accordion-content {
        padding: 0 20px;
    }

    .page-promotions-loyalty-program__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-loyalty-program__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

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

    .page-promotions-loyalty-program__section-title {
        font-size: 1.5em;
    }

    .page-promotions-loyalty-program__benefit-card {
        padding: 20px;
    }

    .page-promotions-loyalty-program__benefit-heading {
        font-size: 1.4em;
    }

    .page-promotions-loyalty-program__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-promotions-loyalty-program__accordion-header::after {
        right: 15px;
        font-size: 1.2em;
    }
}