/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931; /* Primary dark background */
    line-height: 1.6;
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #E03B8B; /* Accent color for CTA */
    color: #FFFFFF; /* White text for CTA */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 59, 139, 0.4);
    position: relative;
    z-index: 1;
}

.page-promotions__cta-button:hover {
    background-color: #c72a7b; /* Darker accent on hover */
    transform: translateY(-3px);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin: 60px 0 40px 0;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E03B8B;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-promotions__why-choose-us, .page-promotions__promotion-types, .page-promotions__how-to-claim, .page-promotions__terms-conditions, .page-promotions__commitment, .page-promotions__detailed-offers {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-promotions__why-choose-us {
    background-color: #122a4d;
}

.page-promotions__features-grid, .page-promotions__grid-offers, .page-promotions__steps-grid, .page-promotions__detail-list {
    display: grid;
    gap: 30px;
}

.page-promotions__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-promotions__feature-item {
    background-color: #1a3a6b;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__feature-text {
    color: #e0e0e0;
}

.page-promotions__grid-offers {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-promotions__offer-card {
    background-color: #1a3a6b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-promotions__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #E03B8B;
}

.page-promotions__offer-card h3, .page-promotions__offer-card p, .page-promotions__offer-card a {
    padding: 0 25px;
}

.page-promotions__offer-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 25px 0 15px 0;
}

.page-promotions__offer-description {
    color: #e0e0e0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__offer-button {
    display: block;
    background-color: #E03B8B;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-promotions__offer-button:hover {
    background-color: #c72a7b;
}

.page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    text-align: center;
}

.page-promotions__step-item {
    background-color: #1a3a6b;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-promotions__step-number {
    background-color: #FFD700;
    color: #0A1931;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: -55px auto 20px auto;
    border: 3px solid #E03B8B;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.page-promotions__step-text {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-promotions__step-button {
    display: inline-block;
    background-color: #E03B8B;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-promotions__step-button:hover {
    background-color: #c72a7b;
}

.page-promotions__terms-conditions {
    background-color: #0A1931;
}

.page-promotions__general-text {
    color: #e0e0e0;
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__terms-list li {
    background-color: #1a3a6b;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    color: #f5e6ce;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-promotions__list-highlight {
    color: #E03B8B;
    font-weight: bold;
}

.page-promotions__commitment {
    background-color: #122a4d;
    text-align: center;
}

.page-promotions__cta-button--secondary {
    background-color: #FFD700; /* Gold for secondary CTA */
    color: #0A1931; /* Dark text for gold CTA */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__cta-button--secondary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions__detailed-offers {
    background-color: #0A1931;
}

.page-promotions__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-promotions__detail-item {
    background-color: #1a3a6b;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__detail-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}

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

.page-promotions__detail-title a:hover {
    color: #E03B8B;
}

.page-promotions__detail-description {
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__detail-button {
    display: inline-block;
    background-color: #E03B8B;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-promotions__detail-button:hover {
    background-color: #c72a7b;
}

.page-promotions__highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__features-grid, .page-promotions__grid-offers, .page-promotions__steps-grid, .page-promotions__detail-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-section {
        padding: 80px 0 60px 0;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__features-grid, .page-promotions__grid-offers, .page-promotions__steps-grid, .page-promotions__detail-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__feature-item, .page-promotions__offer-card, .page-promotions__step-item, .page-promotions__detail-item {
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-promotions__terms-list li {
        padding: 15px 20px;
    }
    .page-promotions__step-number {
        margin-top: -45px;
        width: 45px;
        height: 45px;
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__hero-description {
        font-size: 0.95em;
    }
    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__offer-title {
        font-size: 1.4em;
    }
    .page-promotions__step-title {
        font-size: 1.4em;
    }
    .page-promotions__general-text {
        font-size: 1em;
    }
}