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

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

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

.page-promotions-vip-program .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,light_blue_green]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-vip-program .hero-section .container {
    position: relative;
    z-index: 1;
}

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

.page-promotions-vip-program .hero-description {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* General Section Styling */
.page-promotions-vip-program .content-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-vip-program .content-section:nth-of-type(odd) {
    background-color: #fefefe;
}

.page-promotions-vip-program .section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-vip-program .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

/* Buttons */
.page-promotions-vip-program .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-promotions-vip-program .btn-primary {
    background-color: #28a745;
    color: #fff;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}

.page-promotions-vip-program .btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.5);
}

.page-promotions-vip-program .btn-secondary {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-promotions-vip-program .btn-secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.page-promotions-vip-program .btn-lg {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Content Grid */
.page-promotions-vip-program .content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-promotions-vip-program .content-grid.reverse-grid {
    flex-direction: row-reverse;
}

.page-promotions-vip-program .content-grid .text-content,
.page-promotions-vip-program .content-grid .image-content {
    flex: 1;
    min-width: 300px;
}

.page-promotions-vip-program .content-grid .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* VIP Tiers */
.page-promotions-vip-program .tier-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.page-promotions-vip-program .tier-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program .tier-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-promotions-vip-program .tier-item ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

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

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

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

.page-promotions-vip-program .benefit-item {
    background-color: #fefefe;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-vip-program .benefit-item:hover {
    transform: translateY(-5px);
}

.page-promotions-vip-program .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-promotions-vip-program .benefit-item p {
    color: #555;
}

/* How to Join */
.page-promotions-vip-program .steps-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-promotions-vip-program .steps-list li {
    background-color: #fefefe;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    padding-left: 70px;
    font-size: 1.1em;
    color: #333;
}

.page-promotions-vip-program .steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
}

.page-promotions-vip-program .steps-list li p {
    margin: 0;
}

.page-promotions-vip-program .steps-list li a {
    color: #007bff;
    text-decoration: underline;
}

.page-promotions-vip-program .steps-list li a:hover {
    color: #0056b3;
}

/* FAQ Section */
.page-promotions-vip-program .faq-section {
    background-color: #fefefe;
}

.page-promotions-vip-program .faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-promotions-vip-program .faq-item:last-child {
    border-bottom: none;
}

.page-promotions-vip-program .faq-question {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-vip-program .faq-question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    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: 1.1em;
    color: #555;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    opacity: 0;
}

.page-promotions-vip-program .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-vip-program .hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-program .hero-description {
        font-size: 1.2em;
    }
    .page-promotions-vip-program .section-title {
        font-size: 2em;
    }
    .page-promotions-vip-program .content-grid {
        flex-direction: column;
    }
    .page-promotions-vip-program .content-grid.reverse-grid {
        flex-direction: column;
    }
    .page-promotions-vip-program .tier-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-vip-program .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program .hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-program .hero-description {
        font-size: 1em;
    }
    .page-promotions-vip-program .section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program .content-section {
        padding: 40px 0;
    }
    .page-promotions-vip-program .tier-item, .page-promotions-vip-program .benefit-item {
        padding: 20px;
    }
    .page-promotions-vip-program .steps-list li {
        padding-left: 60px;
        font-size: 1em;
    }
    .page-promotions-vip-program .steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: 15px;
    }
}

@media (max-width: 576px) {
    .page-promotions-vip-program .hero-section {
        padding: 60px 0;
    }
    .page-promotions-vip-program .hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-promotions-vip-program .section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-program .section-description {
        font-size: 0.95em;
    }
    .page-promotions-vip-program .tier-list, .page-promotions-vip-program .benefits-grid {
        grid-template-columns: 1fr;
    }
}