/* style/exclusive-benefits.css */

/* General page styling */
.page-exclusive-benefits {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

.page-exclusive-benefits h1,
.page-exclusive-benefits h2,
.page-exclusive-benefits h3 {
    color: #FFD700; /* Accent color for headings */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-exclusive-benefits h1 {
    font-size: 2.8em;
    margin-top: 40px;
}

.page-exclusive-benefits h2 {
    font-size: 2.2em;
    margin-top: 60px;
}

.page-exclusive-benefits h3 {
    font-size: 1.8em;
    margin-top: 30px;
    color: #e0e0e0; /* Slightly lighter heading for cards */
}

.page-exclusive-benefits p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #cccccc;
}

.page-exclusive-benefits ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
    color: #cccccc;
}

.page-exclusive-benefits ul li {
    background-color: #2c3440;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1em;
}

.page-exclusive-benefits ul li::before {
    content: '✅';
    margin-right: 10px;
    color: #FFD700;
}

/* Buttons */
.page-exclusive-benefits__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-exclusive-benefits__btn--primary {
    background-color: #FFD700; /* Accent for primary actions */
    color: #1A202C; /* Dark text on accent background */
    border: 2px solid #FFD700;
}

.page-exclusive-benefits__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-exclusive-benefits__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent text on dark background */
    border: 2px solid #FFD700;
}

.page-exclusive-benefits__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-exclusive-benefits__btn--link {
    background-color: transparent;
    color: #FFD700;
    border: none;
    padding: 8px 15px;
    font-size: 1em;
    text-decoration: underline;
    box-shadow: none;
}

.page-exclusive-benefits__btn--link:hover {
    color: #e6c200;
    text-decoration: none;
}


/* Hero Section */
.page-exclusive-benefits__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4454 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-exclusive-benefits__hero h1 {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-exclusive-benefits__hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

/* Intro Section */
.page-exclusive-benefits__intro {
    padding: 60px 0;
    background-color: #212936;
}

.page-exclusive-benefits__intro h2 {
    color: #FFD700;
    margin-bottom: 40px;
}

.page-exclusive-benefits__intro > p {
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.page-exclusive-benefits__feature-item {
    background-color: #2c3440;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-exclusive-benefits__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-exclusive-benefits__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    object-fit: contain;
}

.page-exclusive-benefits__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-exclusive-benefits__feature-item p {
    font-size: 1em;
    color: #cccccc;
    text-align: center;
}

/* Current Offers Section */
.page-exclusive-benefits__current-offers {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-exclusive-benefits__current-offers h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-exclusive-benefits__current-offers > p {
    max-width: 800px;
    margin: 0 auto 50px;
}

.page-exclusive-benefits__offer-card {
    display: flex;
    align-items: center;
    background-color: #2c3440;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-exclusive-benefits__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-exclusive-benefits__offer-card--reversed {
    flex-direction: row-reverse;
}

.page-exclusive-benefits__offer-content {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.page-exclusive-benefits__offer-content h3 {
    color: #FFD700;
    text-align: left;
    margin-bottom: 15px;
}

.page-exclusive-benefits__offer-content p {
    text-align: left;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-exclusive-benefits__offer-content ul {
    max-width: none;
    margin: 0 0 20px 0;
    text-align: left;
}

.page-exclusive-benefits__offer-image {
    flex: 1;
    min-width: 300px; /* Ensure image doesn't shrink too much */
}

.page-exclusive-benefits__offer-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 250px;
}

/* VIP Program Section */
.page-exclusive-benefits__vip-program {
    padding: 60px 0;
    background-color: #212936;
    text-align: center;
}

.page-exclusive-benefits__vip-program h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-exclusive-benefits__vip-program p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-exclusive-benefits__vip-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    object-fit: cover;
    width: 100%; /* Ensure responsiveness */
    max-height: 400px;
}

/* CTA Section */
.page-exclusive-benefits__cta {
    padding: 60px 0;
    background: linear-gradient(90deg, #1A202C, #2c3440);
    text-align: center;
}

.page-exclusive-benefits__cta h2 {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-exclusive-benefits__cta p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

/* Detail Pages Section */
.page-exclusive-benefits__detail-pages {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-exclusive-benefits__detail-pages h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-exclusive-benefits__detail-pages > p {
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.page-exclusive-benefits__detail-card {
    background-color: #2c3440;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-exclusive-benefits__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-exclusive-benefits__detail-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-exclusive-benefits__detail-card h3 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-exclusive-benefits__detail-card h3 a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-exclusive-benefits__detail-card p {
    font-size: 0.95em;
    color: #cccccc;
    flex-grow: 1; /* Allows paragraph to take available space */
    text-align: center;
    margin-bottom: 20px;
}

/* Trust Section */
.page-exclusive-benefits__trust {
    padding: 60px 0 80px;
    background-color: #212936;
    text-align: center;
}

.page-exclusive-benefits__trust h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-exclusive-benefits__trust p {
    max-width: 900px;
    margin: 0 auto 25px;
    text-align: center;
    font-size: 1.1em;
    color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-exclusive-benefits__hero h1 {
        font-size: 3em;
    }
    .page-exclusive-benefits h2 {
        font-size: 2em;
    }
    .page-exclusive-benefits__offer-card {
        flex-direction: column;
    }
    .page-exclusive-benefits__offer-card--reversed {
        flex-direction: column;
    }
    .page-exclusive-benefits__offer-content,
    .page-exclusive-benefits__offer-image {
        flex: none;
        width: 100%;
    }
    .page-exclusive-benefits__offer-content {
        padding: 30px;
    }
    .page-exclusive-benefits__offer-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-exclusive-benefits__hero h1 {
        font-size: 2.5em;
    }
    .page-exclusive-benefits h2 {
        font-size: 1.8em;
    }
    .page-exclusive-benefits h3 {
        font-size: 1.4em;
    }
    .page-exclusive-benefits__btn {
        padding: 10px 20px;
        font-size: 1em;
        margin: 8px;
    }
    .page-exclusive-benefits__grid,
    .page-exclusive-benefits__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-exclusive-benefits__vip-image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-exclusive-benefits__hero h1 {
        font-size: 2em;
    }
    .page-exclusive-benefits h2 {
        font-size: 1.6em;
    }
    .page-exclusive-benefits p {
        font-size: 1em;
    }
    .page-exclusive-benefits__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-exclusive-benefits__offer-content {
        padding: 20px;
    }
    .page-exclusive-benefits__offer-image img {
        min-height: 200px;
    }
    .page-exclusive-benefits__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}