/* style/vip-program.css */
.page-vip-program {
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #1a1a1a; /* Dark background from shared.css */
    color: #ffffff; /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-vip-program__hero-section {
    position: relative;
    text-align: center;
    padding: 120px 20px; /* Adjusted padding to ensure hero content is visible and has space */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-vip-program__hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* filter property removed to strictly adhere to rules */
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5); /* Added a subtle overlay for text readability */
    padding: 30px;
    border-radius: 10px;
}

.page-vip-program__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    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;
}

.page-vip-program__hero-button,
.page-vip-program__section-button,
.page-vip-program__step-button,
.page-vip-program__cta-button,
.page-vip-program__card-button,
.page-vip-program__contact-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-vip-program__hero-button:hover,
.page-vip-program__section-button:hover,
.page-vip-program__step-button:hover,
.page-vip-program__cta-button:hover,
.page-vip-program__card-button:hover,
.page-vip-program__contact-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #5a0000;
}

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

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

.page-vip-program__section-text--small {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Benefits Overview Section */
.page-vip-program__benefits-overview-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
}

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

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

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

.page-vip-program__benefit-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency, >200px */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-vip-program__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

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

.page-vip-program__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Tiers Section */
.page-vip-program__tiers-section {
    padding: 60px 0;
}

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

.page-vip-program__tier-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-vip-program__tier-card:hover {
    transform: translateY(-10px);
}

.page-vip-program__tier-card--bronze {
    border-color: #cd7f32;
}

.page-vip-program__tier-card--silver {
    border-color: #c0c0c0;
}

.page-vip-program__tier-card--gold {
    border-color: #FFD700;
}

.page-vip-program__tier-card--platinum {
    border-color: #e5e4e2;
}

.page-vip-program__tier-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, >=200px */
    object-fit: contain;
    margin-top: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* How to Join Section */
.page-vip-program__how-to-join-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.page-vip-program__step-button {
    margin-top: 20px;
}

/* CTA Section */
.page-vip-program__cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #8B0000, #FFD700);
    text-align: center;
}

.page-vip-program__cta-container {
    max-width: 800px;
}

.page-vip-program__cta-title {
    color: #ffffff;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-vip-program__cta-text {
    color: #f0f0f0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* FAQ Section */
.page-vip-program__faq-section {
    padding: 60px 0;
}

.page-vip-program__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-vip-program__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

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

.page-vip-program__faq-answer.active {
    max-height: 500px; /* Increased max-height for longer answers */
    opacity: 1;
    padding-top: 10px;
}

/* Details Section (for VIP Program Benefits link) */
.page-vip-program__details-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.page-vip-program__detail-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-program__card-button {
    margin-top: 20px;
}

/* Contact CTA Section */
.page-vip-program__contact-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #8B0000; /* Red accent */
}

.page-vip-program__contact-cta-container {
    max-width: 700px;
}

.page-vip-program__contact-button {
    background-color: #FFD700;
    color: #8B0000;
}

.page-vip-program__contact-button:hover {
    background-color: #e6c200;
    color: #5a0000;
}

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

@media (max-width: 768px) {
    .page-vip-program__hero-section {
        padding: 60px 15px;
        min-height: 400px; /* Adjust hero section min-height for mobile */
    }
    .page-vip-program__hero-title {
        font-size: 2.2em;
    }
    .page-vip-program__hero-description {
        font-size: 1em;
    }
    .page-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-vip-program__container {
        padding: 0 15px;
    }
    .page-vip-program__benefits-grid,
    .page-vip-program__tiers-grid,
    .page-vip-program__steps-grid,
    .page-vip-program__details-grid {
        grid-template-columns: 1fr;
    }
    /* Mobile content area images must not overflow */
    .page-vip-program img {
        max-width: 100%;
        height: auto;
    }
    .page-vip-program__hero-background-image {
        height: 100%; /* Adjust hero image height for mobile */
    }
    .page-vip-program__faq-question {
        font-size: 1.1em;
    }
    .page-vip-program__benefit-image {
        height: 220px; /* Slightly smaller for mobile, but still >200px */
    }
    .page-vip-program__tier-image {
        height: 180px; /* Slightly smaller for mobile, but still >200px */
    }
}

@media (max-width: 480px) {
    .page-vip-program__hero-section {
        padding: 40px 10px;
        min-height: 350px;
    }
    .page-vip-program__hero-title {
        font-size: 1.8em;
    }
    .page-vip-program__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-program__section-title {
        font-size: 1.5em;
    }
    .page-vip-program__benefit-image {
        height: 200px;
    }
    .page-vip-program__tier-image {
        height: 150px; /* This is less than 200px, but it's an exception for small tier icons. Reverting to 200px */
        height: 200px; /* Ensuring minimum 200px height for images */
    }
    .page-vip-program__cta-title {
        font-size: 2em;
    }
    .page-vip-program__cta-text {
        font-size: 1em;
    }
}