/* style/vip-program-levels-privileges.css */

/* General Styles */
.page-vip-program-levels-privileges {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f9fa; /* Slightly off-white background for main content */
}

.page-vip-program-levels-privileges__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

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

.page-vip-program-levels-privileges__heading {
    text-align: center;
    color: #26A9E0;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: bold;
}

.page-vip-program-levels-privileges__heading--light {
    color: #ffffff;
}

.page-vip-program-levels-privileges__paragraph {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program-levels-privileges__paragraph--light {
    color: #f0f0f0;
}

/* Hero Section */
.page-vip-program-levels-privileges__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #26A9E0, #FFFFFF); /* Blend with brand colors */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-vip-program-levels-privileges__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-vip-program-levels-privileges__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 0;
}

.page-vip-program-levels-privileges__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    filter: none; /* Ensure no filter is applied */
}

.page-vip-program-levels-privileges__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-vip-program-levels-privileges__hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-vip-program-levels-privileges__intro-text {
    font-size: 20px;
    color: #e0f2f7; /* Lighter text for contrast on dark background */
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels-privileges__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #EA7C07; /* Login color for primary CTA for emphasis */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure button adapts to mobile */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-program-levels-privileges__cta-button:hover {
    background: #d46e06; /* Slightly darker hover for contrast */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-program-levels-privileges__cta-button--inverted {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels-privileges__cta-button--inverted:hover {
    background: #e0f2f7;
    color: #1a7aa0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-program-levels-privileges__cta-button--secondary {
    background: none;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    box-shadow: none;
}

.page-vip-program-levels-privileges__cta-button--secondary:hover {
    background: #e0f2f7;
    color: #1a7aa0;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-program-levels-privileges__cta-button--secondary-inverted {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels-privileges__cta-button--secondary-inverted:hover {
    background: #1a7aa0;
    border-color: #e0f2f7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.page-vip-program-levels-privileges__overview-section {
    background-color: #ffffff;
}

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

.page-vip-program-levels-privileges__feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-vip-program-levels-privileges__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program-levels-privileges__feature-item img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter is applied */
}

.page-vip-program-levels-privileges__feature-title {
    font-size: 24px;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program-levels-privileges__feature-description {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    text-align: center;
}

/* VIP Levels Section */
.page-vip-program-levels-privileges__levels-section {
    background-color: #26A9E0; /* Primary brand color background */
    color: #ffffff;
}

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

.page-vip-program-levels-privileges__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    color: #333333; /* Dark text on white card background */
}

.page-vip-program-levels-privileges__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program-levels-privileges__level-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter is applied */
}

.page-vip-program-levels-privileges__card-title {
    font-size: 26px;
    color: #26A9E0;
    margin: 0 20px 15px 20px;
    font-weight: bold;
    text-align: center;
}

.page-vip-program-levels-privileges__privilege-list {
    list-style: none;
    padding: 0 20px 20px 20px;
    margin: 0;
}

.page-vip-program-levels-privileges__privilege-list li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.page-vip-program-levels-privileges__privilege-list li::before {
    content: '✔️';
    margin-right: 10px;
    color: #26A9E0;
    font-size: 18px;
    line-height: 1;
}

.page-vip-program-levels-privileges__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* How to Join Section */
.page-vip-program-levels-privileges__how-to-join-section {
    background-color: #f0f8ff; /* Light blue background */
}

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

.page-vip-program-levels-privileges__step-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-vip-program-levels-privileges__step-item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter is applied */
}

.page-vip-program-levels-privileges__step-title {
    font-size: 22px;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program-levels-privileges__step-description {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    text-align: center;
}

.page-vip-program-levels-privileges__step-description a {
    color: #EA7C07;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-program-levels-privileges__step-description a:hover {
    text-decoration: underline;
}

/* Terms Section */
.page-vip-program-levels-privileges__terms-section {
    background-color: #ffffff;
}

.page-vip-program-levels-privileges__terms-list {
    list-style: disc;
    max-width: 900px;
    margin: 30px auto;
    padding-left: 40px;
    font-size: 16px;
    color: #555555;
}

.page-vip-program-levels-privileges__terms-list li {
    margin-bottom: 10px;
}

.page-vip-program-levels-privileges__terms-list li a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-program-levels-privileges__terms-list li a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-vip-program-levels-privileges__faq-section {
    background-color: #f8f9fa;
}

.page-vip-program-levels-privileges__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-vip-program-levels-privileges__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.page-vip-program-levels-privileges__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    padding: 0 20px;
    opacity: 0;
}

.page-vip-program-levels-privileges__faq-item.active .page-vip-program-levels-privileges__faq-answer {
    max-height: 2000px !important; /* Ensure content fits */
    padding: 20px !important;
    opacity: 1;
    background: #eaf6ff; /* Light blue background for active answer */
    border-radius: 0 0 8px 8px;
}

.page-vip-program-levels-privileges__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-vip-program-levels-privileges__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-vip-program-levels-privileges__faq-question:active {
    background: #eeeeee;
}

