/* style/exclusive-offers-loyalty-rewards.css */
.page-exclusive-offers-loyalty-rewards {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-exclusive-offers-loyalty-rewards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-exclusive-offers-loyalty-rewards__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1A3F87 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-exclusive-offers-loyalty-rewards__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-exclusive-offers-loyalty-rewards__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-exclusive-offers-loyalty-rewards__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Section Titles */
.page-exclusive-offers-loyalty-rewards__section-title {
    font-size: 2.8em;
    color: #0A2463; /* Dark blue title */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
    font-weight: bold;
    position: relative;
}

.page-exclusive-offers-loyalty-rewards__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 3px;
}

.page-exclusive-offers-loyalty-rewards__section-description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Intro Section */
.page-exclusive-offers-loyalty-rewards__intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-exclusive-offers-loyalty-rewards__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-exclusive-offers-loyalty-rewards__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #444;
}

.page-exclusive-offers-loyalty-rewards__text-content p {
    margin-bottom: 20px;
}

.page-exclusive-offers-loyalty-rewards__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-exclusive-offers-loyalty-rewards__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* How to Earn Section */
.page-exclusive-offers-loyalty-rewards__how-to-earn {
    padding: 80px 0;
    background-color: #f0f4f7;
}

.page-exclusive-offers-loyalty-rewards__points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-exclusive-offers-loyalty-rewards__point-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-exclusive-offers-loyalty-rewards__point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-exclusive-offers-loyalty-rewards__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-exclusive-offers-loyalty-rewards__point-card h3 {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-exclusive-offers-loyalty-rewards__point-card p {
    color: #666;
    font-size: 1em;
}

/* VIP Tiers Section */
.page-exclusive-offers-loyalty-rewards__vip-tiers {
    padding: 80px 0;
    background-color: #0A2463;
    color: #fff;
}

.page-exclusive-offers-loyalty-rewards__vip-tiers .page-exclusive-offers-loyalty-rewards__section-title {
    color: #FFD700;
}

.page-exclusive-offers-loyalty-rewards__vip-tiers .page-exclusive-offers-loyalty-rewards__section-title::after {
    background-color: #e0e0e0;
}

.page-exclusive-offers-loyalty-rewards__vip-tiers .page-exclusive-offers-loyalty-rewards__section-description {
    color: #e0e0e0;
}

.page-exclusive-offers-loyalty-rewards__tiers-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    margin-top: 50px;
    justify-content: center; /* Center items when there's space */
}

.page-exclusive-offers-loyalty-rewards__tier-card {
    flex: 0 0 280px; /* Fixed width for cards */
    background-color: #1A3F87;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
    transition: background-color 0.3s ease;
}

.page-exclusive-offers-loyalty-rewards__tier-card:hover {
    background-color: #2A5BA1;
}

.page-exclusive-offers-loyalty-rewards__tier-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.page-exclusive-offers-loyalty-rewards__tier-card h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-exclusive-offers-loyalty-rewards__tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-exclusive-offers-loyalty-rewards__tier-card li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.page-exclusive-offers-loyalty-rewards__tier-card li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-exclusive-offers-loyalty-rewards__note {
    text-align: center;
    margin-top: 50px;
    font-size: 0.95em;
    color: #b0b0b0;
}

