/* style/vip-club-tiers.css */
.page-vip-club-tiers {
    font-family: 'Arial', sans-serif;
    color: #e5dfca; /* Light text for dark background */
    background-color: #1A2035; /* Main background color */
}

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

.page-vip-club-tiers__hero {
    background: linear-gradient(135deg, #1A2035 0%, #3a4768 100%); /* Dark blue to slightly lighter blue for depth */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for main titles */
    position: relative;
    overflow: hidden;
}

.page-vip-club-tiers__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 32, 53, 0) 70%);
    animation: page-vip-club-tiers__pulse 10s infinite alternate;
    z-index: 0;
}

@keyframes page-vip-club-tiers__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.page-vip-club-tiers__hero > .page-vip-club-tiers__container {
    position: relative;
    z-index: 1;
}

.page-vip-club-tiers__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700; /* Gold for main title */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-vip-club-tiers__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e5dfca; /* Light text for subtitle */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-vip-club-tiers__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-vip-club-tiers__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2035; /* Dark text on gold */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-club-tiers__button--primary:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-vip-club-tiers__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-vip-club-tiers__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2035;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-vip-club-tiers__intro-section {
    padding: 80px 0;
    background-color: #1A2035;
}

.page-vip-club-tiers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-vip-club-tiers__intro-content h2 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-vip-club-tiers__intro-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e5dfca;
}

.page-vip-club-tiers__intro-content p strong {
    color: #FFD700;
}

.page-vip-club-tiers__intro-image {
    text-align: center;
}

.page-vip-club-tiers__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-club-tiers__section-heading {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.page-vip-club-tiers__text-center {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
    color: #e5dfca;
}

.page-vip-club-tiers__how-it-works {
    padding: 80px 0;
    background-color: #232a42; /* Slightly lighter dark blue */
}

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

.page-vip-club-tiers__step-card {
    background-color: #1A2035;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-tiers__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.page-vip-club-tiers__step-card h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-vip-club-tiers__step-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #e5dfca;
}

.page-vip-club-tiers__vip-levels {
    padding: 80px 0;
    background-color: #1A2035;
}

.page-vip-club-tiers__level-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club-tiers__level-card {
    background-color: #232a42;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-top: 5px solid transparent; /* Placeholder for border color */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-vip-club-tiers__level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-vip-club-tiers__level-card--bronze {
    border-color: #CD7F32; /* Bronze color */
}
.page-vip-club-tiers__level-card--silver {
    border-color: #C0C0C0; /* Silver color */
}
.page-vip-club-tiers__level-card--gold {
    border-color: #FFD700; /* Gold color */
}
.page-vip-club-tiers__level-card--platinum {
    border-color: #E5E4E2; /* Platinum color */
}
.page-vip-club-tiers__level-card--diamond {
    border-color: #B9F2FF; /* Diamond color */
}
.page-vip-club-tiers__level-card--elite {
    border-color: #00FFFF; /* Cyan for Elite/Ultimate */
}

.page-vip-club-tiers__level-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.page-vip-club-tiers__level-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: #e5dfca;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-vip-club-tiers__level-info h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 5px;
}

.page-vip-club-tiers__level-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-club-tiers__level-info li {
    font-size: 1em;
    line-height: 1.6;
    color: #e5dfca;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-vip-club-tiers__level-info li::before {
    content: '★'; /* Star icon */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}

.page-vip-club-tiers__benefits-summary {
    padding: 80px 0;
    background-color: #232a42;
}

.page-vip-club-tiers__benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
}

.page-vip-club-tiers__benefit-list li {
    background-color: #1A2035;
    border-radius: 10px;
    padding: 25px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #e5dfca;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-vip-club-tiers__benefit-list li:hover {
    transform: translateY(-5px);
}

.page-vip-club-tiers__benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-vip-club-tiers__benefit-list li strong {
    color: #FFD700;
}

.page-vip-club-tiers__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club-tiers__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e5dfca;
}

.page-vip-club-tiers__faq {
    padding: 80px 0;
    background-color: #1A2035;
}

.page-vip-club-tiers__faq-item {
    background-color: #232a42;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-vip-club-tiers__faq-item:hover {
    background-color: #2b3552;
}

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

.page-vip-club-tiers__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-club-tiers__title {
        font-size: 2.8em;
    }
    .page-vip-club-tiers__subtitle {
        font-size: 1.1em;
    }
    .page-vip-club-tiers__section-heading {
        font-size: 2.2em;
    }
    .page-vip-club-tiers__grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club-tiers__intro-image {
        order: -1; /* Image above text on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-vip-club-tiers__hero {
        padding: 80px 0;
    }
    .page-vip-club-tiers__title {
        font-size: 2.2em;
    }
    .page-vip-club-tiers__subtitle {
        font-size: 1em;
    }
    .page-vip-club-tiers__cta-group {
        flex-direction: column;
    }
    .page-vip-club-tiers__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-vip-club-tiers__steps-grid, .page-vip-club-tiers__level-cards-grid, .page-vip-club-tiers__benefit-list {
        grid-template-columns: 1fr;
    }
    .page-vip-club-tiers__level-card {
        padding: 25px;
    }
    .page-vip-club-tiers__level-title {
        font-size: 1.8em;
    }
    .page-vip-club-tiers__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-vip-club-tiers__title {
        font-size: 1.8em;
    }
    .page-vip-club-tiers__section-heading {
        font-size: 1.8em;
    }
    .page-vip-club-tiers__step-card h3 {
        font-size: 1.5em;
    }
    .page-vip-club-tiers__benefit-list li {
        flex-direction: column;
        text-align: center;
    }
    .page-vip-club-tiers__benefit-icon {
        margin-bottom: 10px;
    }
}