/* vip-club.css */

.page-vip-club {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    padding-top: 10px; /* Small padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #F4F7FB; /* Consistent background */
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
}

.page-vip-club__hero-image-wrapper {
    width: 100%;
    max-width: 1390px; /* Boxed layout */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px; /* Soft corners */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.page-vip-club__hero-content {
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-vip-club__main-title {
    color: #1F2D3D; /* Text Main */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    /* No fixed large font-size, use responsive scaling via media queries if needed */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Example clamp for responsive H1 */
}

.page-vip-club__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

.page-vip-club__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-vip-club__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-vip-club__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-vip-club__button--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-vip-club__button--secondary {
    background-color: #FFFFFF; /* Card BG */
    color: #2F6BFF; /* Main color */
    border: 2px solid #2F6BFF; /* Main color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__button--secondary:hover {
    background-color: #D6E2FF; /* Border color as hover bg */
    color: #1F2D3D; /* Text Main */
    border-color: #1F2D3D;
}

.page-vip-club__button--detail {
    background-color: transparent;
    color: #2F6BFF;
    border: 1px solid #2F6BFF;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-vip-club__button--detail:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
}


/* Section Titles */
.page-vip-club__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    line-height: 1.3;
}

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 40px 20px 80px;
    max-width: 1390px;
    margin: 0 auto;
}

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

.page-vip-club__benefit-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-vip-club__benefit-image {
    width: 100%; /* Max width for image within card */
    height: auto;
    min-height: 200px; /* Ensure min size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-vip-club__benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-vip-club__benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

/* Tiers Section */
.page-vip-club__tiers-section {
    padding: 40px 20px 80px;
    max-width: 1390px;
    margin: 0 auto;
}

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

.page-vip-club__tier-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-vip-club__tier-image {
    width: 100%; /* Max width for image within card */
    height: auto;
    min-height: 200px; /* Ensure min size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-vip-club__tier-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-vip-club__tier-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
    padding: 40px 20px 80px;
    max-width: 1390px;
    margin: 0 auto;
    text-align: center;
}

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

.page-vip-club__step-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    position: relative;
    padding-top: 60px; /* Space for number */
}

.page-vip-club__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #2F6BFF; /* Main color */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(47, 107, 255, 0.4);
}

.page-vip-club__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-vip-club__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

.page-vip-club__join-cta {
    margin-top: 40px;
    padding: 30px;
    background-color: #F4F7FB; /* Background color */
    border-radius: 12px;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-vip-club__join-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

/* FAQ Section */
.page-vip-club__faq-section {
    padding: 40px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-vip-club__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-vip-club__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-vip-club__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's clickable for accordion */
    position: relative;
    padding-right: 30px; /* Space for icon */
}

.page-vip-club__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
    color: #2F6BFF; /* Main color */
}

.page-vip-club__faq-question.active::after {
    content: '-';
}

.page-vip-club__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    display: none; /* Hidden by default for accordion */
    padding-top: 10px;
    border-top: 1px solid #D6E2FF; /* Border color */
    margin-top: 10px;
}

.page-vip-club__faq-answer.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-vip-club__hero-content {
        margin-top: 20px;
    }
    .page-vip-club__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-vip-club__hero-description {
        font-size: 1rem;
    }
    .page-vip-club__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__button {
        width: 80%;
        max-width: 300px;
    }
    .page-vip-club__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-vip-club__benefits-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__steps-container {
        grid-template-columns: 1fr;
    }
    .page-vip-club__benefit-card,
    .page-vip-club__tier-card,
    .page-vip-club__step-card {
        padding: 20px;
    }
    .page-vip-club__benefit-image,
    .page-vip-club__tier-image {
        max-width: 100%;
        height: auto;
        min-height: 200px; /* Still maintain min size */
    }
    /* Ensure all images within .page-vip-club are responsive */
    .page-vip-club img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content images are not too small */
.page-vip-club__benefits-section img,
.page-vip-club__tiers-section img {
    min-width: 200px;
    min-height: 200px;
}

/* CSS for images in content area - must not be smaller than 200px */
.page-vip-club__benefits-section .page-vip-club__benefit-image,
.page-vip-club__tiers-section .page-vip-club__tier-image,
.page-vip-club__how-to-join-section .page-vip-club__step-card img { /* if steps had images */
    width: 100%; /* Will be constrained by parent grid */
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}
/* No filter property on images */
.page-vip-club img {
    filter: none;
}