/* style/promotions-vip-exclusive-offers.css */
.page-promotions-vip-exclusive-offers {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    line-height: 1.6;
    background-color: #0A192F; /* Main page background */
}

.page-promotions-vip-exclusive-offers a {
    color: #E0B400; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-vip-exclusive-offers a:hover {
    color: #f5e6d0; /* Lighter gold on hover */
}

/* Section Backgrounds for contrast */
.page-promotions-vip-exclusive-offers .section-dark-bg {
    background-color: #0A192F;
    color: #FFFFFF;
    padding: 60px 20px;
}

.page-promotions-vip-exclusive-offers .section-light-bg {
    background-color: #FFFFFF;
    color: #0A192F;
    padding: 60px 20px;
}

.page-promotions-vip-exclusive-offers .section-light-bg h1,
.page-promotions-vip-exclusive-offers .section-light-bg h2,
.page-promotions-vip-exclusive-offers .section-light-bg h3,
.page-promotions-vip-exclusive-offers .section-light-bg h4 {
    color: #0A192F;
}

.page-promotions-vip-exclusive-offers .section-light-bg a {
    color: #0A192F;
}

.page-promotions-vip-exclusive-offers .section-light-bg a:hover {
    color: #E0B400;
}

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

/* Hero Section */
.page-promotions-vip-exclusive-offers__hero {
    background: linear-gradient(135deg, #0A192F 0%, #3a475d 70%, #E0B400 100%); /* Blend dark blue and gold */
    color: #FFFFFF;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-vip-exclusive-offers__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[IMAGE:hero_banner_vip]');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Subtle overlay for text readability */
    z-index: 1;
}

.page-promotions-vip-exclusive-offers__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-vip-exclusive-offers__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.page-promotions-vip-exclusive-offers__hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s;
}

/* General Section Styling */
.page-promotions-vip-exclusive-offers section {
    padding: 80px 0;
}

.page-promotions-vip-exclusive-offers h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 50px;
    color: #E0B400;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-vip-exclusive-offers h3 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #E0B400; /* Gold for headings on dark backgrounds */
}

.page-promotions-vip-exclusive-offers .section-light-bg h3 {
    color: #0A192F; /* Dark blue for headings on light backgrounds */
}

.page-promotions-vip-exclusive-offers p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-vip-exclusive-offers ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive-offers ul li {
    background-color: rgba(224, 180, 0, 0.1);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #E0B400;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.page-promotions-vip-exclusive-offers .section-light-bg ul li {
    background-color: rgba(10, 25, 47, 0.05);
    border-left-color: #0A192F;
}

.page-promotions-vip-exclusive-offers ul li::before {
    content: '★'; /* Star icon */
    color: #E0B400;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions-vip-exclusive-offers .section-light-bg ul li::before {
    color: #0A192F;
}

/* Image styling */
.page-promotions-vip-exclusive-offers__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* CTA Buttons */
.page-promotions-vip-exclusive-offers__cta-buttons {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-vip-exclusive-offers__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-vip-exclusive-offers__btn--primary {
    background-color: #E0B400;
    color: #0A192F;
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-promotions-vip-exclusive-offers__btn--primary:hover {
    background-color: #f5e6d0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 180, 0, 0.6);
}

.page-promotions-vip-exclusive-offers__btn--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-promotions-vip-exclusive-offers__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A192F;
    transform: translateY(-3px);
}

/* FAQ Styling */
.page-promotions-vip-exclusive-offers__faq-item {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-vip-exclusive-offers__faq-question {
    padding: 20px;
    background-color: rgba(224, 180, 0, 0.1); /* Light gold background for question */
    color: #E0B400; /* Gold text for question */
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive-offers__faq-question:hover {
    background-color: rgba(224, 180, 0, 0.2);
}

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

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

.page-promotions-vip-exclusive-offers__faq-answer {
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.02); /* Very subtle white background for answer */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-promotions-vip-exclusive-offers__faq-answer p {
    padding: 20px 0;
    color: #FFFFFF; /* White text for answer */
}

.page-promotions-vip-exclusive-offers .section-light-bg .page-promotions-vip-exclusive-offers__faq-item {
    background-color: rgba(10, 25, 47, 0.03);
}

.page-promotions-vip-exclusive-offers .section-light-bg .page-promotions-vip-exclusive-offers__faq-question {
    background-color: rgba(10, 25, 47, 0.08);
    color: #0A192F;
}

.page-promotions-vip-exclusive-offers .section-light-bg .page-promotions-vip-exclusive-offers__faq-question:hover {
    background-color: rgba(10, 25, 47, 0.15);
}

.page-promotions-vip-exclusive-offers .section-light-bg .page-promotions-vip-exclusive-offers__faq-answer {
    background-color: rgba(10, 25, 47, 0.01);
}

.page-promotions-vip-exclusive-offers .section-light-bg .page-promotions-vip-exclusive-offers__faq-answer p {
    color: #0A192F;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-vip-exclusive-offers__hero h1 {
        font-size: 2.5em;
    }
    .page-promotions-vip-exclusive-offers__hero p {
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive-offers h2 {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive-offers h3 {
        font-size: 1.5em;
    }
    .page-promotions-vip-exclusive-offers section {
        padding: 40px 0;
    }
    .page-promotions-vip-exclusive-offers ul li {
        font-size: 1em;
        padding: 10px 15px;
    }
    .page-promotions-vip-exclusive-offers__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-exclusive-offers__hero h1 {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive-offers__hero p {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-offers h2 {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-offers h3 {
        font-size: 1.3em;
    }
    .page-promotions-vip-exclusive-offers__btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}