/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.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__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    line-height: 1.2;
}

.page-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #001F3F;
    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 {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__text--bold {
    font-weight: bold;
    text-align: center;
}

.page-promotions__link-text {
    color: #001F3F;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__link-text:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__intro, .page-promotions__featured-promos, .page-promotions__detail-list, .page-promotions__how-to-claim, .page-promotions__why-hello88, .page-promotions__cta {
    padding: 60px 0;
}

.page-promotions__intro {
    background-color: #fff;
}

.page-promotions__featured-promos {
    background-color: #f0f0f0;
}

.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: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions__promo-card-title {
    font-size: 1.8em;
    color: #001F3F;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions__promo-card-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px;
    margin-bottom: 25px;
}

.page-promotions__detail-list {
    background-color: #fff;
}

.page-promotions__promo-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.page-promotions__promo-item:hover {
    background-color: #f0f5ff;
}

.page-promotions__promo-item-title {
    font-size: 1.8em;
    color: #001F3F;
    margin-bottom: 10px;
}

.page-promotions__promo-item-title a {
    color: #001F3F;
    text-decoration: none;
}

.page-promotions__promo-item-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__promo-item-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

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

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

.page-promotions__list li {
    background-color: #fff;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-promotions__list-strong {
    color: #001F3F;
}

.page-promotions__why-hello88 {
    background-color: #fff;
}

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

.page-promotions__feature-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-promotions__feature-item:hover {
    background-color: #e6f0ff;
}

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

.page-promotions__feature-description {
    font-size: 1em;
    color: #666;
}

.page-promotions__cta {
    background: linear-gradient(90deg, #001F3F, #003366);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions__cta .page-promotions__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions__cta-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    border: 5px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-promotions__cta-content {
    max-width: 600px;
}

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

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

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

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #001F3F;
    border: 2px solid #FFD700;
}

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

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

.page-promotions__btn--secondary:hover {
    background-color: #003366;
    color: #fff;
    transform: translateY(-3px);
}

.page-promotions__btn--link {
    background: none;
    border: 2px solid #001F3F;
    color: #001F3F;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-promotions__btn--link:hover {
    background-color: #001F3F;
    color: #FFD700;
    transform: none;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__cta .page-promotions__container {
        flex-direction: column;
    }
    .page-promotions__cta-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
        min-height: 350px;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__intro, .page-promotions__featured-promos, .page-promotions__detail-list, .page-promotions__how-to-claim, .page-promotions__why-hello88, .page-promotions__cta {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-item-title {
        font-size: 1.6em;
    }
    .page-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__text, .page-promotions__promo-card-description, .page-promotions__promo-item-description, .page-promotions__feature-description {
        font-size: 0.95em;
    }
    .page-promotions__list li {
        padding: 15px;
        font-size: 1em;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
}