/* style/promotions-vip-exclusive.css */
.page-promotions-vip-exclusive {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-promotions-vip-exclusive .bg-primary {
    background-color: #007bff;
    color: #fff;
}

.page-promotions-vip-exclusive .bg-secondary {
    background-color: #f8f9fa;
}

.page-promotions-vip-exclusive .text-primary {
    color: #007bff;
}

.page-promotions-vip-exclusive .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-promotions-vip-exclusive .btn-primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-promotions-vip-exclusive .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-promotions-vip-exclusive .btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-promotions-vip-exclusive .btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}

.page-promotions-vip-exclusive .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-promotions-vip-exclusive .section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-vip-exclusive .section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions-vip-exclusive .hero-section {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-exclusive .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive .hero-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.page-promotions-vip-exclusive .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions-vip-exclusive .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-vip-exclusive .hero-image-wrapper {
    margin-top: 30px;
    max-width: 600px;
    width: 100%;
}

.page-promotions-vip-exclusive .hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* VIP Tiers Section */
.page-promotions-vip-exclusive .vip-tiers-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-promotions-vip-exclusive .tier-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-vip-exclusive .tier-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive .tier-name {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

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

.page-promotions-vip-exclusive .tier-benefits li {
    margin-bottom: 10px;
    color: #555;
    padding-left: 25px;
    position: relative;
}

.page-promotions-vip-exclusive .tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #28a745;
}

.page-promotions-vip-exclusive .how-to-join {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}

.page-promotions-vip-exclusive .how-to-join a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-vip-exclusive .how-to-join a:hover {
    text-decoration: underline;
}

/* Exclusive Offers Section */
.page-promotions-vip-exclusive .exclusive-offers-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.page-promotions-vip-exclusive .offer-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #ffc107;
}

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

.page-promotions-vip-exclusive .offer-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive .offer-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-vip-exclusive .offer-description {
    color: #666;
    margin-bottom: 25px;
}

/* Enhanced Experience Section */
.page-promotions-vip-exclusive .enhanced-experience-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-promotions-vip-exclusive .feature-item {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.page-promotions-vip-exclusive .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive .feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-vip-exclusive .feature-item p {
    color: #666;
}

.page-promotions-vip-exclusive .cta-banner {
    background-color: #ffc107;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-promotions-vip-exclusive .cta-banner p {
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: bold;
    color: #333;
}

.page-promotions-vip-exclusive .btn-cta {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.page-promotions-vip-exclusive .btn-cta:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* VIP FAQ Section */
.page-promotions-vip-exclusive .vip-faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-promotions-vip-exclusive .faq-items {
    margin-top: 50px;
}

.page-promotions-vip-exclusive .faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.page-promotions-vip-exclusive .faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-vip-exclusive .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #ffc107;
}

.page-promotions-vip-exclusive .faq-question.active::after {
    content: '-';
}

.page-promotions-vip-exclusive .faq-answer {
    color: #555;
    font-size: 1.05em;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    margin-top: 15px;
}

.page-promotions-vip-exclusive .faq-answer.active {
    display: block;
}

/* Call to Action Section */
.page-promotions-vip-exclusive .call-to-action-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    text-align: center;
}

.page-promotions-vip-exclusive .call-to-action-section .section-title {
    color: #fff;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive .call-to-action-section .section-subtitle {
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-exclusive .hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-exclusive .hero-description {
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive .section-title {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive .tiers-grid, .page-promotions-vip-exclusive .offers-grid, .page-promotions-vip-exclusive .experience-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive .hero-section {
        padding: 60px 0;
    }
    .page-promotions-vip-exclusive .hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-exclusive .hero-description {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive .section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive .section-subtitle {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive .tier-card, .page-promotions-vip-exclusive .offer-card, .page-promotions-vip-exclusive .feature-item {
        padding: 20px;
    }
    .page-promotions-vip-exclusive .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-vip-exclusive .cta-banner p {
        font-size: 1.5em;
    }
    .page-promotions-vip-exclusive .call-to-action-section .section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 576px) {
    .page-promotions-vip-exclusive .hero-section {
        padding: 40px 0;
    }
    .page-promotions-vip-exclusive .hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive .hero-description {
        font-size: 0.9em;
    }
    .page-promotions-vip-exclusive .section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-exclusive .section-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-vip-exclusive .tiers-grid, .page-promotions-vip-exclusive .offers-grid, .page-promotions-vip-exclusive .experience-features {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-exclusive .tier-card, .page-promotions-vip-exclusive .offer-card, .page-promotions-vip-exclusive .feature-item {
        margin-bottom: 20px;
    }
    .page-promotions-vip-exclusive .btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-promotions-vip-exclusive .cta-banner p {
        font-size: 1.2em;
    }
    .page-promotions-vip-exclusive .call-to-action-section .section-title {
        font-size: 1.8em;
    }
}