/* style/promotions-vip-program.css */

/* General page styling */
.page-promotions-vip-program {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F0F0F0; /* Light gray for general text on dark background */
    background-color: #0A2463; /* Primary dark blue background */
}

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

/* Hero Section */
.page-promotions-vip-program__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1C4DC3 100%); /* Dark blue to a slightly lighter blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-program__hero-title {
    font-size: 3.5em;
    color: #E3B23C; /* Secondary gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__hero-subtitle {
    font-size: 1.4em;
    color: #D0D0D0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.page-promotions-vip-program__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.page-promotions-vip-program__btn--primary {
    background-color: #E3B23C; /* Gold button */
    color: #0A2463; /* Dark blue text on gold */
    border: none;
}

.page-promotions-vip-program__btn--primary:hover {
    background-color: #f0c96e; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-promotions-vip-program__btn--secondary {
    background-color: #0A2463; /* Dark blue button */
    color: #E3B23C; /* Gold text on dark blue */
    border: 2px solid #E3B23C;
    margin-left: 20px;
}

.page-promotions-vip-program__btn--secondary:hover {
    background-color: #1C4DC3; /* Slightly lighter blue on hover */
    transform: translateY(-3px);
}

/* Section common styles */
.page-promotions-vip-program__section-title {
    font-size: 2.5em;
    color: #E3B23C;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    padding-top: 60px;
}

.page-promotions-vip-program__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D0D0D0;
    text-align: justify;
}

.page-promotions-vip-program__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-promotions-vip-program__introduction {
    padding: 80px 0;
    background-color: #1A3A70; /* Slightly lighter dark blue */
}

/* VIP Levels Section */
.page-promotions-vip-program__levels {
    padding: 80px 0;
    background-color: #0A2463;
}

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

.page-promotions-vip-program__level-card {
    background-color: #1A3A70;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(227, 178, 60, 0.3);
}

.page-promotions-vip-program__level-card:hover {
    transform: translateY(-10px);
    background-color: #2D529B; /* Lighter on hover */
}

.page-promotions-vip-program__level-title {
    font-size: 1.8em;
    color: #E3B23C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-program__level-desc {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-promotions-vip-program__level-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    color: #D0D0D0;
}

.page-promotions-vip-program__level-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-vip-program__level-benefits li::before {
    content: '✓';
    color: #E3B23C;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promotions-vip-program__level-icon {
    width: 80px;
    height: 80px;
    margin-top: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E3B23C;
}

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

.page-promotions-vip-program__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    color: #D0D0D0;
}

.page-promotions-vip-program__steps-list li {
    background-color: #0A2463;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #E3B23C;
}

.page-promotions-vip-program__steps-list li strong {
    color: #E3B23C;
}

.page-promotions-vip-program__steps-list li a {
    color: #E3B23C;
    text-decoration: underline;
}

.page-promotions-vip-program__steps-list li a:hover {
    color: #f0c96e;
}

/* Exclusive Services Section */
.page-promotions-vip-program__exclusive-services {
    padding: 80px 0;
    background-color: #0A2463;
}

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

.page-promotions-vip-program__service-card {
    background-color: #1A3A70;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(227, 178, 60, 0.3);
    text-align: center;
}

.page-promotions-vip-program__service-title {
    font-size: 1.6em;
    color: #E3B23C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-program__service-desc {
    font-size: 1em;
    color: #B0B0B0;
}

/* Why Choose Section */
.page-promotions-vip-program__why-choose {
    padding: 80px 0;
    background-color: #1A3A70;
}

.page-promotions-vip-program__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-vip-program__benefits-list li {
    background-color: #0A2463;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    color: #D0D0D0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #E3B23C;
}

.page-promotions-vip-program__benefits-list li strong {
    color: #E3B23C;
}

/* Call to Action Section */
.page-promotions-vip-program__call-to-action {
    padding: 80px 0;
    text-align: center;
    background-color: #0A2463;
}

.page-promotions-vip-program__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* FAQ Section */
.page-promotions-vip-program__faq {
    padding: 80px 0;
    background-color: #1A3A70;
}

.page-promotions-vip-program__faq-item {
    background-color: #0A2463;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #E3B23C;
}

.page-promotions-vip-program__faq-question {
    font-size: 1.4em;
    color: #E3B23C;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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


.page-promotions-vip-program__faq-answer {
    font-size: 1em;
    color: #D0D0D0;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid rgba(227, 178, 60, 0.2);
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-vip-program__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-vip-program__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-vip-program__section-title {
        font-size: 2em;
    }

    .page-promotions-vip-program__level-grid,
    .page-promotions-vip-program__service-cards {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-vip-program__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-program__hero-title {
        font-size: 2em;
    }

    .page-promotions-vip-program__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-vip-program__section-title {
        font-size: 1.8em;
    }

    .page-promotions-vip-program__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}