/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,blue,gold,pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero > .page-promotions__container {
    position: relative;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B143;
    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;
    color: #e0e0e0;
}

/* Buttons */
.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.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #E0B143;
    color: #0A2463;
    border: 2px solid #E0B143;
}

.page-promotions__btn--primary:hover {
    background-color: #f5c76e;
    transform: translateY(-3px);
}

.page-promotions__btn--secondary {
    background-color: #0A2463;
    color: #E0B143;
    border: 2px solid #0A2463;
}

.page-promotions__btn--secondary:hover {
    background-color: #1a3e7a;
    transform: translateY(-3px);
}

.page-promotions__btn--link {
    background: none;
    border: none;
    color: #E0B143;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-promotions__btn--link:hover {
    color: #f5c76e;
    text-decoration: none;
}

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

/* Section Styling */
.page-promotions__overview,
.page-promotions__list-section,
.page-promotions__how-to-claim,
.page-promotions__faq,
.page-promotions__cta-final {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__overview {
    background-color: #f8f8f8;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__subtitle {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

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

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

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions__list li {
    background-color: #e6f0ff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #0A2463;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
}

.page-promotions__list li::before {
    content: '✓';
    color: #0A2463;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions__list-highlight {
    color: #0A2463;
}

/* Promotion Card Grid */
.page-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    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 12px 30px rgba(0, 0, 0, 0.15);
}

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

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

.page-promotions__promo-card-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__promo-card-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.page-promotions__promo-card .page-promotions__btn--secondary {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.95em;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    background-color: #e6f0ff;
}

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

.page-promotions__step-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: #0A2463;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
}

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

.page-promotions__call-to-action {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #0A2463;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions__call-to-action .page-promotions__text-content {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-promotions__call-to-action .page-promotions__btn--primary {
    background-color: #E0B143;
    color: #0A2463;
}

.page-promotions__call-to-action .page-promotions__btn--primary:hover {
    background-color: #f5c76e;
}

/* FAQ Section */
.page-promotions__faq {
    background-color: #ffffff;
}

.page-promotions__faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-promotions__faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    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;
    font-weight: bold;
    color: #E0B143;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    color: #555;
    font-size: 1.05em;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-answer.active {
    max-height: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Final CTA */
.page-promotions__cta-final {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 0;
}

.page-promotions__cta-final .page-promotions__section-title {
    color: #E0B143;
}

.page-promotions__cta-final .page-promotions__section-title::after {
    background-color: #ffffff;
}

.page-promotions__cta-final .page-promotions__text-content {
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions__image-wrapper--cta {
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__overview,
    .page-promotions__list-section,
    .page-promotions__how-to-claim,
    .page-promotions__faq,
    .page-promotions__cta-final {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__subtitle {
        font-size: 1.5em;
    }
    .page-promotions__list li {
        font-size: 1em;
    }
    .page-promotions__promo-card-title {
        font-size: 1.3em;
    }
    .page-promotions__promo-card .page-promotions__btn--secondary {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-promotions__step-card {
        padding: 20px;
    }
    .page-promotions__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-promotions__step-title {
        font-size: 1.2em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-card-image {
        height: 180px;
    }
    .page-promotions__promo-card-content {
        padding: 20px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.2em;
    }
    .page-promotions__faq-question {
        font-size: 1em;
    }
}

/* Ensure contrast for all elements */
.page-promotions__hero-title,
.page-promotions__hero-description,
.page-promotions__section-title,
.page-promotions__subtitle,
.page-promotions__text-content,
.page-promotions__list li,
.page-promotions__list-highlight,
.page-promotions__promo-card-title a,
.page-promotions__promo-card-description,
.page-promotions__step-title,
.page-promotions__step-description,
.page-promotions__faq-question,
.page-promotions__faq-answer {
    /* These colors are set to ensure good contrast with their respective backgrounds */
}

/* Specific contrast adjustments */
.page-promotions__overview .page-promotions__text-content,
.page-promotions__list-section .page-promotions__text-content,
.page-promotions__promo-card-description,
.page-promotions__how-to-claim .page-promotions__text-content,
.page-promotions__step-description,
.page-promotions__faq-answer {
    color: #333333;
}

.page-promotions__how-to-claim .page-promotions__call-to-action .page-promotions__text-content {
    color: #ffffff;
}

.page-promotions__cta-final .page-promotions__text-content {
    color: #ffffff;
}

/* Hover states contrast */
.page-promotions__btn--primary:hover {
    color: #0A2463;
}
.page-promotions__btn--secondary:hover {
    color: #E0B143;
}
.page-promotions__promo-card-title a:hover {
    color: #E0B143;
}