/* style/index-featured-promotions.css */
.page-index-featured-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2463; /* Deep blue primary background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-index-featured-promotions__hero-section {
    background: linear-gradient(135deg, #0A2463, #1A3A7C);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-index-featured-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0) 70%);
    border-radius: 50%;
    animation: page-index-featured-promotions__float 10s ease-in-out infinite;
}

.page-index-featured-promotions__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0) 70%);
    border-radius: 50%;
    animation: page-index-featured-promotions__float 12s reverse ease-in-out infinite;
}

@keyframes page-index-featured-promotions__float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.page-index-featured-promotions__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-index-featured-promotions__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-index-featured-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA button */
    color: #0A2463; /* Deep blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-featured-promotions__cta-button:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-index-featured-promotions__promotions-overview,
.page-index-featured-promotions__how-to-claim,
.page-index-featured-promotions__why-choose,
.page-index-featured-promotions__faq-section,
.page-index-featured-promotions__final-cta {
    padding: 60px 0;
    background-color: #0A2463;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-featured-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    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;
}

.page-index-featured-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

.page-index-featured-promotions__cta-text {
    margin-top: 40px;
    font-style: italic;
}

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

.page-index-featured-promotions__promo-card {
    background-color: #1A3A7C; /* Darker blue for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-featured-promotions__promo-card:hover {
    transform: translateY(-10px);
    background-color: #2A4A8C;
}

.page-index-featured-promotions__promo-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
}

.page-index-featured-promotions__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-featured-promotions__card-text {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-featured-promotions__card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-index-featured-promotions__card-button:hover {
    background-color: #E6C200;
}

/* How-to-Claim Section */
.page-index-featured-promotions__how-to-claim {
    background-color: #0F2C6F; /* Slightly different dark blue */
}

.page-index-featured-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-index-featured-promotions__steps-list li {
    background-color: #1A3A7C;
    border-left: 5px solid #FFD700;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-featured-promotions__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-featured-promotions__steps-list p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-index-featured-promotions__steps-list a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-index-featured-promotions__steps-list a:hover {
    color: #E6C200;
}

.page-index-featured-promotions__sub-list {
    list-style: disc inside;
    margin-top: 15px;
    padding-left: 20px;
    color: #C0C0C0;
}

.page-index-featured-promotions__sub-list li {
    background-color: transparent;
    border: none;
    padding: 5px 0;
    margin-bottom: 5px;
    box-shadow: none;
    font-size: 0.95em;
}

.page-index-featured-promotions__sub-list li strong {
    color: #FFD700;
}

.page-index-featured-promotions__cta-button--small {
    font-size: 1.1em;
    padding: 12px 25px;
    margin-top: 30px;
}

/* Why Choose Section */
.page-index-featured-promotions__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-featured-promotions__benefits-list li {
    background-color: #1A3A7C;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-index-featured-promotions__benefits-list li:hover {
    background-color: #2A4A8C;
}

.page-index-featured-promotions__benefit-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.page-index-featured-promotions__benefit-title::before {
    content: '★'; /* Star icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1;
}

.page-index-featured-promotions__benefits-list p {
    color: #C0C0C0;
    font-size: 1em;
}

/* FAQ Section */
.page-index-featured-promotions__faq-section {
    background-color: #0F2C6F;
}

.page-index-featured-promotions__faq-list {
    margin-top: 40px;
}

.page-index-featured-promotions__faq-item {
    background-color: #1A3A7C;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-featured-promotions__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-featured-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-index-featured-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-featured-promotions__faq-answer {
    color: #C0C0C0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-index-featured-promotions__faq-answer.open {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* Final CTA Section */
.page-index-featured-promotions__final-cta {
    text-align: center;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #1A3A7C, #0A2463);
}

.page-index-featured-promotions__final-cta .page-index-featured-promotions__section-title {
    color: #FFD700;
}

.page-index-featured-promotions__final-cta .page-index-featured-promotions__section-description {
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-featured-promotions__main-title {
        font-size: 2.8em;
    }
    .page-index-featured-promotions__subtitle {
        font-size: 1.2em;
    }
    .page-index-featured-promotions__section-title {
        font-size: 2em;
    }
    .page-index-featured-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-featured-promotions__benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-featured-promotions__hero-section {
        padding: 80px 0;
    }
    .page-index-featured-promotions__main-title {
        font-size: 2.2em;
    }
    .page-index-featured-promotions__subtitle {
        font-size: 1em;
    }
    .page-index-featured-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-featured-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-featured-promotions__section-description {
        font-size: 0.95em;
    }
    .page-index-featured-promotions__promo-card,
    .page-index-featured-promotions__steps-list li,
    .page-index-featured-promotions__benefits-list li,
    .page-index-featured-promotions__faq-item {
        padding: 20px;
    }
    .page-index-featured-promotions__card-title,
    .page-index-featured-promotions__step-title,
    .page-index-featured-promotions__benefit-title,
    .page-index-featured-promotions__faq-question {
        font-size: 1.4em;
    }
    .page-index-featured-promotions__card-text,
    .page-index-featured-promotions__steps-list p,
    .page-index-featured-promotions__benefits-list p,
    .page-index-featured-promotions__faq-answer {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-index-featured-promotions__main-title {
        font-size: 1.8em;
    }
    .page-index-featured-promotions__section-title {
        font-size: 1.5em;
    }
    .page-index-featured-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-index-featured-promotions__benefits-list {
        gap: 20px;
    }
}