/* style/vip-club-benefits.css */
.page-vip-club-benefits {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-vip-club-benefits__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
    color: #FFFFFF; /* White text for hero section */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-vip-club-benefits__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-vip-club-benefits__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-vip-club-benefits__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #D3D3D3; /* Lighter gray for subtitle */
}

.page-vip-club-benefits__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    filter: grayscale(100%);
}

.page-vip-club-benefits__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-vip-club-benefits__section {
    padding: 60px 0;
}

.page-vip-club-benefits__section--benefits {
    background-color: #0A2342;
}

.page-vip-club-benefits__section--how-to-join {
    background-color: #1a3a60; /* Slightly lighter dark blue */
}

.page-vip-club-benefits__section--faq {
    background-color: #0A2342;
}

.page-vip-club-benefits__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-vip-club-benefits__section-description {
    font-size: 1.1em;
    color: #D3D3D3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-vip-club-benefits__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-vip-club-benefits__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-vip-club-benefits__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-vip-club-benefits__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-vip-club-benefits__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

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

.page-vip-club-benefits__benefit-item {
    background-color: #1a3a60; /* Darker blue for benefit cards */
    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-club-benefits__benefit-item:hover {
    transform: translateY(-5px);
    background-color: #2c5282; /* Slightly lighter on hover */
}

.page-vip-club-benefits__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-vip-club-benefits__benefit-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for benefit titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club-benefits__benefit-text {
    font-size: 1em;
    color: #E0E0E0;
}

.page-vip-club-benefits__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

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

.page-vip-club-benefits__step-item {
    background-color: #0A2342;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-vip-club-benefits__step-number {
    font-size: 3em;
    color: rgba(255, 215, 0, 0.2); /* Faded gold for numbers */
    position: absolute;
    top: 10px;
    left: 20px;
    font-weight: bold;
    z-index: 0;
}

.page-vip-club-benefits__step-item h3 {
    position: relative;
    z-index: 1;
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club-benefits__step-item p {
    position: relative;
    z-index: 1;
    color: #E0E0E0;
    font-size: 1em;
}

.page-vip-club-benefits__faq-grid {
    margin-top: 40px;
}

.page-vip-club-benefits__faq-item {
    background-color: #1a3a60;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-benefits__faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-vip-club-benefits__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

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

.page-vip-club-benefits__faq-answer.open {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 15px;
}

.page-vip-club-benefits__cta-section {
    background: linear-gradient(90deg, #0A2342, #FFD700); /* Gradient for CTA section */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-vip-club-benefits__cta-title {
    font-size: 3em;
    color: #0A2342; /* Dark blue on gold gradient */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-club-benefits__cta-description {
    font-size: 1.3em;
    color: #333333; /* Darker text for readability on lighter background */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club-benefits__title {
        font-size: 2.8em;
    }
    .page-vip-club-benefits__section-title {
        font-size: 2.2em;
    }
    .page-vip-club-benefits__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-benefits__hero {
        padding: 60px 0;
    }
    .page-vip-club-benefits__title {
        font-size: 2.2em;
    }
    .page-vip-club-benefits__subtitle {
        font-size: 1.2em;
    }
    .page-vip-club-benefits__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-club-benefits__button--secondary {
        margin-left: 10px;
    }
    .page-vip-club-benefits__section {
        padding: 40px 0;
    }
    .page-vip-club-benefits__section-title {
        font-size: 1.8em;
    }
    .page-vip-club-benefits__section-description {
        font-size: 1em;
    }
    .page-vip-club-benefits__benefit-grid, .page-vip-club-benefits__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club-benefits__cta-title {
        font-size: 2em;
    }
    .page-vip-club-benefits__cta-description {
        font-size: 1.1em;
    }
    .page-vip-club-benefits__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club-benefits__button--secondary {
        margin-left: 0;
    }
    .page-vip-club-benefits__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-vip-club-benefits__hero {
        padding: 40px 0;
    }
    .page-vip-club-benefits__title {
        font-size: 1.8em;
    }
    .page-vip-club-benefits__subtitle {
        font-size: 1em;
    }
    .page-vip-club-benefits__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-vip-club-benefits__section-title {
        font-size: 1.5em;
    }
    .page-vip-club-benefits__benefit-item, .page-vip-club-benefits__step-item {
        padding: 20px;
    }
    .page-vip-club-benefits__benefit-title, .page-vip-club-benefits__step-item h3 {
        font-size: 1.4em;
    }
    .page-vip-club-benefits__cta-title {
        font-size: 1.8em;
    }
    .page-vip-club-benefits__cta-description {
        font-size: 1em;
    }
}