/* style/promotions-vip-program.css */
.page-promotions-vip-program {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
}

.page-promotions-vip-program__section {
    padding: 60px 0;
}

.page-promotions-vip-program__section--alt-bg {
    background-color: #e9ecef;
}

.page-promotions-vip-program__hero-section {
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Adjusted for contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-vip-program__hero-section > .page-promotions-vip-program__container {
    position: relative;
    z-index: 1;
}

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

.page-promotions-vip-program__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-promotions-vip-program__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    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-program__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0056b3; /* Darker blue for contrast */
}

.page-promotions-vip-program__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-vip-program__btn--secondary {
    background-color: #007BFF; /* Main Blue */
    color: #fff;
    border: 2px solid #007BFF;
}

.page-promotions-vip-program__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.page-promotions-vip-program__btn--center {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
}

.page-promotions-vip-program__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-vip-program__section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-vip-program__feature-item {
    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;
}

.page-promotions-vip-program__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions-vip-program__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for icons */
}

.page-promotions-vip-program__feature-heading {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-promotions-vip-program__feature-text {
    color: #666;
}

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

.page-promotions-vip-program__image--margin-top {
    margin-top: 50px;
}

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

.page-promotions-vip-program__tier-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #007BFF;
}

.page-promotions-vip-program__tier-card:nth-child(even) {
    border-top-color: #FFD700;
}

.page-promotions-vip-program__tier-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.page-promotions-vip-program__tier-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-vip-program__tier-card:nth-child(even) .page-promotions-vip-program__tier-title {
    color: #0056b3;
}

.page-promotions-vip-program__tier-description {
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-promotions-vip-program__tier-benefits li {
    margin-bottom: 10px;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.page-promotions-vip-program__tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #28a745;
}

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

.page-promotions-vip-program__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-promotions-vip-program__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007BFF;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 5px solid #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__step-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-promotions-vip-program__step-text {
    color: #666;
}

.page-promotions-vip-program__step-text a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions-vip-program__cta-block {
    text-align: center;
    background-color: #007BFF;
    color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-program__cta-text {
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: bold;
    color: #fff;
}

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

.page-promotions-vip-program__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
}

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

.page-promotions-vip-program__promo-title {
    font-size: 1.6em;
    color: #007BFF;
    margin: 20px 15px 10px 15px;
}

.page-promotions-vip-program__promo-text {
    color: #666;
    padding: 0 15px 25px 15px;
}

.page-promotions-vip-program__content-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.page-promotions-vip-program__text-content {
    flex: 2;
    min-width: 300px;
}

.page-promotions-vip-program__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-promotions-vip-program__text-content strong {
    color: #007BFF;
}

.page-promotions-vip-program__image--side {
    flex: 1;
    min-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__final-cta-section {
    background: linear-gradient(45deg, #007BFF, #FFD700); /* Blend of main and aux colors */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-program__final-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-promotions-vip-program__final-cta-section > .page-promotions-vip-program__container {
    position: relative;
    z-index: 1;
}

.page-promotions-vip-program__final-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__final-cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-program__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-program__feature-grid, 
    .page-promotions-vip-program__vip-tiers, 
    .page-promotions-vip-program__steps-grid, 
    .page-promotions-vip-program__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-vip-program__content-flex {
        flex-direction: column;
    }
    .page-promotions-vip-program__image--side {
        order: -1; /* Image on top for smaller screens */
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program__hero-title {
        font-size: 2em;
    }
    .page-promotions-vip-program__hero-description {
        font-size: 1em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program__section-subtitle {
        font-size: 1em;
    }
    .page-promotions-vip-program__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-vip-program__feature-grid, 
    .page-promotions-vip-program__vip-tiers, 
    .page-promotions-vip-program__steps-grid, 
    .page-promotions-vip-program__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-program__cta-text {
        font-size: 1.5em;
    }
    .page-promotions-vip-program__final-cta-title {
        font-size: 2em;
    }
    .page-promotions-vip-program__final-cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-program__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-program__section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-program__cta-text {
        font-size: 1.3em;
    }
}