/* style/vip-program.css */
.page-vip-program {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

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

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFC107; /* Secondary brand color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

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

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

.page-vip-program__button {
    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;
    white-space: nowrap;
}

.page-vip-program__button--primary {
    background-color: #FFC107; /* Secondary brand color */
    color: #007BFF; /* Primary brand color for text */
    border: 2px solid #FFC107;
}

.page-vip-program__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-vip-program__button--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-vip-program__button--secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

.page-vip-program__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

.page-vip-program__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* General Section Styling */
.page-vip-program__what-is-section,
.page-vip-program__benefits-section,
.page-vip-program__status-elevation-section,
.page-vip-program__exclusive-games-section,
.page-vip-program__support-section,
.page-vip-program__cta-section,
.page-vip-program__faq-section {
    padding: 60px 0;
}

.page-vip-program__what-is-section,
.page-vip-program__status-elevation-section,
.page-vip-program__exclusive-games-section {
    background-color: #f9f9f9;
}

.page-vip-program__section-title {
    font-size: 2.8em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-vip-program__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

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

.page-vip-program__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-program__grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 600px; /* Enforce min-width for content images */
    height: 450px;
    object-fit: cover;
}

.page-vip-program__grid-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

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

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

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

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

.page-vip-program__benefit-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 400px; /* Enforce min-width for card images */
    height: 300px;
    object-fit: cover;
}

.page-vip-program__benefit-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 10px;
}

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

/* CTA Section */
.page-vip-program__cta-section {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-vip-program__cta-section .page-vip-program__section-title {
    color: #FFC107;
}

.page-vip-program__cta-section .page-vip-program__section-title::after {
    background-color: #FFC107;
}

.page-vip-program__cta-section .page-vip-program__section-intro {
    color: #f0f0f0;
    margin-bottom: 40px;
}

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

.page-vip-program__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-vip-program__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-vip-program__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFC107;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-vip-program__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-vip-program__faq-answer {
    font-size: 1em;
    color: #666666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-vip-program__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-program__hero-title {
        font-size: 3em;
    }
    .page-vip-program__section-title {
        font-size: 2.2em;
    }
    .page-vip-program__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-program__button--large {
        padding: 15px 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-vip-program {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }
    .page-vip-program__hero-title {
        font-size: 2.5em;
    }
    .page-vip-program__hero-description {
        font-size: 1.1em;
    }
    .page-vip-program__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-program__button {
        width: 100%;
        max-width: 300px;
    }
    .page-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-vip-program__section-intro {
        font-size: 1em;
    }
    .page-vip-program__grid,
    .page-vip-program__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-program__grid-item img,
    .page-vip-program__benefit-card img {
        max-width: 100%;
        height: auto;
        width: 100%; /* Ensure content images are responsive */
        min-height: 200px; /* Maintain minimum height for images */
        object-fit: cover;
    }
    /* Ensure no horizontal scroll */
    .page-vip-program__container {
        padding: 0 15px;
    }
    .page-vip-program__hero-section,
    .page-vip-program__what-is-section,
    .page-vip-program__benefits-section,
    .page-vip-program__status-elevation-section,
    .page-vip-program__exclusive-games-section,
    .page-vip-program__support-section,
    .page-vip-program__cta-section,
    .page-vip-program__faq-section {
        padding: 40px 0;
    }
}