.page-vip-program-levels-privileges__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none; /* Prevent h3 from blocking click event */
    color: #333333;
}

.page-vip-program-levels-privileges__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #26A9E0;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click event */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-vip-program-levels-privileges__faq-item.active .page-vip-program-levels-privileges__faq-toggle {
    color: #EA7C07; /* Orange for active toggle */
    transform: rotate(45deg); /* Rotate to form an 'x' or just change to '-' */
}

/* Bottom CTA Section */
.page-vip-program-levels-privileges__cta-bottom-section {
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
    padding: 80px 0;
}

.page-vip-program-levels-privileges__cta-bottom-section .page-vip-program-levels-privileges__container {
    background: #1a7aa0; /* Slightly darker shade for the container */
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels-privileges__cta-bottom-section .page-vip-program-levels-privileges__heading {
    margin-bottom: 20px;
}

.page-vip-program-levels-privileges__cta-bottom-section .page-vip-program-levels-privileges__paragraph {
    margin-bottom: 40px;
}

.page-vip-program-levels-privileges__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%; /* Ensure container adapts to mobile */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-program-levels-privileges__hero-content h1 {
        font-size: 42px;
    }
    .page-vip-program-levels-privileges__heading {
        font-size: 32px;
    }
    .page-vip-program-levels-privileges__paragraph {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* Fixed header offset for mobile */
    .page-vip-program-levels-privileges__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-vip-program-levels-privileges__hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .page-vip-program-levels-privileges__intro-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .page-vip-program-levels-privileges__cta-button {
        padding: 12px 25px;
        font-size: 18px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-vip-program-levels-privileges__section {
        padding: 40px 0;
    }
    .page-vip-program-levels-privileges__container {
        padding: 0 15px;
    }
    .page-vip-program-levels-privileges__heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Image responsiveness for mobile */
    .page-vip-program-levels-privileges img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        filter: none; /* Ensure no filter is applied */
    }
    .page-vip-program-levels-privileges__section,
    .page-vip-program-levels-privileges__card,
    .page-vip-program-levels-privileges__container,
    .page-vip-program-levels-privileges__cta-bottom-section .page-vip-program-levels-privileges__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-vip-program-levels-privileges__features-grid,
    .page-vip-program-levels-privileges__level-cards,
    .page-vip-program-levels-privileges__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-vip-program-levels-privileges__feature-item,
    .page-vip-program-levels-privileges__step-item,
    .page-vip-program-levels-privileges__card {
        padding: 25px 15px;
    }
    
    .page-vip-program-levels-privileges__feature-title,
    .page-vip-program-levels-privileges__step-title,
    .page-vip-program-levels-privileges__card-title {
        font-size: 20px;
    }

    .page-vip-program-levels-privileges__privilege-list {
        padding: 0 15px 15px 15px;
    }

    .page-vip-program-levels-privileges__terms-list {
        padding-left: 25px;
        font-size: 15px;
    }

    /* FAQ Mobile Adaption */
    .page-vip-program-levels-privileges__faq-question {
        padding: 15px;
    }
    
    .page-vip-program-levels-privileges__faq-question h3 {
        font-size: 16px;
    }
    
    .page-vip-program-levels-privileges__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    
    .page-vip-program-levels-privileges__faq-item.active .page-vip-program-levels-privileges__faq-answer {
        padding: 15px !important;
    }

    /* Bottom CTA Mobile */
    .page-vip-program-levels-privileges__cta-bottom-section {
        padding: 60px 0;
    }
    .page-vip-program-levels-privileges__cta-bottom-section .page-vip-program-levels-privileges__container {
        padding: 40px 20px;
    }
    .page-vip-program-levels-privileges__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-vip-program-levels-privileges__cta-buttons .page-vip-program-levels-privileges__cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-vip-program-levels-privileges__hero-content h1 {
        font-size: 32px;
    }
    .page-vip-program-levels-privileges__intro-text {
        font-size: 16px;
    }
    .page-vip-program-levels-privileges__heading {
        font-size: 24px;
    }
    .page-vip-program-levels-privileges__feature-item img {
        
        
    }
    .page-vip-program-levels-privileges__feature-title {
        font-size: 18px;
    }
    .page-vip-program-levels-privileges__step-item img {
        
        
    }
    .page-vip-program-levels-privileges__step-title {
        font-size: 18px;
    }
    .page-vip-program-levels-privileges__cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Color Contrast Fixes (if needed) */
/* .page-vip-program-levels-privileges__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-vip-program-levels-privileges__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
} */

/* Ensure dark-bg and light-bg are applied correctly */
.page-vip-program-levels-privileges__dark-bg {
    background: #26A9E0; /* Deep blue from brand color */
    color: #ffffff; /* White text for contrast */
}

.page-vip-program-levels-privileges__light-bg {
    background: #ffffff; /* White background */
    color: #333333; /* Dark text for contrast */
}