/* style/vip-program.css */

/* --- Base Styles --- */
.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
    padding-top: 0; /* Assuming shared.css handles body padding-top */
}

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

.page-vip-program__section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

.page-vip-program__dark-bg {
    background-color: #1a1a1a; /* Matching body background for consistency */
    color: #ffffff;
}

.page-vip-program__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
}

.page-vip-program__section-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff; /* Default for dark background */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-vip-program__light-bg .page-vip-program__section-title {
    color: #017439; /* Brand color for light background titles */
    text-shadow: none;
}

.page-vip-program__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

/* --- Hero Section --- */
.page-vip-program__hero-section {
    padding: 120px 0 80px 0; /* Internal spacing for hero content */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.page-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-vip-program__hero-section .page-vip-program__container {
    z-index: 1;
    position: relative;
    padding-top: 0; /* Assuming shared.css handles body padding-top */
}

.page-vip-program__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

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

.page-vip-program__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-program__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

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

.page-vip-program__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-vip-program__btn-secondary:hover {
    background-color: #C30808;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- VIP Tiers Section --- */
.page-vip-program__tiers {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-vip-program__tier-card {
    background-color: #ffffff; /* White background for tier cards */
    color: #333333; /* Dark text for light background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.page-vip-program__tier-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__tier-title {
    font-size: 1.8em;
    color: #017439; /* Brand color for titles */
    margin-bottom: 15px;
}

.page-vip-program__tier-description {
    font-size: 0.95em;
    margin-bottom: 20px;
    color: #555555;
}

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-vip-program__tier-benefits li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.9em;
    color: #666666;
    display: flex;
    align-items: center;
}

.page-vip-program__tier-benefits li:last-child {
    border-bottom: none;
}

.page-vip-program__tier-benefits li::before {
    content: '✓';
    color: #017439;
    font-weight: bold;
    margin-right: 10px;
}

/* --- Benefits Section --- */
.page-vip-program__benefits {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.page-vip-program__benefit-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.page-vip-program__benefit-title {
    font-size: 2em;
    color: #FFFF00; /* Yellow for benefit titles */
    margin-bottom: 20px;
}

.page-vip-program__benefit-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    display: block;
}

.page-vip-program__benefit-text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

/* --- How To Join Section --- */
.page-vip-program__how-to-join {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-program__how-to-join .page-vip-program__section-title {
    color: #017439;
}

.page-vip-program__how-to-join .page-vip-program__section-description {
    color: #555555;
}

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

.page-vip-program__step-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-vip-program__step-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 20px;
}

.page-vip-program__step-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    display: block;
}

.page-vip-program__step-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-vip-program__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-vip-program__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.page-vip-program__faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-vip-program__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-program__faq-question h3 {
    margin: 0;
    font-size: 1.1em;
    color: #ffffff;
}

.page-vip-program__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFFF00;
}

.page-vip-program__faq-item.active .page-vip-program__faq-toggle {
    transform: rotate(45deg); /* Plus sign becomes a cross */
}