/* style/vip-program.css */

/* Global styles for the page content */
.page-vip-program {
    background-color: #08160F; /* Custom Background */
    color: #F2FFF6; /* Custom Text Main for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 0; /* Handled by body padding-top in shared.css */
}

/* Section base styles */
.page-vip-program__section {
    padding: 60px 20px;
    text-align: center;
}

/* Container for content width limitation */
.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for smaller screens */
    box-sizing: border-box;
}

/* Section titles */
.page-vip-program__section-title {
    color: #F2FFF6; /* Custom Text Main */
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Text blocks/paragraphs */
.page-vip-program__text-block {
    color: #F2FFF6; /* Custom Text Main */
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Hero Section --- */
.page-vip-program__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for separation */
    overflow: hidden;
    background-color: #08160F; /* Ensure hero section has a background */
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and content */
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-vip-program__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 15px; /* Ensure content has padding on smaller screens */
    box-sizing: border-box;
}

.page-vip-program__hero-title {
    color: #F2FFF6; /* Custom Text Main */
    font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-vip-program__hero-description {
    color: #A7D9B8; /* Custom Text Secondary */
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__hero-cta {
    margin-top: 30px;
}

/* --- Buttons --- */
.page-vip-program__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button Gradient */
    color: #F2FFF6; /* Custom Text Main */
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-vip-program__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* --- Introduction Section --- */
.page-vip-program__introduction-section {
    background-color: #08160F; /* Custom Background */
}

/* --- Levels Section --- */
.page-vip-program__levels-section {
    background-color: #08160F; /* Custom Background */
}

.page-vip-program__levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-program__level-card {
    background-color: #11271B; /* Custom Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Custom Border */
}

.page-vip-program__level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-program__level-image {
    width: 100%;
    max-width: 400px; /* Ensure image fits card */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-vip-program__level-title {
    color: #F2FFF6; /* Custom Text Main */
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-vip-program__level-description {
    color: #A7D9B8; /* Custom Text Secondary */
    font-size: 1em;
}

/* --- Benefits Section --- */
.page-vip-program__benefits-section {
    background-color: #08160F; /* Custom Background */
}

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

.page-vip-program__benefit-card {
    background-color: #11271B; /* Custom Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Custom Border */
}

.page-vip-program__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-program__benefit-image {
    width: 100%;
    max-width: 500px; /* Ensure image fits card */
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-vip-program__benefit-title {
    color: #F2FFF6; /* Custom Text Main */
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-vip-program__benefit-description {
    color: #A7D9B8; /* Custom Text Secondary */
    font-size: 1em;
}

/* --- How to Join Section --- */
.page-vip-program__how-to-join-section {
    background-color: #08160F; /* Custom Background */
}

.page-vip-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-program__step-card {
    background-color: #11271B; /* Custom Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #2E7A4E; /* Custom Border */
}

.page-vip-program__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-vip-program__step-title {
    color: #F2FFF6; /* Custom Text Main */
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-vip-program__step-description {
    color: #A7D9B8; /* Custom Text Secondary */
    font-size: 1em;
}

.page-vip-program__cta-bottom {
    margin-top: 50px;
}

/* --- FAQ Section --- */
.page-vip-program__faq-section {
    background-color: #08160F; /* Custom Background */
}

.page-vip-program__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-vip-program__faq-item {
    background-color: #11271B; /* Custom Card BG */
    border: 1px solid #2E7A4E; /* Custom Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-program__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-vip-program__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-vip-program__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: #F2FFF6; /* Custom Text Main */
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-vip-program__faq-question:hover {
    background-color: rgba(46, 122, 78, 0.2); /* Lighter border color for hover */
}

.page-vip-program__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #2AD16F; /* Button gradient start color */
}

.page-vip-program__faq-item[open] .page-vip-program__faq-toggle {
    content: "−"; /* Change to minus when open */
}

.page-vip-program__faq-answer {
    padding: 0 25px 20px 25px;
    color: #A7D9B8; /* Custom Text Secondary */
    font-size: 1em;
    line-height: 1.5;
}

/* --- Conclusion Section --- */
.page-vip-program__conclusion-section {
    background-color: #08160F; /* Custom Background */
    padding-bottom: 80px;
}

.page-vip-program__cta-final {
    margin-top: 50px;
}

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

@media (max-width: 768px) {
    .page-vip-program__section {
        padding: 40px 15px;
    }
    .page-vip-program__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-vip-program__text-block {
        font-size: 1em;
    }

    /* Hero section adjustments */
    .page-vip-program__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-vip-program__hero-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-vip-program__hero-description {
        font-size: 1em;
    }
    .page-vip-program__hero-image-wrapper {
        margin-bottom: 20px;
    }

    /* Image responsiveness (MUST BE INCLUDED) */
    .page-vip-program img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-program__section,
    .page-vip-program__card,
    .page-vip-program__container,
    .page-vip-program__level-card,
    .page-vip-program__benefit-card,
    .page-vip-program__step-card,
    .page-vip-program__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent overflow */
    }
    /* Specific padding for sections that might not have it */
    .page-vip-program__introduction-section .page-vip-program__container,
    .page-vip-program__levels-section .page-vip-program__container,
    .page-vip-program__benefits-section .page-vip-program__container,
    .page-vip-program__how-to-join-section .page-vip-program__container,
    .page-vip-program__faq-section .page-vip-program__container,
    .page-vip-program__conclusion-section .page-vip-program__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Button responsiveness (MUST BE INCLUDED) */
    .page-vip-program__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .page-vip-program__hero-cta,
    .page-vip-program__cta-bottom,
    .page-vip-program__cta-final {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 15px; /* Space between buttons if multiple */
    }

    /* FAQ adjustments */
    .page-vip-program__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-vip-program__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-vip-program__section-title {
        font-size: 1.5em;
    }
    .page-vip-program__hero-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-vip-program__level-title,
    .page-vip-program__benefit-title,
    .page-vip-program__step-title {
        font-size: 1.5em;
    }
}