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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold text for hero */
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-promotions__bubble-1 15s infinite ease-in-out;
}

.page-promotions__hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    animation: page-promotions__bubble-2 20s infinite ease-in-out;
}

@keyframes page-promotions__bubble-1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(50px, 50px) scale(1.1); opacity: 0.6; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

@keyframes page-promotions__bubble-2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(-60px, -60px) scale(1.2); opacity: 0.5; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
}

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

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #2D3748;
    color: #FFD700;
    border: 1px solid #FFD700;
}

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

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions__intro, .page-promotions__benefits, .page-promotions__details-list, .page-promotions__guide, .page-promotions__tips, .page-promotions__safety, .page-promotions__conclusion {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-promotions__intro {
    background-color: #2D3748;
    color: #E0E0E0;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

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

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

.page-promotions__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-promotions__list li::before {
    content: '✔️'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #4CAF50; /* Green for positive elements */
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__promo-card {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    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 #3a475d;
}

.page-promotions__promo-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    min-height: 60px; /* Ensure consistent height */
}

.page-promotions__promo-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__promo-title a:hover {
    text-decoration: underline;
}

.page-promotions__promo-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__cta-block {
    background-color: #2D3748;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-promotions__cta-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions__conclusion .page-promotions__text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__intro, .page-promotions__benefits, .page-promotions__details-list, .page-promotions__guide, .page-promotions__tips, .page-promotions__safety, .page-promotions__conclusion {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__text-content, .page-promotions__list li {
        font-size: 0.95em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-card {
        padding: 25px;
    }
    .page-promotions__promo-title {
        font-size: 1.6em;
    }
    .page-promotions__cta-title {
        font-size: 1.6em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__list li {
        padding-left: 25px;
    }
    .page-promotions__list li::before {
        font-size: 1em;
    }
    .page-promotions__promo-title {
        font-size: 1.4em;
    }
    .page-promotions__cta-block {
        padding: 30px 20px;
    }
    .page-promotions__cta-title {
        font-size: 1.4em;
    }
}