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

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section--dark {
    background-color: #2D3748;
}

.page-promotions__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

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

.page-promotions__hero-section .page-promotions__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

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

.page-promotions__hero-description {
    font-size: 1.2em;
    color: #e5dfd3;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__text-content {
    font-size: 1.1em;
    color: #e5dfd3;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions__text-content--center {
    text-align: center;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__list li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    color: #e5dfd3;
}

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

.page-promotions__list--benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-promotions__list--benefits li::before {
    content: '✅';
    font-size: 1.2em;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.page-promotions__card {
    background-color: #1A202C;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #FFD700;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 20px 20px 10px;
    margin-top: 0;
}

.page-promotions__card-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-link:hover {
    color: #ffe04d;
    text-decoration: underline;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #e5dfd3;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-promotions__card-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

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

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

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

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

.page-promotions__btn--center {
    display: block;
    margin: 30px auto 0;
    width: fit-content;
}

.page-promotions__guide-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 30px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__guide-list li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    color: #e5dfd3;
}

.page-promotions__guide-list li strong {
    color: #FFD700;
}

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

.page-promotions__detail-item {
    background-color: #1A202C;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.page-promotions__detail-link:hover {
    color: #ffe04d;
    text-decoration: underline;
}

.page-promotions__detail-description {
    font-size: 1em;
    color: #e5dfd3;
    margin-bottom: 25px;
}

.page-promotions__faq-accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #1A202C;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-promotions__faq-question {
    background-color: #FFD700;
    color: #1A202C;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions__faq-question::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    background-color: #2D3748;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #e5dfd3;
    font-size: 1em;
}

.page-promotions__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(255, 215, 0, 0.95);
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: floatEffect 2s ease-in-out infinite alternate;
}

.page-promotions__floating-cta-text {
    color: #1A202C;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
}

.page-promotions__btn--floating {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #1A202C;
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions__btn--floating:hover {
    background-color: #3a475a;
    color: #FFD700;
    border-color: #3a475a;
    transform: translateY(-2px);
}

@keyframes floatEffect {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promotion-cards-grid, .page-promotions__detail-page-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__floating-cta {
        flex-direction: column;
        text-align: center;
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 15px;
    }
    .page-promotions__floating-cta-text {
        font-size: 1em;
    }
    .page-promotions__btn--floating {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__card-title, .page-promotions__detail-title {
        font-size: 1.4em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer p {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__list li, .page-promotions__guide-list li, .page-promotions__text-content {
        font-size: 0.95em;
    }
    .page-promotions__card-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .page-promotions__btn {
        width: 100%;
        text-align: center;
    }
}