/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #0A1931; /* Dark blue text on light background */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for readability */
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A1931 0%, #30475E 100%); /* Darker blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-promotions__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

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

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-promotions__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions__section:last-of-type {
    border-bottom: none;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0A1931; /* Dark blue title */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promotions__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #333;
}

.page-promotions__keyword {
    color: #0A1931;
    font-weight: bold;
}

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

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

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

.page-promotions__offer-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #0A1931;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__card-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions__vip {
    background-color: #0A1931; /* Dark blue background */
    color: #FFFFFF; /* White text */
}

.page-promotions__vip .page-promotions__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-promotions__vip .page-promotions__text {
    color: #E0E0E0;
}

.page-promotions__vip .page-promotions__keyword {
    color: #FFD700;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-promotions__list li {
    font-size: 1.1em;
    color: #E0E0E0;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for list items */
    padding: 15px 20px;
    border-radius: 8px;
}

.page-promotions__list-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(300deg) brightness(120%) contrast(100%); /* Gold tint for icons */
}

.page-promotions__vip-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to {
    background-color: #f0f2f5;
}

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

.page-promotions__steps-list li {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-promotions__step-number {
    font-size: 2em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-promotions__step-title {
    font-size: 1.3em;
    color: #0A1931;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-promotions__steps-list li p {
    font-size: 1em;
    color: #555;
}

.page-promotions__link-inline {
    color: #0A1931;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__link-inline:hover {
    color: #FFD700;
}

.page-promotions__list--compact {
    gap: 10px;
}

.page-promotions__cta-final {
    background-color: #0A1931;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.page-promotions__cta-final .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__cta-final .page-promotions__text {
    color: #E0E0E0;
    margin-bottom: 30px;
}

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

.page-promotions__cta-final > * {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__title {
        font-size: 2.5em;
    }
    .page-promotions__subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__steps-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__title {
        font-size: 2em;
    }
    .page-promotions__subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__text, .page-promotions__card-text, .page-promotions__list li {
        font-size: 0.95em;
    }
    .page-promotions__offer-card {
        padding: 20px;
    }
    .page-promotions__list {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__title {
        font-size: 1.8em;
    }
    .page-promotions__subtitle {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__steps-list li {
        padding: 20px;
    }
}