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

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

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

.page-index-featured-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000; /* Black for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-featured-promotions__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-featured-promotions__btn--secondary {
    background-color: #00BFFF; /* Deep Sky Blue */
    color: #fff; /* White for contrast */
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.page-index-featured-promotions__btn--secondary:hover {
    background-color: #0099cc; /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
}

.page-index-featured-promotions__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #005f80; /* Darker blue for contrast */
    position: relative;
    padding-bottom: 15px;
}

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

/* Hero Section */
.page-index-featured-promotions__hero {
    background: linear-gradient(135deg, #00BFFF, #FFD700); /* Blue to Gold gradient */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.page-index-featured-promotions__hero-content {
    max-width: 700px;
    z-index: 1;
    padding: 20px;
}

.page-index-featured-promotions__hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff; /* White text on gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-featured-promotions__hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #eee; /* Light grey for subtitle */
}

.page-index-featured-promotions__hero-image-wrapper {
    max-width: 500px;
    margin-left: 40px;
    z-index: 1;
}

.page-index-featured-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.page-index-featured-promotions__intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-index-featured-promotions__text-content {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

/* Promotions Grid */
.page-index-featured-promotions__promotions-grid {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-index-featured-promotions__promo-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.page-index-featured-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.page-index-featured-promotions__card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #005f80; /* Darker blue */
}

.page-index-featured-promotions__card-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Why Choose Section */
.page-index-featured-promotions__why-choose {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue background */
}

.page-index-featured-promotions__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-featured-promotions__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-index-featured-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 191, 255, 0.3));
}

.page-index-featured-promotions__feature-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00BFFF; /* Deep Sky Blue */
}

.page-index-featured-promotions__feature-description {
    font-size: 16px;
    color: #666;
}

/* How To Claim Section */
.page-index-featured-promotions__how-to-claim {
    padding: 80px 0;
    background-color: #fff;
}

.page-index-featured-promotions__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

.page-index-featured-promotions__steps li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.page-index-featured-promotions__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-index-featured-promotions__step-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #005f80; /* Darker blue */
}

.page-index-featured-promotions__step-description {
    font-size: 16px;
    color: #555;
}

.page-index-featured-promotions__download-app-text {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
    color: #333;
}

.page-index-featured-promotions__how-to-claim .page-index-featured-promotions__btn {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Center button */
}

/* FAQ Section */
.page-index-featured-promotions__faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-index-featured-promotions__faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-index-featured-promotions__faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-index-featured-promotions__faq-question {
    font-size: 20px;
    font-weight: bold;
    color: #00BFFF; /* Deep Sky Blue */
    margin-bottom: 10px;
}

.page-index-featured-promotions__faq-answer {
    font-size: 16px;
    color: #555;
}

/* CTA Section */
.page-index-featured-promotions__cta {
    background: linear-gradient(135deg, #FFD700, #00BFFF); /* Gold to Blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-index-featured-promotions__cta-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-featured-promotions__cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #eee;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-featured-promotions__hero {
        flex-direction: column;
        padding: 80px 0;
    }

    .page-index-featured-promotions__hero-content {
        margin-bottom: 40px;
        margin-left: 0;
    }

    .page-index-featured-promotions__hero-image-wrapper {
        margin-left: 0;
    }

    .page-index-featured-promotions__hero-title {
        font-size: 40px;
    }

    .page-index-featured-promotions__hero-subtitle {
        font-size: 18px;
    }

    .page-index-featured-promotions__section-title {
        font-size: 30px;
    }

    .page-index-featured-promotions__cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-index-featured-promotions__hero {
        padding: 60px 0;
    }

    .page-index-featured-promotions__hero-title {
        font-size: 32px;
    }

    .page-index-featured-promotions__hero-subtitle {
        font-size: 16px;
    }

    .page-index-featured-promotions__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .page-index-featured-promotions__grid,
    .page-index-featured-promotions__features,
    .page-index-featured-promotions__steps {
        grid-template-columns: 1fr;
    }

    .page-index-featured-promotions__promo-card,
    .page-index-featured-promotions__feature-item,
    .page-index-featured-promotions__faq-item {
        padding: 20px;
    }

    .page-index-featured-promotions__card-title,
    .page-index-featured-promotions__feature-title,
    .page-index-featured-promotions__step-title,
    .page-index-featured-promotions__faq-question {
        font-size: 20px;
    }

    .page-index-featured-promotions__btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .page-index-featured-promotions__cta-title {
        font-size: 28px;
    }

    .page-index-featured-promotions__cta-description {
        font-size: 18px;
    }

    .page-index-featured-promotions__steps li {
        padding-left: 60px;
    }

    .page-index-featured-promotions__steps li::before {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-index-featured-promotions__hero-title {
        font-size: 28px;
    }

    .page-index-featured-promotions__hero-subtitle {
        font-size: 15px;
    }

    .page-index-featured-promotions__section-title {
        font-size: 24px;
    }

    .page-index-featured-promotions__cta-title {
        font-size: 24px;
    }

    .page-index-featured-promotions__cta-description {
        font-size: 16px;
    }

    .page-index-featured-promotions__promo-card,
    .page-index-featured-promotions__feature-item,
    .page-index-featured-promotions__faq-item {
        padding: 15px;
    }

    .page-index-featured-promotions__card-title,
    .page-index-featured-promotions__feature-title,
    .page-index-featured-promotions__step-title,
    .page-index-featured-promotions__faq-question {
        font-size: 18px;
    }

    .page-index-featured-promotions__text-content {
        font-size: 16px;
    }
}