/* style/index-featured-promotions.css */
.page-index-featured-promotions {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF;
    background-color: #0A192F;
}

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

.page-index-featured-promotions__section {
    padding: 80px 0;
    text-align: center;
}

.page-index-featured-promotions__section:nth-child(even) {
    background-color: #1a2a47; /* Slightly lighter dark background for contrast */
}

.page-index-featured-promotions__section-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-index-featured-promotions__section-description {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Hero Section */
.page-index-featured-promotions__hero {
    background: linear-gradient(135deg, #0A192F 0%, #3a4a67 100%); /* Darker gradient for hero */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap-reverse; /* Image on right, text on left for desktop */
}

.page-index-featured-promotions__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-index-featured-promotions__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-featured-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-index-featured-promotions__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-featured-promotions__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Buttons */
.page-index-featured-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-index-featured-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: none;
}

.page-index-featured-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-featured-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-featured-promotions__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-index-featured-promotions__btn--lg {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

/* Why Choose Section */
.page-index-featured-promotions__why-choose {
    background-color: #0A192F;
}

.page-index-featured-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-featured-promotions__feature-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index-featured-promotions__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-featured-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.page-index-featured-promotions__feature-text {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
}

/* Promotion Types Section */
.page-index-featured-promotions__promotion-types {
    background-color: #0A192F;
}

.page-index-featured-promotions__promotion-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #1a2a47;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: left;
    flex-wrap: wrap;
}

.page-index-featured-promotions__promotion-card--reverse {
    flex-direction: row-reverse;
}

.page-index-featured-promotions__promotion-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    object-fit: cover;
}

.page-index-featured-promotions__promotion-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.page-index-featured-promotions__promotion-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-index-featured-promotions__promotion-text {
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* How to Claim Section */
.page-index-featured-promotions__how-to-claim {
    background-color: #1a2a47;
}

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

.page-index-featured-promotions__steps-list li {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

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

.page-index-featured-promotions__step-text {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

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

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

.page-index-featured-promotions__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-index-featured-promotions__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
}

/* Final CTA Section */
.page-index-featured-promotions__cta-final {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 0;
}

.page-index-featured-promotions__cta-final .page-index-featured-promotions__section-title {
    color: #0A192F;
}

.page-index-featured-promotions__cta-final .page-index-featured-promotions__section-description {
    color: #333333;
    margin-bottom: 50px;
}

.page-index-featured-promotions__cta-final .page-index-featured-promotions__btn {
    background-color: #0A192F;
    color: #FFD700;
    border: none;
}

.page-index-featured-promotions__cta-final .page-index-featured-promotions__btn:hover {
    background-color: #1a2a47;
    color: #FFD700;
    transform: translateY(-3px);
}

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

    .page-index-featured-promotions__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-index-featured-promotions__hero-title {
        font-size: 3em;
    }

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

    .page-index-featured-promotions__hero-actions {
        justify-content: center;
    }

    .page-index-featured-promotions__promotion-card,
    .page-index-featured-promotions__promotion-card--reverse {
        flex-direction: column;
        text-align: center;
    }

    .page-index-featured-promotions__promotion-image {
        max-width: 100%;
    }

    .page-index-featured-promotions__promotion-content {
        padding: 30px;
    }

    .page-index-featured-promotions__promotion-title {
        font-size: 1.8em;
    }

    .page-index-featured-promotions__steps-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-featured-promotions__section-title {
        font-size: 2.5em;
    }

    .page-index-featured-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-index-featured-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-featured-promotions__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-index-featured-promotions__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-index-featured-promotions__section {
        padding: 50px 0;
    }

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

    .page-index-featured-promotions__hero-title {
        font-size: 2em;
    }

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

    .page-index-featured-promotions__hero-actions {
        flex-direction: column;
    }

    .page-index-featured-promotions__btn {
        width: 100%;
    }

    .page-index-featured-promotions__promotion-content {
        padding: 20px;
    }

    .page-index-featured-promotions__promotion-title {
        font-size: 1.5em;
    }

    .page-index-featured-promotions__faq-question {
        font-size: 1.2em;
    }
}