/* style/vip-program.css */

/* Base Styles for the VIP Program Page */
.page-vip-program {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #f0f2f5; /* Light background for readability */
    color: #333333; /* Dark text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    background-color: #0A2342;
    color: #ffffff;
    padding: 80px 20px 40px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-vip-program__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.page-vip-program__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
}

.page-vip-program__hero-content {
    max-width: 900px;
    margin: 0 auto 40px;
    z-index: 1;
}

.page-vip-program__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-vip-program__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-program__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* General Section Styles */
.page-vip-program__section-title {
    font-size: 2.8em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

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

/* Benefits Overview */
.page-vip-program__benefits-overview {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.page-vip-program__benefit-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__benefit-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
    object-fit: contain;
}

.page-vip-program__card-title {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-vip-program__card-description {
    font-size: 1em;
    color: #666666;
}

/* How It Works Section */
.page-vip-program__how-it-works {
    padding: 60px 20px;
    background-color: #e8eef4;
}

.page-vip-program__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-vip-program__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.page-vip-program__step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #FFD700;
    color: #0A2342;
    font-size: 2.5em;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    transform: rotate(-15deg);
}

.page-vip-program__cta-small-button {
    display: inline-block;
    background-color: #0A2342;
    color: #FFD700;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-program__cta-small-button:hover {
    background-color: #1a3a5e;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-vip-program__faq-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.page-vip-program__faq-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.page-vip-program__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-program__faq-question {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-vip-program__faq-answer {
    font-size: 1em;
    color: #666666;
    display: block; /* Initially hidden, can be toggled with JS */
}

/* Details List Section */
.page-vip-program__details-list {
    padding: 60px 20px;
    background-color: #e8eef4;
}

.page-vip-program__list-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-vip-program__list-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-vip-program__item-title {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-vip-program__item-title a {
    color: #0A2342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vip-program__item-title a:hover {
    color: #FFD700;
}

.page-vip-program__item-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 15px;
}

/* Call to Action Bottom */
.page-vip-program__cta-bottom {
    background-color: #0A2342;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-vip-program__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-vip-program__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-program__hero-title {
        font-size: 2.8em;
    }
    .page-vip-program__hero-description {
        font-size: 1.1em;
    }
    .page-vip-program__section-title {
        font-size: 2.2em;
    }
    .page-vip-program__card-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-vip-program {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-vip-program__hero-section {
        padding: 60px 15px 30px;
    }
    .page-vip-program__hero-title {
        font-size: 2.2em;
    }
    .page-vip-program__hero-description {
        font-size: 1em;
    }
    .page-vip-program__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-program__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-vip-program__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-vip-program__benefits-grid, .page-vip-program__steps-container {
        grid-template-columns: 1fr;
    }
    .page-vip-program__benefit-card, .page-vip-program__step-card, .page-vip-program__faq-item, .page-vip-program__list-item {
        padding: 20px;
    }
    .page-vip-program__benefit-card img, .page-vip-program__faq-item img, .page-vip-program__list-item img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min-width */
        min-height: 200px; /* Enforce min-height */
        object-fit: contain;
    }
    .page-vip-program__faq-question {
        font-size: 1.2em;
    }
    .page-vip-program__item-title {
        font-size: 1.3em;
    }
    .page-vip-program__cta-title {
        font-size: 2em;
    }
    .page-vip-program__cta-text {
        font-size: 1em;
    }

    /* Prevent content overflow on mobile */
    .page-vip-program img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-vip-program__hero-title {
        font-size: 1.8em;
    }
    .page-vip-program__hero-description {
        font-size: 0.9em;
    }
    .page-vip-program__section-title {
        font-size: 1.5em;
    }
    .page-vip-program__cta-title {
        font-size: 1.8em;
    }
}

/* Ensure all images within the main content area are large enough */
.page-vip-program img {
    min-width: 200px;
    min-height: 200px;
}