/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #1A202C;
}

.page-promotions__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A202C, #3a404c);
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.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: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-promotions__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    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__section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-promotions__section-intro {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 50px;
    line-height: 1.6;
}

.page-promotions__section--highlight {
    background-color: #2a303c;
}

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

.page-promotions__feature-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

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

.page-promotions__feature-item p {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
}

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

.page-promotions__promotion-card {
    background-color: #2a303c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px 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__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__promotion-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.page-promotions__promotion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-promotions__promotion-card:hover .page-promotions__promotion-image {
    transform: scale(1.05);
}

.page-promotions__promotion-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__promotion-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__promotion-description {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__btn--details {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.95em;
    margin-right: 15px;
}

.page-promotions__btn--details:hover {
    background-color: #FFD700;
    color: #1A202C;
}

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

.page-promotions__btn--action:hover {
    background-color: #e6c200;
}

.page-promotions__section--cta {
    background-color: #1A202C;
    padding: 80px 20px;
}

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

.page-promotions__step-item {
    background-color: #2a303c;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-promotions__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(1.2);
}

.page-promotions__step-item h3 {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__step-item p {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 30px;
}

.page-promotions__btn--step {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    font-size: 1em;
}

.page-promotions__btn--step:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions__section--faq {
    background-color: #2a303c;
    padding: 60px 20px;
}

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

.page-promotions__faq-item {
    background-color: #1A202C;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 15px;
    }

    .page-promotions__hero-title {
        font-size: 2.2em;
    }

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

    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 280px;
    }

    .page-promotions__section {
        padding: 40px 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }

    .page-promotions__features-grid, .page-promotions__promotion-list, .page-promotions__cta-steps {
        grid-template-columns: 1fr;
    }

    .page-promotions__promotion-card {
        margin-bottom: 30px;
    }

    .page-promotions__promotion-title {
        font-size: 1.5em;
    }

    .page-promotions__promotion-description {
        font-size: 0.9em;
    }

    .page-promotions__btn--details, .page-promotions__btn--action {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-promotions__step-item h3 {
        font-size: 1.4em;
    }

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

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

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

    .page-promotions__feature-item h3 {
        font-size: 1.3em;
    }

    .page-promotions__promotion-title {
        font-size: 1.3em;
    }
}