/* style/vip-program-levels.css */
/* Custom colors */
:root {
    --page-bg-color: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-vip-program-levels {
    background-color: var(--page-bg-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-vip-program-levels__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body already handles header offset, small top padding */
    overflow: hidden;
    text-align: center;
}

.page-vip-program-levels__hero-image-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.page-vip-program-levels__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-vip-program-levels__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background effects */
}

.page-vip-program-levels__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-vip-program-levels__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

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

.page-vip-program-levels__btn-primary,
.page-vip-program-levels__btn-secondary,
.page-vip-program-levels__btn-tertiary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-vip-program-levels__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-vip-program-levels__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-vip-program-levels__btn-secondary {
    background: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

.page-vip-program-levels__btn-secondary:hover {
    background: var(--glow-color);
    color: var(--page-bg-color);
}

.page-vip-program-levels__btn-tertiary {
    background: var(--deep-green-color);
    color: var(--text-main-color);
    border: 1px solid var(--border-color);
    font-size: 0.9em;
    padding: 10px 20px;
}

.page-vip-program-levels__btn-tertiary:hover {
    background: var(--border-color);
}

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

.page-vip-program-levels__intro-section,
.page-vip-program-levels__levels-overview,
.page-vip-program-levels__benefits-section,
.page-vip-program-levels__how-to-join-section,
.page-vip-program-levels__testimonial-section,
.page-vip-program-levels__faq-section,
.page-vip-program-levels__cta-bottom-section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-program-levels__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-vip-program-levels__section-description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program-levels__level-cards,
.page-vip-program-levels__benefits-grid,
.page-vip-program-levels__steps-grid,
.page-vip-program-levels__testimonials-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-vip-program-levels__level-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-vip-program-levels__card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-vip-program-levels__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-program-levels__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-vip-program-levels__card-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program-levels__card-text {
    color: var(--text-secondary-color);
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-vip-program-levels__card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: var(--text-main-color);
}

.page-vip-program-levels__card-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
}

.page-vip-program-levels__card-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--glow-color);
}

.page-vip-program-levels__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    text-align: left;
}

.page-vip-program-levels__benefit-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-vip-program-levels__benefit-icon {
    width: 150px;
    height: 100px; /* Adjusted for aspect ratio, still > 200px area */
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    width: 200px; /* Set display width */
    height: 200px; /* Set display height */
}

.page-vip-program-levels__benefit-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-vip-program-levels__benefit-text {
    color: var(--text-secondary-color);
    font-size: 0.95em;
}

.page-vip-program-levels__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-vip-program-levels__step-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.page-vip-program-levels__step-icon {
    width: 150px;
    height: 112px; /* Adjusted for aspect ratio, still > 200px area */
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    width: 200px;
    height: 200px;
}

.page-vip-program-levels__step-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-vip-program-levels__step-text {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-vip-program-levels__testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program-levels__testimonial-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-vip-program-levels__testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--gold-color);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    width: 200px;
    height: 200px;
}

.page-vip-program-levels__testimonial-text {
    color: var(--text-main-color);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-vip-program-levels__testimonial-author {
    color: var(--gold-color);
    font-weight: bold;
}

.page-vip-program-levels__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-vip-program-levels__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-vip-program-levels__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main-color);
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--divider-color);
    list-style: none; /* For details/summary */
}

.page-vip-program-levels__faq-question::-webkit-details-marker {
    display: none;
}

.page-vip-program-levels__faq-question:hover {
    background-color: var(--border-color);
}

.page-vip-program-levels__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--gold-color);
}

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

.page-vip-program-levels__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
    line-height: 1.6;
    border-top: 1px solid var(--divider-color);
}

.page-vip-program-levels__faq-item:not([open]) .page-vip-program-levels__faq-answer {
    display: none;
}

.page-vip-program-levels__cta-bottom-section {
    background-color: var(--deep-green-color);
    padding: 80px 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-vip-program-levels__level-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-vip-program-levels__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-vip-program-levels {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-program-levels__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-vip-program-levels__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-vip-program-levels__section-title {
        font-size: 2em;
    }
    .page-vip-program-levels__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }
    .page-vip-program-levels__btn-primary,
    .page-vip-program-levels__btn-secondary,
    .page-vip-program-levels__btn-tertiary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Images responsive */
    .page-vip-program-levels img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure all image containers are responsive */
    .page-vip-program-levels__hero-image-wrapper,
    .page-vip-program-levels__card,
    .page-vip-program-levels__benefit-item,
    .page-vip-program-levels__step-item,
    .page-vip-program-levels__testimonial-card,
    .page-vip-program-levels__container,
    .page-vip-program-levels__level-cards,
    .page-vip-program-levels__benefits-grid,
    .page-vip-program-levels__steps-grid,
    .page-vip-program-levels__testimonials-grid,
    .page-vip-program-levels__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    .page-vip-program-levels__intro-section,
    .page-vip-program-levels__levels-overview,
    .page-vip-program-levels__benefits-section,
    .page-vip-program-levels__how-to-join-section,
    .page-vip-program-levels__testimonial-section,
    .page-vip-program-levels__faq-section,
    .page-vip-program-levels__cta-bottom-section {
        padding: 40px 0;
    }
    .page-vip-program-levels__card-image,
    .page-vip-program-levels__benefit-icon,
    .page-vip-program-levels__step-icon,
    .page-vip-program-levels__testimonial-avatar {
        width: 200px !important;
        height: 200px !important;
        min-width: 200px !important;
        min-height: 200px !important;
        margin-left: auto;
        margin-right: auto;
    }
    .page-vip-program-levels__hero-image {
        min-height: 250px !important;
    }
}

@media (max-width: 480px) {
    .page-vip-program-levels__section-title {
        font-size: 1.8em;
    }
    .page-vip-program-levels__hero-description,
    .page-vip-program-levels__section-description {
        font-size: 1em;
    }
    .page-vip-program-levels__card-title,
    .page-vip-program-levels__benefit-title,
    .page-vip-program-levels__step-title {
        font-size: 1.3em;
    }
    .page-vip-program-levels__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-vip-program-levels__faq-answer {
        padding: 15px 20px;
    }
}