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

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

.page-promotions-vip-exclusive-privileges__hero-section {
    background: linear-gradient(135deg, #0D47A1 0%, #001f4d 100%); /* Darker gradient for main color */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-exclusive-privileges__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-vip-exclusive-privileges__hero-subtitle {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-promotions-vip-exclusive-privileges__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0D47A1; /* Dark blue text on gold */
    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;
    border: none;
    cursor: pointer;
}

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

.page-promotions-vip-exclusive-privileges__hero-image-wrapper {
    position: absolute;
    bottom: -20px; /* Adjust as needed */
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.page-promotions-vip-exclusive-privileges__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.page-promotions-vip-exclusive-privileges__hero-section > .page-promotions-vip-exclusive-privileges__container {
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive-privileges__content-section,
.page-promotions-vip-exclusive-privileges__tiers-section,
.page-promotions-vip-exclusive-privileges__benefits-section,
.page-promotions-vip-exclusive-privileges__maximize-section,
.page-promotions-vip-exclusive-privileges__faq-section,
.page-promotions-vip-exclusive-privileges__cta-bottom-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-promotions-vip-exclusive-privileges__content-section:nth-of-type(even),
.page-promotions-vip-exclusive-privileges__benefits-section:nth-of-type(even),
.page-promotions-vip-exclusive-privileges__faq-section:nth-of-type(even) {
    background-color: #f1f1f1;
}

.page-promotions-vip-exclusive-privileges__section-title {
    font-size: 2.8em;
    color: #0D47A1; /* Dark blue title */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-privileges__subsection-title {
    font-size: 2em;
    color: #0D47A1;
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions-vip-exclusive-privileges__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.page-promotions-vip-exclusive-privileges__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-vip-exclusive-privileges__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

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

.page-promotions-vip-exclusive-privileges__tier-card:hover,
.page-promotions-vip-exclusive-privileges__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-vip-exclusive-privileges__tier-name,
.page-promotions-vip-exclusive-privileges__benefit-title {
    font-size: 1.5em;
    color: #0D47A1;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-privileges__tier-desc,
.page-promotions-vip-exclusive-privileges__benefit-desc {
    font-size: 1em;
    color: #555;
}

.page-promotions-vip-exclusive-privileges__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-promotions-vip-exclusive-privileges__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
}

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

.page-promotions-vip-exclusive-privileges__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-promotions-vip-exclusive-privileges__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
}

.page-promotions-vip-exclusive-privileges__cta-bottom-section {
    background: linear-gradient(45deg, #0D47A1, #001f4d);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-exclusive-privileges__cta-bottom-section .page-promotions-vip-exclusive-privileges__section-title {
    color: #FFD700;
}

.page-promotions-vip-exclusive-privileges__cta-bottom-section .page-promotions-vip-exclusive-privileges__paragraph {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-vip-exclusive-privileges__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-vip-exclusive-privileges__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-promotions-vip-exclusive-privileges__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0D47A1;
}

.page-promotions-vip-exclusive-privileges__bottom-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.page-promotions-vip-exclusive-privileges__bottom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.page-promotions-vip-exclusive-privileges__cta-bottom-section > .page-promotions-vip-exclusive-privileges__container {
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive-privileges__inline-link {
    color: #0D47A1;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-vip-exclusive-privileges__inline-link:hover {
    color: #FFD700;
}

.page-promotions-vip-exclusive-privileges .highlight-text {
    color: #0D47A1;
    font-weight: bold;
}

.page-promotions-vip-exclusive-privileges__hero-section .highlight-text,
.page-promotions-vip-exclusive-privileges__cta-bottom-section .highlight-text {
    color: #FFD700;
}

/* Floating Ad Menu */
.page-promotions-vip-exclusive-privileges__floating-ad {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #FFD700;
    color: #0D47A1;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    transform: translateX(0);
    font-size: 0.9em;
}

.page-promotions-vip-exclusive-privileges__floating-ad.hidden {
    opacity: 0;
    transform: translateX(100%);
}

.page-promotions-vip-exclusive-privileges__floating-ad-text {
    font-weight: bold;
}

.page-promotions-vip-exclusive-privileges__floating-ad-button {
    background-color: #0D47A1;
    color: #FFD700;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive-privileges__floating-ad-button:hover {
    background-color: #0a3a83;
}

.page-promotions-vip-exclusive-privileges__close-ad-button {
    background: none;
    border: none;
    color: #0D47A1;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-vip-exclusive-privileges__section-title {
        font-size: 2.2em;
    }

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

    .page-promotions-vip-exclusive-privileges__tier-grid,
    .page-promotions-vip-exclusive-privileges__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-promotions-vip-exclusive-privileges__button-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive-privileges__hero-section {
        padding: 60px 0;
    }

    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-vip-exclusive-privileges__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-promotions-vip-exclusive-privileges__subsection-title {
        font-size: 1.5em;
    }

    .page-promotions-vip-exclusive-privileges__paragraph,
    .page-promotions-vip-exclusive-privileges__list li,
    .page-promotions-vip-exclusive-privileges__tier-desc,
    .page-promotions-vip-exclusive-privileges__benefit-desc,
    .page-promotions-vip-exclusive-privileges__faq-answer {
        font-size: 0.95em;
    }

    .page-promotions-vip-exclusive-privileges__floating-ad {
        right: 10px;
        bottom: 10px;
        padding: 8px 12px;
        font-size: 0.8em;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-promotions-vip-exclusive-privileges__floating-ad-button {
        padding: 6px 10px;
    }
}

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

    .page-promotions-vip-exclusive-privileges__section-title {
        font-size: 1.5em;
    }

    .page-promotions-vip-exclusive-privileges__cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-vip-exclusive-privileges__tier-grid,
    .page-promotions-vip-exclusive-privileges__benefits-grid {
        grid-template-columns: 1fr;
    }
}