/* style/promotions-vip-exclusive-benefits.css */

.page-promotions-vip-exclusive-benefits {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions-vip-exclusive-benefits__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    overflow: hidden;
    gap: 30px;
}

.page-promotions-vip-exclusive-benefits__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-exclusive-benefits__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-promotions-vip-exclusive-benefits__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-promotions-vip-exclusive-benefits__btn-primary,
.page-promotions-vip-exclusive-benefits__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-promotions-vip-exclusive-benefits__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-promotions-vip-exclusive-benefits__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-promotions-vip-exclusive-benefits__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-promotions-vip-exclusive-benefits__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2e;
    border-color: #005f2e;
}

.page-promotions-vip-exclusive-benefits__content-area,
.page-promotions-vip-exclusive-benefits__promo-highlights,
.page-promotions-vip-exclusive-benefits__how-to-join,
.page-promotions-vip-exclusive-benefits__faq-section,
.page-promotions-vip-exclusive-benefits__conclusion-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-promotions-vip-exclusive-benefits__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__dark-section .page-promotions-vip-exclusive-benefits__section-title,
.page-promotions-vip-exclusive-benefits__faq-section .page-promotions-vip-exclusive-benefits__section-title {
    color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__section-intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-promotions-vip-exclusive-benefits__dark-section .page-promotions-vip-exclusive-benefits__section-intro-text,
.page-promotions-vip-exclusive-benefits__faq-section .page-promotions-vip-exclusive-benefits__section-intro-text {
    color: #f0f0f0;
}

.page-promotions-vip-exclusive-benefits__vip-levels-grid,
.page-promotions-vip-exclusive-benefits__promo-grid,
.page-promotions-vip-exclusive-benefits__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-promotions-vip-exclusive-benefits__card,
.page-promotions-vip-exclusive-benefits__promo-card,
.page-promotions-vip-exclusive-benefits__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-vip-exclusive-benefits__dark-section .page-promotions-vip-exclusive-benefits__promo-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__card:hover,
.page-promotions-vip-exclusive-benefits__promo-card:hover,
.page-promotions-vip-exclusive-benefits__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-exclusive-benefits__card-image,
.page-promotions-vip-exclusive-benefits__promo-image,
.page-promotions-vip-exclusive-benefits__step-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

.page-promotions-vip-exclusive-benefits__card-title,
.page-promotions-vip-exclusive-benefits__promo-title,
.page-promotions-vip-exclusive-benefits__step-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__dark-section .page-promotions-vip-exclusive-benefits__promo-title {
    color: #ffffff;
}

.page-promotions-vip-exclusive-benefits__card-text,
.page-promotions-vip-exclusive-benefits__promo-description,
.page-promotions-vip-exclusive-benefits__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-vip-exclusive-benefits__dark-section .page-promotions-vip-exclusive-benefits__promo-description {
    color: #e0e0e0;
}

.page-promotions-vip-exclusive-benefits__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-promotions-vip-exclusive-benefits__faq-list {
    margin-top: 40px;
}

.page-promotions-vip-exclusive-benefits__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    font-size: 1.2em;
    color: #ffffff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-promotions-vip-exclusive-benefits__faq-question h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2em;
}

.page-promotions-vip-exclusive-benefits__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-item.active .page-promotions-vip-exclusive-benefits__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-promotions-vip-exclusive-benefits__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: #f0f0f0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-item.active .page-promotions-vip-exclusive-benefits__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 30px;
}

.page-promotions-vip-exclusive-benefits__faq-answer p {
    margin: 0;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-vip-exclusive-benefits__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive-benefits {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions-vip-exclusive-benefits__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-vip-exclusive-benefits__hero-description {
        font-size: 1em;
    }

    .page-promotions-vip-exclusive-benefits__btn-primary,
    .page-promotions-vip-exclusive-benefits__btn-secondary {
        padding: 12px 20px;
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-promotions-vip-exclusive-benefits__cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .page-promotions-vip-exclusive-benefits__content-area,
    .page-promotions-vip-exclusive-benefits__promo-highlights,
    .page-promotions-vip-exclusive-benefits__how-to-join,
    .page-promotions-vip-exclusive-benefits__faq-section,
    .page-promotions-vip-exclusive-benefits__conclusion-section {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-vip-exclusive-benefits__section-title {
        font-size: 1.8em;
    }

    .page-promotions-vip-exclusive-benefits__section-intro-text {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-promotions-vip-exclusive-benefits__vip-levels-grid,
    .page-promotions-vip-exclusive-benefits__promo-grid,
    .page-promotions-vip-exclusive-benefits__steps-grid {
        grid-template-columns: 1fr;
    }
    
    .page-promotions-vip-exclusive-benefits img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-vip-exclusive-benefits__card,
    .page-promotions-vip-exclusive-benefits__promo-card,
    .page-promotions-vip-exclusive-benefits__step-card {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-promotions-vip-exclusive-benefits__faq-question,
    .page-promotions-vip-exclusive-benefits__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-vip-exclusive-benefits__faq-question h3 {
        font-size: 1.1em;
    }

    .page-promotions-vip-exclusive-benefits__faq-answer p {
        font-size: 0.95em;
    }
}

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

    .page-promotions-vip-exclusive-benefits__section-title {
        font-size: 1.5em;
    }
}

/* Ensure no filter on images */
.page-promotions-vip-exclusive-benefits img {
    filter: none; /* No CSS filter allowed */
}