/* style/promotions-vip-program.css */

.page-promotions-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is dark #1a1a2e, so text should be light */
    background-color: #1a1a2e;
}

.page-promotions-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-promotions-vip-program__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
    box-sizing: border-box;
}

.page-promotions-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-promotions-vip-program__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-promotions-vip-program__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-promotions-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Register and Login font color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-vip-program__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions-vip-program__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.page-promotions-vip-program__btn-primary:hover {
    background-color: #e02020;
    transform: translateY(-2px);
}

.page-promotions-vip-program__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #017439; /* Primary color */
}

.page-promotions-vip-program__btn-secondary:hover {
    background-color: #017439;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-promotions-vip-program__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #FFFF00; /* Register and Login font color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-vip-program__dark-bg {
    background-color: #017439; /* Primary color */
    color: #ffffff;
    padding: 80px 0;
}

.page-promotions-vip-program__light-bg {
    background-color: #ffffff;
    color: #333333;
    padding: 80px 0;
}

/* Benefits Section */
.page-promotions-vip-program__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-vip-program__benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-vip-program__benefit-card:hover {
    transform: translateY(-5px);
}

.page-promotions-vip-program__benefit-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-promotions-vip-program__benefit-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFF00; /* Register and Login font color */
}

.page-promotions-vip-program__benefit-description {
    font-size: 0.95em;
    color: #e0e0e0;
}

/* Tiers Section */
.page-promotions-vip-program__tiers-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    color: #ffffff;
}

.page-promotions-vip-program__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-promotions-vip-program__tier-card {
    background: #2a2a3e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-promotions-vip-program__tier-card:hover {
    transform: translateY(-5px);
    background-color: #3a3a5e;
}

.page-promotions-vip-program__tier-badge {
    width: 100%;
    height: auto;
    max-width: 180px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #017439;
}

.page-promotions-vip-program__tier-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #FFFF00; /* Register and Login font color */
}

.page-promotions-vip-program__tier-description {
    font-size: 0.9em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions-vip-program__tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #e0e0e0;
}

.page-promotions-vip-program__tier-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-vip-program__tier-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #017439;
}

.page-promotions-vip-program__tier-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-promotions-vip-program__tier-note a {
    color: #FFFF00; /* Register and Login font color */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-vip-program__tier-note a:hover {
    text-decoration: underline;
}

/* Exclusive Content Section */
.page-promotions-vip-program__exclusive-content-section {
    padding: 80px 0;
    background-color: #017439; /* Primary color */
    color: #ffffff;
}

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

.page-promotions-vip-program__exclusive-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-promotions-vip-program__exclusive-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-vip-program__exclusive-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #FFFF00; /* Register and Login font color */
}

.page-promotions-vip-program__exclusive-description {
    font-size: 0.9em;
    color: #e0e0e0;
}

/* How to Join Section */
.page-promotions-vip-program__how-to-join-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    color: #ffffff;
}

.page-promotions-vip-program__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.page-promotions-vip-program__steps-list li {
    background: #2a2a3e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    counter-increment: step-counter;
    position: relative;
    text-align: center;
}

.page-promotions-vip-program__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C30808; /* Register color */
    color: #FFFF00;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #017439;
}

.page-promotions-vip-program__step-title {
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #FFFF00; /* Register and Login font color */
}

.page-promotions-vip-program__step-description {
    font-size: 0.95em;
    color: #e0e0e0;
}

.page-promotions-vip-program__step-description a {
    color: #FFFF00;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-vip-program__step-description a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions-vip-program__faq-section {
    padding: 80px 0;
    background-color: #017439; /* Primary color */
    color: #ffffff;
}

.page-promotions-vip-program__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-vip-program__faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFF00; /* Register and Login font color */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.page-promotions-vip-program__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-vip-program__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.page-promotions-vip-program__faq-item[open] .page-promotions-vip-program__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-vip-program__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #e0e0e0;
}

/* CTA Section */
.page-promotions-vip-program__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #1a1a2e;
    color: #ffffff;
}

.page-promotions-vip-program__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFF00; /* Register and Login font color */
}

.page-promotions-vip-program__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-promotions-vip-program__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-vip-program__hero-title {
        font-size: 3em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 2.2em;
    }
}

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

    .page-promotions-vip-program__hero-section {
        min-height: 450px;
    }

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

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

    .page-promotions-vip-program__hero-buttons,
    .page-promotions-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-promotions-vip-program__btn-primary,
    .page-promotions-vip-program__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

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

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

    .page-promotions-vip-program__dark-bg,
    .page-promotions-vip-program__light-bg,
    .page-promotions-vip-program__tiers-section,
    .page-promotions-vip-program__exclusive-content-section,
    .page-promotions-vip-program__how-to-join-section,
    .page-promotions-vip-program__faq-section,
    .page-promotions-vip-program__cta-section {
        padding: 50px 0;
    }

    .page-promotions-vip-program__benefits-grid,
    .page-promotions-vip-program__tiers-grid,
    .page-promotions-vip-program__exclusive-grid,
    .page-promotions-vip-program__steps-list {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-program__benefit-card,
    .page-promotions-vip-program__tier-card,
    .page-promotions-vip-program__exclusive-item,
    .page-promotions-vip-program__steps-list li {
        padding: 25px;
    }

    .page-promotions-vip-program__benefit-icon,
    .page-promotions-vip-program__tier-badge,
    .page-promotions-vip-program__exclusive-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .page-promotions-vip-program img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions-vip-program__section,
    .page-promotions-vip-program__card,
    .page-promotions-vip-program__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-vip-program__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset is applied */
    }

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

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

    .page-promotions-vip-program__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-vip-program__faq-answer {
        padding: 10px 20px 15px;
    }
}

/* Contrast Fixes (if needed) */
.page-promotions-vip-program__contrast-fix {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
}

.page-promotions-vip-program__text-contrast-fix {
    color: #333333 !important;
    text-shadow: none !important;
}