/* style/promotions-vip-exclusive-benefits.css */

/* Variables for consistent theming */
:root {
    --page-promotions-vip-exclusive-benefits-primary-color: #0A192F; /* Deep Blue */
    --page-promotions-vip-exclusive-benefits-accent-color: #FFD700; /* Gold */
    --page-promotions-vip-exclusive-benefits-text-light: #FFFFFF; /* White */
    --page-promotions-vip-exclusive-benefits-text-dark: #0A192F; /* Deep Blue, for contrast on light backgrounds */
    --page-promotions-vip-exclusive-benefits-background-light: #F0F2F5; /* Light grey for sections */
    --page-promotions-vip-exclusive-benefits-border-color: rgba(255, 215, 0, 0.3); /* Transparent gold border */
}

.page-promotions-vip-exclusive-benefits {
    font-family: 'Arial', sans-serif;
    color: var(--page-promotions-vip-exclusive-benefits-text-light); /* Default text color for dark backgrounds */
    background-color: var(--page-promotions-vip-exclusive-benefits-primary-color); /* Main background color */
    line-height: 1.6;
    overflow-x: hidden;
}

.page-promotions-vip-exclusive-benefits a {
    color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits a:hover {
    color: #FFEA80; /* Lighter gold on hover */
    text-decoration: underline;
}

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

/* Hero Section */
.page-promotions-vip-exclusive-benefits__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: linear-gradient(135deg, var(--page-promotions-vip-exclusive-benefits-primary-color) 0%, #1a2a4c 100%); /* Gradient background */
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 3.5em;
    color: var(--page-promotions-vip-exclusive-benefits-text-light);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-vip-exclusive-benefits__hero-subtitle {
    font-size: 1.5em;
    color: var(--page-promotions-vip-exclusive-benefits-text-light);
    margin-bottom: 40px;
}

.page-promotions-vip-exclusive-benefits__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-promotions-vip-exclusive-benefits__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    filter: blur(5px);
}

.page-promotions-vip-exclusive-benefits__cta-button {
    display: inline-block;
    background-color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    color: var(--page-promotions-vip-exclusive-benefits-text-dark); /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-vip-exclusive-benefits__cta-button:hover {
    background-color: #FFD200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    text-decoration: none;
}

.page-promotions-vip-exclusive-benefits__cta-button--large {
    padding: 20px 40px;
    font-size: 1.4em;
}

/* General Section Styling */
.page-promotions-vip-exclusive-benefits__section {
    padding: 60px 0;
    background-color: var(--page-promotions-vip-exclusive-benefits-primary-color);
    color: var(--page-promotions-vip-exclusive-benefits-text-light);
}

.page-promotions-vip-exclusive-benefits__section:nth-of-type(even) {
    background-color: #0F203A; /* Slightly lighter dark blue for subtle stripe effect */
}

.page-promotions-vip-exclusive-benefits__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--page-promotions-vip-exclusive-benefits-text-light);
}

.page-promotions-vip-exclusive-benefits__text--small {
    font-size: 0.95em;
    text-align: center;
    margin-top: 30px;
}

.page-promotions-vip-exclusive-benefits .highlight {
    color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    font-weight: bold;
}

