/* style/promo.css */
.page-promo {
    color: #333333; /* Default text color for light background */
}

.page-promo__hero-section {
    background-color: #FFD700; /* Gold main color */
    padding: var(--header-offset, 120px) 20px 60px; /* Top padding for fixed header, bottom for content */
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promo__hero-content {
    max-width: 900px;
    margin: 0 auto 30px;
    z-index: 1;
    position: relative;
    color: #8B0000; /* Dark red text for contrast */
}

.page-promo__hero-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #8B0000; /* Dark red for emphasis */
}

.page-promo__hero-description {
    font-size: 1.25em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-promo__hero-button {
    display: inline-block;
    background-color: #8B0000; /* Dark red button */
    color: #FFFFFF; /* White text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__hero-button:hover {
    background-color: #b90000; /* Lighter red on hover */
    transform: translateY(-3px);
}

.page-promo__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promo__section-title {
    font-size: 2.8em;
    color: #8B0000; /* Dark red for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promo__text-content {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-promo__why-jili77-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}

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

.page-promo__feature-item {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
    transform: translateY(-10px);
}

.page-promo__feature-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-promo__feature-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promo__feature-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-promo__promo-types-section {
    padding: 80px 0;
}

.page-promo__promo-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-promo__promo-category-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-promo__promo-category-card:hover {
    transform: translateY(-10px);
}

.page-promo__promo-category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-promo__promo-category-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promo__promo-category-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for category titles */
    margin-bottom: 15px;
    font-weight: 700;
}

.page-promo__promo-category-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promo__promo-category-title a:hover {
    color: #e6c200;
}

.page-promo__promo-category-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__promo-category-button {
    display: inline-block;
    background-color: #8B0000;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.page-promo__promo-category-button:hover {
    background-color: #b90000;
}

.page-promo__how-to-section {
    background-color: #FFD700;
    padding: 80px 0;
    color: #8B0000;
}

.page-promo__how-to-section .page-promo__section-title,
.page-promo__how-to-section .page-promo__text-content {
    color: #8B0000;
}

.page-promo__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promo__step-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-promo__step-title {
    font-size: 1.6em;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-promo__step-description {
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
}

.page-promo__step-description a {
    color: #8B0000;
    font-weight: 600;
    text-decoration: underline;
}

.page-promo__step-description a:hover {
    color: #b90000;
}

.page-promo__how-to-button {
    display: inline-block;
    background-color: #8B0000;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__how-to-button:hover {
    background-color: #b90000;
    transform: translateY(-3px);
}

.page-promo__terms-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promo__terms-item {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__terms-heading {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promo__terms-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-promo__terms-section a {
    color: #8B0000;
    font-weight: 600;
    text-decoration: underline;
}

.page-promo__terms-section a:hover {
    color: #b90000;
}

.page-promo__vip-section {
    background-color: #333333; /* Dark background for VIP section */
    padding: 80px 0;
    color: #FFFFFF;
}

.page-promo__vip-section .page-promo__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-promo__vip-section .page-promo__text-content {
    color: #f0f0f0;
}

.page-promo__vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promo__vip-benefit-item {
    background-color: rgba(255, 215, 0, 0.1); /* Semi-transparent gold */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-promo__vip-benefit-item:hover {
    background-color: rgba(255, 215, 0, 0.2);
}

.page-promo__vip-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-promo__vip-benefit-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promo__vip-benefit-description {
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-promo__vip-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__vip-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promo__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #FFD700; /* Gold main color */
    color: #8B0000;
}

.page-promo__cta-section .page-promo__section-title,
.page-promo__cta-section .page-promo__text-content {
    color: #8B0000;
}

.page-promo__cta-button {
    display: inline-block;
    background-color: #8B0000;
    color: #FFFFFF;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__cta-button:hover {
    background-color: #b90000;
    transform: translateY(-5px);
}

.page-promo__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__section-title {
        font-size: 2.2em;
    }
    .page-promo__promo-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .page-promo__features-grid,
    .page-promo__steps-list,
    .page-promo__vip-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-top: var(--header-offset, 80px);
        padding-bottom: 40px;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__hero-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__text-content {
        font-size: 1em;
    }
    .page-promo__features-grid,
    .page-promo__steps-list,
    .page-promo__vip-benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-category-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__feature-icon,
    .page-promo__vip-icon {
        width: 200px;
        height: 200px;
    }
    /* Ensure all images within .page-promo are responsive and don't overflow */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
    .page-promo__cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-promo__promo-category-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.95em;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__feature-item,
    .page-promo__promo-category-card,
    .page-promo__step-item,
    .page-promo__terms-item,
    .page-promo__vip-benefit-item {
        padding: 20px;
    }
    .page-promo__hero-button,
    .page-promo__how-to-button,
    .page-promo__vip-button,
    .page-promo__cta-button {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}