/* style/promotions.css */
.page-promotions {
    font-family: Arial, sans-serif;
    color: #E5E7EB; /* Light grey for general text */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-promotions__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A202C 0%, #3a0d0d 100%); /* Dark gradient */
    color: #FFFFFF;
    text-align: center;
    gap: 40px;
}

.page-promotions__hero-content {
    max-width: 800px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E53E3E; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #CBD5E0;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.page-promotions__hero-image:hover {
    transform: scale(1.03);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #E53E3E; /* Accent color */
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E53E3E;
    border-radius: 2px;
}

.page-promotions__introduction, .page-promotions__offer-types, .page-promotions__how-to-claim, .page-promotions__why-choose, .page-promotions__featured-offers, .page-promotions__safety-tips, .page-promotions__cta {
    padding: 40px 0;
}

.page-promotions__introduction p, .page-promotions__how-to-claim p, .page-promotions__why-choose p, .page-promotions__safety-tips p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #CBD5E0;
}

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

.page-promotions__card {
    background-color: #2D3748; /* Slightly lighter dark background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #4A5568;
}

.page-promotions__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

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

.page-promotions__card-title {
    font-size: 1.6em;
    color: #E53E3E;
    margin-bottom: 15px;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #CBD5E0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto; /* Push button to bottom */
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #E53E3E;
    color: #FFFFFF;
    border: none;
}

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

.page-promotions__btn--secondary {
    background-color: #4A5568;
    color: #FFFFFF;
    border: 1px solid #636B7E;
}

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

.page-promotions__btn--details {
    background-color: #E53E3E;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__btn--details:hover {
    background-color: #C53030;
    transform: translateY(-1px);
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

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

.page-promotions__step-item {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #4A5568;
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(330deg) brightness(0.9); /* Red tint for icons */
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #E53E3E;
    margin-bottom: 15px;
}

.page-promotions__step-item p {
    font-size: 0.95em;
    color: #CBD5E0;
    text-align: justify;
}

.page-promotions__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-promotions__list li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 45px;
    font-size: 1.1em;
    color: #CBD5E0;
    border-left: 5px solid #E53E3E;
}

.page-promotions__list li strong {
    color: #E53E3E;
}

.page-promotions__list li::before {
    content: '✔️'; /* Checkmark icon */
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #48BB78; /* Green for checkmark */
    font-size: 1.2em;
}

.page-promotions__offer-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.page-promotions__offer-item {
    background-color: #2D3748;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #4A5568;
}

.page-promotions__offer-content {
    flex-grow: 1;
}

.page-promotions__offer-title {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-promotions__offer-title a {
    color: #E53E3E; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__offer-title a:hover {
    color: #C53030;
    text-decoration: underline;
}

.page-promotions__offer-description {
    font-size: 1.05em;
    color: #CBD5E0;
    line-height: 1.5;
}

.page-promotions__cta {
    background: linear-gradient(90deg, #E53E3E 0%, #C53030 100%); /* Red gradient */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-small-text {
    margin-top: 20px;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__hero-description {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions__steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .page-promotions__offer-title {
        font-size: 1.6em;
    }
    .page-promotions__cta-title {
        font-size: 2.5em;
    }
    .page-promotions__cta-description {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        flex-direction: column;
        padding: 60px 15px;
        gap: 30px;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
        margin: 40px 0 30px;
    }
    .page-promotions__introduction p, .page-promotions__how-to-claim p, .page-promotions__why-choose p, .page-promotions__safety-tips p {
        font-size: 1em;
    }
    .page-promotions__grid, .page-promotions__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions__card, .page-promotions__step-item {
        padding: 25px;
    }
    .page-promotions__offer-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .page-promotions__offer-title {
        font-size: 1.4em;
    }
    .page-promotions__offer-description {
        font-size: 0.95em;
    }
    .page-promotions__cta {
        padding: 60px 15px;
    }
    .page-promotions__cta-title {
        font-size: 2em;
    }
    .page-promotions__cta-description {
        font-size: 1.1em;
    }
    .page-promotions__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions__list li {
        font-size: 1em;
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 0.95em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__step-title {
        font-size: 1.2em;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
}