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

/* Base styles for the VIP Benefits page */
.page-promotions-vip-benefits {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-promotions-vip-benefits__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-vip-benefits__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #C0C0C0; /* Slightly darker light gray for paragraphs */
}

/* Hero Section */
.page-promotions-vip-benefits__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-benefits__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.1;
}

.page-promotions-vip-benefits__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-promotions-vip-benefits__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-promotions-vip-benefits__cta-button--secondary {
    background-color: #1A3A5F; /* Darker blue for secondary button */
    color: #FFD700; /* Gold text */
    margin-left: 20px;
    border: 2px solid #FFD700;
}

.page-promotions-vip-benefits__cta-button--secondary:hover {
    background-color: #0A192F;
    color: #FFD700;
    transform: translateY(-3px);
}

/* Intro Section */
.page-promotions-vip-benefits__intro-section {
    padding: 60px 0;
    background-color: #112A4A; /* Slightly lighter dark blue */
}

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

.page-promotions-vip-benefits__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Tiers Section */
.page-promotions-vip-benefits__tiers-section {
    padding: 60px 0;
    background-color: #0A192F;
}

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

.page-promotions-vip-benefits__tier-card {
    background-color: #1A3A5F; /* Dark blue for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700; /* Gold accent */
}

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

.page-promotions-vip-benefits__tier-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-vip-benefits__tier-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-promotions-vip-benefits__tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #E0E0E0;
}

.page-promotions-vip-benefits__tier-card li {
    padding: 8px 0;
    border-bottom: 1px dashed #2C4F7D; /* Lighter blue dashed line */
}

.page-promotions-vip-benefits__tier-card li:last-child {
    border-bottom: none;
}

/* Exclusive Benefits Section */
.page-promotions-vip-benefits__exclusive-benefits {
    padding: 60px 0;
    background-color: #112A4A;
}

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

.page-promotions-vip-benefits__benefit-item {
    background-color: #0A192F;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-promotions-vip-benefits__benefit-item:hover {
    transform: translateY(-8px);
}

.page-promotions-vip-benefits__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-promotions-vip-benefits__benefit-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-vip-benefits__benefit-description {
    font-size: 1em;
    color: #C0C0C0;
}

/* How to Join Section */
.page-promotions-vip-benefits__how-to-join {
    padding: 60px 0;
    background-color: #0A192F;
}

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

.page-promotions-vip-benefits__steps-list li {
    background-color: #1A3A5F;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 5px solid #FFD700;
}

.page-promotions-vip-benefits__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-vip-benefits__step-description {
    font-size: 1.05em;
    color: #E0E0E0;
}

/* FAQ Section */
.page-promotions-vip-benefits__faq-section {
    padding: 60px 0;
    background-color: #112A4A;
}

.page-promotions-vip-benefits__faq-item {
    background-color: #0A192F;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #FFD700;
}

.page-promotions-vip-benefits__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-vip-benefits__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions-vip-benefits__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-promotions-vip-benefits__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    margin-top: 10px;
}

/* Call to Action Section */
.page-promotions-vip-benefits__call-to-action {
    padding: 80px 0;
    text-align: center;
    background-color: #0A192F;
    border-top: 5px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-benefits__hero-title {
        font-size: 3em;
    }
    .page-promotions-vip-benefits__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-vip-benefits__section-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-benefits__tier-grid,
    .page-promotions-vip-benefits__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-benefits__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-vip-benefits__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-vip-benefits__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-benefits__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-promotions-vip-benefits__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-vip-benefits__tier-card,
    .page-promotions-vip-benefits__benefit-item,
    .page-promotions-vip-benefits__steps-list li,
    .page-promotions-vip-benefits__faq-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .page-promotions-vip-benefits__hero-title {
        font-size: 2em;
    }
    .page-promotions-vip-benefits__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-vip-benefits__section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-benefits__cta-button {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    .page-promotions-vip-benefits__cta-button--secondary {
        margin-top: 0;
    }
    .page-promotions-vip-benefits__tier-grid,
    .page-promotions-vip-benefits__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-benefits__tier-card,
    .page-promotions-vip-benefits__benefit-item,
    .page-promotions-vip-benefits__steps-list li,
    .page-promotions-vip-benefits__faq-item {
        padding: 15px;
    }
    .page-promotions-vip-benefits__image-wrapper {
        margin-top: 20px;
    }
}