/* style/promotions.css */

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

.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: #0056b3; /* Darker shade of primary for contrast */
    color: #fff;
}

.page-promotions__section--highlight {
    background-color: #fff;
    padding: 80px 0;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #007BFF;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-title--light {
    color: #FFC107;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section--dark .page-promotions__section-description {
    color: #e0e0e0;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Primary color gradient */
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107; /* Secondary color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

/* Buttons */
.page-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-promotions__btn--primary {
    background-color: #FFC107; /* Secondary color */
    color: #0056b3; /* Darker primary for contrast */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #007BFF; /* Primary color */
    color: #fff;
    border: 2px solid #FFC107;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.page-promotions__btn--link {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions__btn--link:hover {
    background-color: #007BFF;
    color: #fff;
}

/* Feature Cards Grid */
.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions__card-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-promotions__card-text {
    color: #666;
    font-size: 1em;
}

/* Content Blocks (Text & Image) */
.page-promotions__content-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    text-align: left;
}

.page-promotions__content-block:last-of-type {
    margin-bottom: 0;
}

.page-promotions__content-block--reverse {
    flex-direction: row-reverse;
}

.page-promotions__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-promotions__content-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-promotions__text-content {
    flex: 1;
}

.page-promotions__content-subtitle {
    font-size: 2em;
    color: #FFC107;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__content-text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #fff;
}

/* Guide List */
.page-promotions__guide-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-promotions__guide-list li {
    background-color: #fff;
    border-left: 5px solid #007BFF;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-in-out;
}

.page-promotions__guide-list li:hover {
    border-left-color: #FFC107;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__guide-step-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-promotions__guide-list p {
    font-size: 1em;
    color: #555;
}

.page-promotions__guide-list a {
    color: #007BFF;
    text-decoration: underline;
}

.page-promotions__guide-list a:hover {
    color: #FFC107;
}

/* Promotions List (Detail Pages) */
.page-promotions__promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__promo-card {
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__promo-card .page-promotions__promo-title {
    font-size: 1.5em;
    color: #007BFF;
    margin: 20px 20px 10px 20px;
    line-height: 1.3;
}

.page-promotions__promo-card .page-promotions__promo-title a {
    text-decoration: none;
    color: #007BFF;
}

.page-promotions__promo-card .page-promotions__promo-title a:hover {
    color: #FFC107;
}

.page-promotions__promo-description {
    color: #666;
    font-size: 0.95em;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

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

/* FAQ Section */
.page-promotions__faq {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #007BFF;
    padding: 20px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #f0f0f0;
}

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

.page-promotions__faq-item.active .page-promotions__faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 1em;
    display: none;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    display: block;
}

/* Call to Action */
.page-promotions__call-to-action {
    background: linear-gradient(90deg, #007BFF 0%, #FFC107 100%); /* Mixed gradient for CTA */
    padding: 80px 0;
    color: #fff;
    text-align: center;
    border-radius: 0;
}

.page-promotions__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-promotions__call-to-action .page-promotions__btn--primary {
    background-color: #0056b3; /* Darker primary for contrast on mixed gradient */
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-promotions__call-to-action .page-promotions__btn--primary:hover {
    background-color: #003f80;
    border-color: #e0a800;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__content-block--reverse {
        flex-direction: column;
    }
    .page-promotions__text-content {
        order: 2;
    }
    .page-promotions__image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .page-promotions__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__grid,
    .page-promotions__promotions-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__content-subtitle {
        font-size: 1.8em;
    }
    .page-promotions__promo-title {
        font-size: 1.3em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
    .page-promotions__cta-title {
        font-size: 2em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__card-title {
        font-size: 1.5em;
    }
    .page-promotions__content-subtitle {
        font-size: 1.6em;
    }
    .page-promotions__promo-title {
        font-size: 1.2em;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__guide-list li,
    .page-promotions__faq-item {
        padding: 15px 20px;
    }
    .page-promotions__faq-question,
    .page-promotions__faq-answer {
        padding: 15px 20px;
    }
    .page-promotions__faq-question::after {
        right: 15px;
    }
}