/* style/vip-program.css */

/* --- Base Styles --- */
.page-vip-program {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Body background is dark, so text is light */
    background-color: transparent; /* inherited from body, which is #000000 */
}

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

.page-vip-program__section-title {
    font-size: 3em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-program__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-vip-program__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* --- Buttons --- */
.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;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-vip-program__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-vip-program__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-vip-program__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* --- Hero Section --- */
.page-vip-program__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

.page-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-vip-program__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-vip-program__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-vip-program__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #f0f0f0;
}

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

/* --- Intro Section --- */
.page-vip-program__intro-section {
    padding: 80px 0;
    background-color: #0d0d0d; /* Darker background for contrast with main body #000000 */
    color: #ffffff;
}

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

.page-vip-program__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.page-vip-program__feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

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

.page-vip-program__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

/* --- Tiers Section --- */
.page-vip-program__tiers-section {
    padding: 80px 0;
    background-color: #000000; /* Inherits from body, but explicitly set for clarity */
    color: #ffffff;
}

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

.page-vip-program__tier-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-vip-program__tier-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

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

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    color: #f0f0f0;
}

.page-vip-program__tier-benefits li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

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

.page-vip-program__tier-benefits li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 0.9em;
}

/* --- How to Join Section --- */
.page-vip-program__how-to-join {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #ffffff;
}

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

.page-vip-program__step-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-program__step-number {
    font-size: 3em;
    color: #017439;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid #017439;
}

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

.page-vip-program__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-vip-program__step-description a {
    color: #FFFF00; /* Custom font color for Register/Login */
    text-decoration: underline;
}
.page-vip-program__step-description a:hover {
    color: #C30808;
}

.page-vip-program__tips-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #f0f0f0;
}

/* --- Exclusive Offers Section --- */
.page-vip-program__exclusive-offers {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
}

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

.page-vip-program__offer-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-program__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-vip-program__offer-description {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

/* --- Priority Service Section --- */
.page-vip-program__priority-service {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #ffffff;
}

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

.page-vip-program__service-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-program__service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-vip-program__service-description {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

/* --- Premium Experience Section --- */
.page-vip-program__premium-experience {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
}

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

.page-vip-program__experience-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.page-vip-program__experience-description {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

/* --- FAQ Section --- */
.page-vip-program__faq-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #ffffff;
}

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