/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #121f2d; /* Slightly lighter dark background than main color for contrast */
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #1A2E44, #0f1c2b); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold text for hero section */
    border-bottom: 3px solid #FFD700;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700;
}

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

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

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

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

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

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E44; /* Dark blue text */
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-promotions__btn--secondary {
    background-color: #1A2E44; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A2E44; /* Dark blue text on hover */
    transform: translateY(-2px);
}

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

.page-promotions__intro-section, .page-promotions__highlight-section, .page-promotions__detail-promotions, .page-promotions__cta-section, .page-promotions__faq-section, .page-promotions__final-cta {
    padding: 60px 0;
}

.page-promotions__intro-section {
    background-color: #1A2E44;
    border-bottom: 1px solid #334a66;
}

.page-promotions__image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__highlight-section {
    background-color: #121f2d;
    border-bottom: 1px solid #334a66;
}

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

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

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

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

.page-promotions__feature-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-promotions__detail-promotions {
    background-color: #0f1c2b;
    border-bottom: 1px solid #334a66;
}

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

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

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

.page-promotions__promotion-card .page-promotions__btn {
    margin: 0 10px 20px;
    align-self: flex-start;
}

.page-promotions__promotion-card .page-promotions__btn--primary {
    margin-left: 20px;
    margin-right: 20px;
}

.page-promotions__cta-section {
    background-color: #1A2E44;
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #334a66;
}

.page-promotions__why-choose-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-promotions__why-choose-list li {
    background-color: #0f1c2b;
    padding: 15px 25px;
    border-radius: 8px;
    margin: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__icon {
    color: #FFD700;
    font-size: 1.3em;
    margin-right: 10px;
}

.page-promotions__faq-section {
    background-color: #121f2d;
    padding-bottom: 80px;
}

.page-promotions__faq-item {
    background-color: #1A2E44;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    font-size: 1em;
    color: #d0d0d0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-promotions__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-promotions__final-cta {
    background-color: #0f1c2b;
    text-align: center;
    padding: 80px 0;
    border-top: 3px solid #FFD700;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__feature-list, .page-promotions__promotion-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__why-choose-list li {
        width: 100%;
        justify-content: flex-start;
    }

    .page-promotions__promotion-card .page-promotions__btn {
        margin: 0 10px 15px;
        width: calc(100% - 40px);
        text-align: center;
    }
    .page-promotions__promotion-card .page-promotions__btn--primary {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }

    .page-promotions__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    .page-promotions__intro-section, .page-promotions__highlight-section, .page-promotions__detail-promotions, .page-promotions__cta-section, .page-promotions__faq-section, .page-promotions__final-cta {
        padding: 40px 0;
    }

    .page-promotions__faq-item {
        padding: 20px;
    }

    .page-promotions__faq-question {
        font-size: 1.2em;
    }
}