/* style/vip-program.css */

/* --- General Page Styles --- */
.page-vip-program {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default dark text for light body background */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for the main content area */
}

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

.page-vip-program__section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-program__section--intro {
    background-color: #ffffff;
}

.page-vip-program__section--tiers {
    background-color: #f0f0f0;
}

.page-vip-program__section--exclusive-offers {
    background-color: #ffffff;
}

.page-vip-program__section--faq {
    background-color: #f0f0f0;
}

.page-vip-program__dark-bg {
    background-color: var(--secondary-color, #000080); /* Deep blue */
    color: #ffffff;
}

.page-vip-program__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-program__section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color, #000080); /* Dark blue for titles */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-vip-program__dark-bg .page-vip-program__section-title {
    color: var(--primary-color, #FFD700); /* Gold for titles on dark background */
}

.page-vip-program__text-block {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
}

.page-vip-program__text-block a {
    color: var(--primary-color, #FFD700);
    text-decoration: underline;
}

/* --- Hero Section --- */
.page-vip-program__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0; /* Initial padding, will be adjusted by header-offset */
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background: linear-gradient(135deg, var(--secondary-color, #000080), #000050); /* Dark blue gradient */
    overflow: hidden; /* Prevent content overflow from image */
}

.page-vip-program__hero-container {
    position: relative;
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.page-vip-program__hero-image {
    width: 100%;
    max-height: 700px; /* Limit height of hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-vip-program__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.page-vip-program__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 30px 20px;
    border-radius: 10px;
}

.page-vip-program__hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color, #FFD700); /* Gold for hero title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-program__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-vip-program__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box;
}

.page-vip-program__cta-button--primary {
    background: var(--primary-color, #FFD700);
    color: #000080; /* Dark blue text on gold button for contrast */
    border: 2px solid var(--primary-color, #FFD700);
}

.page-vip-program__cta-button--primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-program__cta-button--secondary {
    background: var(--secondary-color, #000080);
    color: #ffffff;
    border: 2px solid var(--secondary-color, #000080);
}

.page-vip-program__cta-button--secondary:hover {
    background: #000060;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 128, 0.4);
}

/* --- VIP Tiers Section --- */
.page-vip-program__tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-vip-program__tier-card {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e0e0e0;
}

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

.page-vip-program__tier-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: contain; /* Use contain to show full image without cropping */
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure image doesn't overflow */
    display: block;
}

.page-vip-program__tier-card .page-vip-program__card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color, #FFD700); /* Gold for card titles */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-vip-program__tier-card .page-vip-program__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    font-size: 16px;
    color: #555555;
}

.page-vip-program__tier-card .page-vip-program__card-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-vip-program__tier-card .page-vip-program__card-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--primary-color, #FFD700);
}

/* --- How To Join Section --- */
.page-vip-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-vip-program__step-card {
    background-color: rgba(255, 255, 255, 0.1); /* Lighter on dark background */
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-vip-program__step-card .page-vip-program__card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color, #FFD700);
    text-shadow: none;
}

.page-vip-program__step-card p {
    font-size: 16px;
    color: #f0f0f0;
}

.page-vip-program__step-card p a {
    color: var(--primary-color, #FFD700);
    text-decoration: underline;
}

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

.page-vip-program__offer-card {
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e0e0e0;
}

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

.page-vip-program__offer-card img {
    width: 100%;
     /* Consistent height for offer images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
}

.page-vip-program__offer-card .page-vip-program__card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color, #000080);
}

.page-vip-program__offer-card p {
    font-size: 16px;
    color: #555555;
}

/* --- VIP Support Section --- */
.page-vip-program__support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}