/* style/vip-program.css */

/* Base styles for the VIP Program page */
.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #1a1a2e; /* Inherited from body, but reinforce for context */
}

/* Sections */
.page-vip-program__hero-section,
.page-vip-program__overview-section,
.page-vip-program__levels-section,
.page-vip-program__benefits-detail-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section,
.page-vip-program__cta-final-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

.page-vip-program__hero-section {
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); /* Dark overlay for image */
    position: relative;
    z-index: 1;
}

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

.page-vip-program__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the background image */
}

.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 2;
}

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-vip-program__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__text-block a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-program__text-block a:hover {
    text-decoration: underline;
}

/* Buttons */
.page-vip-program__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-vip-program__btn-primary,
.page-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, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Crucial for responsive buttons */
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-vip-program__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-vip-program__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
}

.page-vip-program__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-vip-program__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

/* Image content */
.page-vip-program__image-content {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* VIP Levels Section */
.page-vip-program__levels-section {
    background-color: #1a1a2e; /* Dark background */
    color: #ffffff;
}

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

.page-vip-program__vip-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-program__vip-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-program__vip-card-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__vip-card-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-vip-program__vip-card-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #f0f0f0;
}

.page-vip-program__vip-card-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-vip-program__vip-card-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #26A9E0;
}

/* Benefits Detail Section */
.page-vip-program__benefits-detail-section {
    background-color: #1a1a2e;
    color: #ffffff;
}

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

.page-vip-program__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-vip-program__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__feature-description {
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-vip-program__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

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

.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: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-vip-program__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program__step-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__step-description {
    color: #f0f0f0;
}

/* FAQ Section */
.page-vip-program__faq-section {
    background-color: #1a1a2e;
    color: #ffffff;
}

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

.page-vip-program__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    border-radius: 8px;
    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;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page-vip-program__faq-qtext {
    flex-grow: 1;
    color: #FFFFFF; /* Ensure text color is white */
}

.page-vip-program__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-vip-program__faq-item[open] .page-vip-program__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-vip-program__faq-answer {
    padding: 20px 25px;
    font-size: 1.05em;
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-vip-program__faq-answer a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-program__faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Final Section */
.page-vip-program__cta-final-section {
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
    padding-bottom: 80px;
}

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

@media (max-width: 768px) {
    .page-vip-program__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

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

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

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

    .page-vip-program__text-block {
        font-size: 1em;
    }

    .page-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-program__btn-primary,
    .page-vip-program__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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