/* style/faq-promotions.css */

/* General Styles for page-faq-promotions */
.page-faq-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-faq-promotions__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-faq-promotions__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-faq-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-faq-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-faq-promotions__text-block a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-faq-promotions__text-block a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-faq-promotions__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient for depth */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-faq-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-faq-promotions__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700; /* Gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-promotions__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #e0e0e0;
}

.page-faq-promotions__hero-description a {
    color: #FFD700;
    font-weight: bold;
    text-decoration: underline;
}

.page-faq-promotions__hero-description a:hover {
    color: #fff;
}

.page-faq-promotions__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust to show more or less */
    right: 0;
    width: 30%;
    max-width: 400px;
    opacity: 0.7;
    z-index: 0;
    display: none; /* Hidden by default, show on larger screens */
}

.page-faq-promotions__hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

.page-faq-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0056b3; /* Darker blue for contrast */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-faq-promotions__btn--secondary {
    background-color: #007BFF; /* Main blue */
    color: #ffffff;
    border: 2px solid #FFD700; /* Gold border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-faq-promotions__introduction {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

/* FAQ List Section */
.page-faq-promotions__faq-list {
    background-color: #f8f9fa;
}

.page-faq-promotions__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-promotions__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-faq-promotions__faq-question {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-faq-promotions__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

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

.page-faq-promotions__faq-answer.active {
    max-height: 1000px; /* Adjust as needed for content length */
    padding-top: 15px;
}

.page-faq-promotions__faq-answer p {
    margin-bottom: 15px;
}

.page-faq-promotions__faq-answer ul,
.page-faq-promotions__faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-faq-promotions__faq-answer li {
    margin-bottom: 8px;
}

.page-faq-promotions__faq-answer strong {
    color: #007BFF;
}

.page-faq-promotions__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-faq-promotions__cta-section {
    background-color: #007BFF; /* Main blue background */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-faq-promotions__cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-faq-promotions__cta-section .page-faq-promotions__section-title {
    color: #FFD700; /* Gold title */
    font-size: 2.8em;
}

.page-faq-promotions__cta-section .page-faq-promotions__section-title::after {
    background-color: #fff;
}

.page-faq-promotions__cta-section .page-faq-promotions__text-block {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-faq-promotions__cta-section .page-faq-promotions__text-block a {
    color: #FFD700;
    text-decoration: underline;
}

.page-faq-promotions__cta-section .page-faq-promotions__text-block a:hover {
    color: #fff;
}

.page-faq-promotions__cta-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.15;
    overflow: hidden;
    z-index: 0;
}

.page-faq-promotions__cta-image {
    height: 100%;
    width: auto;
    object-fit: cover;
    transform: translateX(20%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-promotions__hero-title {
        font-size: 3em;
    }
    .page-faq-promotions__hero-description {
        font-size: 1.2em;
    }
    .page-faq-promotions__section-title {
        font-size: 2em;
    }
    .page-faq-promotions__faq-question {
        font-size: 1.4em;
    }
    .page-faq-promotions__faq-answer {
        font-size: 1em;
    }
    .page-faq-promotions__hero-image-wrapper {
        display: none; /* Hide on smaller screens */
    }
    .page-faq-promotions__cta-image-wrapper {
        justify-content: center;
        transform: translateX(0);
    }
    .page-faq-promotions__cta-image {
        width: 100%;
        height: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .page-faq-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-faq-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-faq-promotions__section {
        padding: 40px 0;
    }
    .page-faq-promotions__section-title {
        font-size: 1.8em;
    }
    .page-faq-promotions__faq-question {
        font-size: 1.3em;
    }
    .page-faq-promotions__faq-item {
        padding: 20px;
    }
    .page-faq-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-promotions__cta-section .page-faq-promotions__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-faq-promotions__hero-title {
        font-size: 2em;
    }
    .page-faq-promotions__hero-description {
        font-size: 1em;
    }
    .page-faq-promotions__section-title {
        font-size: 1.5em;
    }
    .page-faq-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-faq-promotions__faq-answer {
        font-size: 0.95em;
    }
    .page-faq-promotions__btn {
        width: 100%;
        margin-bottom: 15px;
    }
    .page-faq-promotions__cta-section .page-faq-promotions__section-title {
        font-size: 1.8em;
    }
    .page-faq-promotions__cta-section .page-faq-promotions__text-block {
        font-size: 1em;
    }
}