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

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

.page-promotions-vip-exclusive__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-vip-exclusive__section-title {
    font-size: 2.5em;
    color: #0A2342;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-vip-exclusive__section-title--light {
    color: #FFFFFF;
}

.page-promotions-vip-exclusive__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-exclusive__text-content--emphasis {
    font-weight: bold;
    color: #0A2342;
}

.page-promotions-vip-exclusive__text-content--light {
    color: #e0e0e0;
}

.page-promotions-vip-exclusive__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    font-size: 1em;
    border: none;
    cursor: pointer;
}

.page-promotions-vip-exclusive__btn--primary {
    background-color: #F0A500;
    color: #0A2342;
}

.page-promotions-vip-exclusive__btn--primary:hover {
    background-color: #e69d00;
    color: #000;
}

.page-promotions-vip-exclusive__btn--secondary {
    background-color: transparent;
    color: #0A2342;
    border: 2px solid #0A2342;
}

.page-promotions-vip-exclusive__btn--secondary:hover {
    background-color: #0A2342;
    color: #F0A500;
}

/* Hero Section */
.page-promotions-vip-exclusive__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-exclusive__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-promotions-vip-exclusive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #F0A500;
    line-height: 1.2;
}

.page-promotions-vip-exclusive__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-exclusive__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-promotions-vip-exclusive__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
}

/* Intro Section */
.page-promotions-vip-exclusive__intro {
    background-color: #fff;
}

/* Benefits Section */
.page-promotions-vip-exclusive__benefits {
    background-color: #f0f4f7;
}

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

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

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

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

.page-promotions-vip-exclusive__benefit-title {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
}

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

.page-promotions-vip-exclusive__cta-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

/* How-To Section */
.page-promotions-vip-exclusive__how-to {
    background-color: #fff;
}

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

.page-promotions-vip-exclusive__step-card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    padding-left: 80px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-promotions-vip-exclusive__step-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5em;
    font-weight: bold;
    color: #F0A500;
    opacity: 0.7;
}

.page-promotions-vip-exclusive__step-title {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-promotions-vip-exclusive__step-description {
    color: #666;
    font-size: 0.95em;
}

.page-promotions-vip-exclusive__step-description a {
    color: #F0A500;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-vip-exclusive__step-description a:hover {
    text-decoration: underline;
}

/* Exclusive Offers Section */
.page-promotions-vip-exclusive__exclusive-offers {
    background-color: #0A2342;
    color: #fff;
}

.page-promotions-vip-exclusive__exclusive-offers .page-promotions-vip-exclusive__section-title {
    color: #F0A500;
}

.page-promotions-vip-exclusive__exclusive-offers .page-promotions-vip-exclusive__text-content {
    color: #e0e0e0;
}

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

.page-promotions-vip-exclusive__offer-card {
    background-color: #1a3a60;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-vip-exclusive__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-promotions-vip-exclusive__offer-content {
    padding: 25px;
    flex-grow: 1;
}

.page-promotions-vip-exclusive__offer-title {
    font-size: 1.4em;
    color: #F0A500;
    margin-bottom: 10px;
}

.page-promotions-vip-exclusive__offer-description {
    color: #c0c0c0;
    font-size: 0.95em;
}

/* FAQ Section */
.page-promotions-vip-exclusive__faq {
    background-color: #f0f4f7;
}

.page-promotions-vip-exclusive__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-promotions-vip-exclusive__faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions-vip-exclusive__faq-question {
    font-size: 1.2em;
    color: #0A2342;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive__faq-question:hover {
    background-color: #f5f5f5;
}

.page-promotions-vip-exclusive__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #F0A500;
    transition: transform 0.3s ease;
}

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

.page-promotions-vip-exclusive__faq-answer {
    padding: 0 25px 20px 25px;
    color: #666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-vip-exclusive__faq-answer p {
    margin: 0;
}

.page-promotions-vip-exclusive__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* Final CTA Section */
.page-promotions-vip-exclusive__cta-final {
    background: linear-gradient(45deg, #0A2342 0%, #1a3a60 100%);
    color: #fff;
    padding: 80px 20px;
}

.page-promotions-vip-exclusive__cta-final-content {
    max-width: 900px;
}

.page-promotions-vip-exclusive__cta-final .page-promotions-vip-exclusive__btn--primary {
    background-color: #F0A500;
    color: #0A2342;
    margin-top: 30px;
}

.page-promotions-vip-exclusive__cta-final .page-promotions-vip-exclusive__btn--primary:hover {
    background-color: #e69d00;
    color: #000;
}

.page-promotions-vip-exclusive__cta-final .page-promotions-vip-exclusive__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-promotions-vip-exclusive__cta-final .page-promotions-vip-exclusive__btn--secondary:hover {
    background-color: #fff;
    color: #0A2342;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-exclusive__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-exclusive__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-vip-exclusive__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive__benefit-grid, 
    .page-promotions-vip-exclusive__steps-grid, 
    .page-promotions-vip-exclusive__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-exclusive__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive__hero {
        padding: 60px 20px;
    }
    .page-promotions-vip-exclusive__section {
        padding: 40px 0;
    }
    .page-promotions-vip-exclusive__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-promotions-vip-exclusive__step-card {
        padding-left: 60px;
    }
    .page-promotions-vip-exclusive__step-number {
        left: 15px;
        font-size: 2em;
    }
    .page-promotions-vip-exclusive__offer-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .page-promotions-vip-exclusive__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive__section-title {
        font-size: 1.6em;
    }
    .page-promotions-vip-exclusive__benefit-grid, 
    .page-promotions-vip-exclusive__steps-grid, 
    .page-promotions-vip-exclusive__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-exclusive__hero-content .page-promotions-vip-exclusive__btn {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-promotions-vip-exclusive__cta-final .page-promotions-vip-exclusive__btn {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-promotions-vip-exclusive__benefit-card, 
    .page-promotions-vip-exclusive__step-card, 
    .page-promotions-vip-exclusive__offer-card {
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-promotions-vip-exclusive__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-vip-exclusive__faq-answer {
        padding: 0 20px 15px 20px;
    }
}