/* VIP Levels Section */
.page-promotions-vip-exclusive-benefits__level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-exclusive-benefits__level-card {
    background-color: #1a2a4c; /* Darker shade of primary for card background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--page-promotions-vip-exclusive-benefits-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-exclusive-benefits__level-title {
    font-size: 1.8em;
    color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__level-desc {
    font-size: 1em;
    color: #D0D0D0; /* Slightly lighter text for description */
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__level-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.page-promotions-vip-exclusive-benefits__level-benefits li {
    background-color: #0F203A; /* Background for list items */
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: var(--page-promotions-vip-exclusive-benefits-text-light);
    font-size: 0.95em;
}

.page-promotions-vip-exclusive-benefits__level-benefits li::before {
    content: '★'; /* Star icon */
    color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    margin-right: 10px;
    font-size: 1.2em;
}

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

.page-promotions-vip-exclusive-benefits__feature-card {
    background-color: #1a2a4c;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-promotions-vip-exclusive-benefits-border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-vip-exclusive-benefits__feature-title {
    font-size: 1.6em;
    color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    margin-bottom: 15px;
    text-align: center;
}

.page-promotions-vip-exclusive-benefits__feature-desc {
    font-size: 1em;
    color: #D0D0D0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Image styling */
.page-promotions-vip-exclusive-benefits__image-wrapper {
    margin-top: 20px;
    text-align: center;
}

.page-promotions-vip-exclusive-benefits__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: block; /* Ensures no extra space below image */
    margin: 0 auto; /* Center image */
}

.page-promotions-vip-exclusive-benefits__image-wrapper--center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__image-caption {
    font-size: 0.9em;
    color: #AAAAAA;
    margin-top: 10px;
    font-style: italic;
}


/* How to Join Section */
.page-promotions-vip-exclusive-benefits__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-promotions-vip-exclusive-benefits__steps-list li {
    counter-increment: step-counter;
    background-color: #1a2a4c;
    margin-bottom: 15px;
    padding: 20px 25px 20px 60px;
    border-radius: 8px;
    position: relative;
    font-size: 1.1em;
    color: var(--page-promotions-vip-exclusive-benefits-text-light);
    border: 1px solid var(--page-promotions-vip-exclusive-benefits-border-color);
}

.page-promotions-vip-exclusive-benefits__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    color: var(--page-promotions-vip-exclusive-benefits-text-dark); /* Dark text on gold number */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promotions-vip-exclusive-benefits__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Commitment Section */
.page-promotions-vip-exclusive-benefits__commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-promotions-vip-exclusive-benefits__commitment-list li {
    background-color: #1a2a4c;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.05em;
    color: var(--page-promotions-vip-exclusive-benefits-text-light);
    border-left: 5px solid var(--page-promotions-vip-exclusive-benefits-accent-color);
}

/* FAQ Section */
.page-promotions-vip-exclusive-benefits__faq-item {
    background-color: #1a2a4c;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--page-promotions-vip-exclusive-benefits-border-color);
}

.page-promotions-vip-exclusive-benefits__faq-question {
    font-size: 1.4em;
    color: var(--page-promotions-vip-exclusive-benefits-accent-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

.page-promotions-vip-exclusive-benefits__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-vip-exclusive-benefits__faq-answer {
    font-size: 1em;
    color: #D0D0D0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-promotions-vip-exclusive-benefits__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    opacity: 1;
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-exclusive-benefits__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-vip-exclusive-benefits__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive-benefits__level-grid,
    .page-promotions-vip-exclusive-benefits__feature-grid,
    .page-promotions-vip-exclusive-benefits__commitment-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive-benefits__hero {
        min-height: 450px;
        padding: 60px 20px;
    }
    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-exclusive-benefits__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive-benefits__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive-benefits__section {
        padding: 40px 0;
    }
    .page-promotions-vip-exclusive-benefits__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-benefits__text,
    .page-promotions-vip-exclusive-benefits__level-desc,
    .page-promotions-vip-exclusive-benefits__feature-desc,
    .page-promotions-vip-exclusive-benefits__steps-list li,
    .page-promotions-vip-exclusive-benefits__commitment-list li,
    .page-promotions-vip-exclusive-benefits__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions-vip-exclusive-benefits__level-card,
    .page-promotions-vip-exclusive-benefits__feature-card,
    .page-promotions-vip-exclusive-benefits__faq-item {
        padding: 20px;
    }
    .page-promotions-vip-exclusive-benefits__level-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-exclusive-benefits__feature-title {
        font-size: 1.4em;
    }
    .page-promotions-vip-exclusive-benefits__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-benefits__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-benefits__cta-button {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
    }
    .page-promotions-vip-exclusive-benefits__level-grid,
    .page-promotions-vip-exclusive-benefits__feature-grid,
    .page-promotions-vip-exclusive-benefits__commitment-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-exclusive-benefits__steps-list li {
        padding: 15px 15px 15px 50px;
    }
    .page-promotions-vip-exclusive-benefits__steps-list li::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
}