/* Redemption Catalog Section */
.page-exclusive-offers-loyalty-rewards__redemption-catalog {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-exclusive-offers-loyalty-rewards__reward-item {
    background-color: #f8f8f8;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-exclusive-offers-loyalty-rewards__reward-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-exclusive-offers-loyalty-rewards__reward-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-exclusive-offers-loyalty-rewards__reward-item h4 {
    font-size: 1.5em;
    color: #0A2463;
    margin: 20px 0 10px;
    padding: 0 20px;
}

.page-exclusive-offers-loyalty-rewards__reward-item p {
    color: #666;
    font-size: 1em;
    padding: 0 20px 20px;
}

.page-exclusive-offers-loyalty-rewards__cta-redemption {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.page-exclusive-offers-loyalty-rewards__cta-redemption p {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-exclusive-offers-loyalty-rewards__cta-button--secondary {
    background-color: #0A2463;
    color: #FFD700;
}

.page-exclusive-offers-loyalty-rewards__cta-button--secondary:hover {
    background-color: #1A3F87;
    color: #FFD700;
}

/* How to Redeem Section */
.page-exclusive-offers-loyalty-rewards__how-to-redeem {
    padding: 80px 0;
    background-color: #f0f4f7;
}

.page-exclusive-offers-loyalty-rewards__redeem-steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-exclusive-offers-loyalty-rewards__redeem-steps li {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 70px;
    font-size: 1.1em;
    color: #444;
    min-height: 120px;
    display: flex;
    align-items: center;
    text-align: left;
}

.page-exclusive-offers-loyalty-rewards__redeem-steps li strong {
    color: #0A2463;
}

.page-exclusive-offers-loyalty-rewards__redeem-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-exclusive-offers-loyalty-rewards__faq {
    padding: 80px 0;
    background-color: #fff;
}

.page-exclusive-offers-loyalty-rewards__faq-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-exclusive-offers-loyalty-rewards__faq-item h3 {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-exclusive-offers-loyalty-rewards__faq-item p {
    font-size: 1em;
    color: #555;
    margin-top: 15px;
}

/* Final CTA Section */
.page-exclusive-offers-loyalty-rewards__final-cta {
    padding: 80px 0;
    background: linear-gradient(90deg, #0A2463 0%, #1A3F87 100%);
    color: #fff;
    text-align: center;
}

.page-exclusive-offers-loyalty-rewards__final-cta .page-exclusive-offers-loyalty-rewards__section-title {
    color: #FFD700;
}

.page-exclusive-offers-loyalty-rewards__final-cta .page-exclusive-offers-loyalty-rewards__section-title::after {
    background-color: #e0e0e0;
}

.page-exclusive-offers-loyalty-rewards__final-cta .page-exclusive-offers-loyalty-rewards__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-exclusive-offers-loyalty-rewards__hero-title {
        font-size: 2.8em;
    }
    .page-exclusive-offers-loyalty-rewards__hero-subtitle {
        font-size: 1.3em;
    }
    .page-exclusive-offers-loyalty-rewards__section-title {
        font-size: 2.2em;
    }
    .page-exclusive-offers-loyalty-rewards__content-grid {
        flex-direction: column;
    }
    .page-exclusive-offers-loyalty-rewards__tiers-carousel {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-exclusive-offers-loyalty-rewards__hero-section {
        padding: 80px 0;
    }
    .page-exclusive-offers-loyalty-rewards__hero-title {
        font-size: 2.2em;
    }
    .page-exclusive-offers-loyalty-rewards__hero-subtitle {
        font-size: 1.1em;
    }
    .page-exclusive-offers-loyalty-rewards__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-exclusive-offers-loyalty-rewards__section-title {
        font-size: 1.8em;
    }
    .page-exclusive-offers-loyalty-rewards__section-description {
        font-size: 1em;
    }
    .page-exclusive-offers-loyalty-rewards__point-card h3 {
        font-size: 1.4em;
    }
    .page-exclusive-offers-loyalty-rewards__tier-card {
        flex: 0 0 250px;
    }
    .page-exclusive-offers-loyalty-rewards__reward-item h4 {
        font-size: 1.3em;
    }
    .page-exclusive-offers-loyalty-rewards__redeem-steps li {
        padding-left: 60px;
        font-size: 1em;
    }
    .page-exclusive-offers-loyalty-rewards__redeem-steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .page-exclusive-offers-loyalty-rewards__hero-section {
        padding: 60px 0;
    }
    .page-exclusive-offers-loyalty-rewards__hero-title {
        font-size: 1.8em;
    }
    .page-exclusive-offers-loyalty-rewards__hero-subtitle {
        font-size: 0.95em;
    }
    .page-exclusive-offers-loyalty-rewards__section-title {
        font-size: 1.5em;
    }
    .page-exclusive-offers-loyalty-rewards__section-description {
        font-size: 0.9em;
    }
    .page-exclusive-offers-loyalty-rewards__rewards-grid,
    .page-exclusive-offers-loyalty-rewards__points-grid,
    .page-exclusive-offers-loyalty-rewards__redeem-steps {
        grid-template-columns: 1fr;
    }
    .page-exclusive-offers-loyalty-rewards__tier-card {
        flex: 0 0 220px;
    }
    .page-exclusive-offers-loyalty-rewards__tier-card h3 {
        font-size: 1.5em;
    }
}