/* style/promotions.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #00BFFF;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #000000;
    --bg-light-card: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
}

.page-promotions {
    color: var(--text-light); /* Body background is dark, so text should be light */
    background-color: var(--bg-dark);
}

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

/* Fixed Nav Bar Spacing */
.page-promotions__hero-section {
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
}

.page-promotions__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__main-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.page-promotions__cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 191, 255, 0.4);
}

.page-promotions__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-promotions__text-block {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__text-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__text-block a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions__intro-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.page-promotions__types-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 100%);
}

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

.page-promotions__card {
    background: var(--bg-light-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px 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;
    align-items: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 191, 255, 0.3);
}

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

.page-promotions__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions__card-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions__card-description a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__card-description a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 191, 255, 0.2);
}

.page-promotions__card-button:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions__strategy-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.page-promotions__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: var(--bg-light-card);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.page-promotions__list-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.page-promotions__list-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: justify;
}

.page-promotions__list-item p strong {
    color: var(--primary-color);
}

.page-promotions__trust-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,1) 100%);
}

.page-promotions__advantage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__advantage-list .page-promotions__list-item {
    background: var(--bg-light-card);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promotions__list-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions__news-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

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

.page-promotions__news-card {
    background: var(--bg-light-card);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.page-promotions__news-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent look */
    object-fit: cover;
    display: block;
}

.page-promotions__news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__news-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-promotions__news-title a.page-promotions__news-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__news-title a.page-promotions__news-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions__news-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions__readmore-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__readmore-button:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.page-promotions__view-all-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-promotions__view-all-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.page-promotions__view-all-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 191, 255, 0.4);
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 100%);
}

.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--bg-light-card);
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--text-light);
}

.page-promotions__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
}

.page-promotions__faq-question:active {
    background: rgba(255, 255, 255, 0.2);
}

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 10px 10px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-promotions__faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: justify;
}

.page-promotions__faq-answer p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__faq-answer p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-section {
        padding-top: 160px; /* Tablet: Adjust based on fixed header height */
        padding-bottom: 50px;
    }
    .page-promotions__main-title {
        font-size: 38px;
    }
    .page-promotions__hero-description {
        font-size: 17px;
    }
    .page-promotions__section-title {
        font-size: 32px;
    }
    .page-promotions__card-grid {
        gap: 25px;
    }
    .page-promotions__advantage-list {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-image img,
    .page-promotions__card-image,
    .page-promotions__list-image,
    .page-promotions__news-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__container,
    .page-promotions__card,
    .page-promotions__news-card,
    .page-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-content {
        padding: 0 15px;
    }
    .page-promotions__main-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .page-promotions__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-promotions__section-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-promotions__text-block {
        font-size: 16px;
    }
    .page-promotions__card {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 20px;
    }
    .page-promotions__card-description {
        font-size: 15px;
    }
    .page-promotions__card-button {
        font-size: 15px;
        padding: 10px 20px;
    }
    .page-promotions__list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    .page-promotions__list-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-promotions__list-image {
        max-width: 150px;
    }
    .page-promotions__list-title {
        font-size: 20px;
    }
    .page-promotions__news-image {
        height: 180px;
    }
    .page-promotions__news-content {
        padding: 20px;
    }
    .page-promotions__news-title {
        font-size: 18px;
    }
    .page-promotions__news-excerpt {
        font-size: 14px;
    }
    .page-promotions__readmore-button {
        font-size: 14px;
        padding: 8px 15px;
    }
    .page-promotions__view-all-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    .page-promotions__faq-question {
        padding: 15px;
    }
    .page-promotions__faq-question h3 {
        font-size: 16px;
    }
    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-promotions__faq-answer {
        padding: 0 15px;
    }
    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px !important;
    }
    .page-promotions__faq-answer p {
        font-size: 15px;
    }
}