/* style/promotions.css */

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

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

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

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

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #003366, #1a4f80);
    color: #fff;
    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: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/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.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-promotions__hero-actions .page-promotions__btn {
    margin: 0 15px;
}

/* 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: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.page-promotions__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.page-promotions__btn--card {
    padding: 12px 25px;
    font-size: 1em;
    background-color: #003366;
    color: #FFCC00;
    border: 1px solid #003366;
}

.page-promotions__btn--card:hover {
    background-color: #004080;
    color: #fff;
    transform: translateY(-2px);
}

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

/* Overview Section */
.page-promotions__overview {
    background-color: #fff;
    padding-bottom: 30px;
}

.page-promotions__features-list {
    list-style: none;
    padding: 0;
    margin: 50px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
}

.page-promotions__features-list li {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    font-size: 1.1em;
    color: #003366;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.05);
}

.page-promotions__feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

/* Featured Promotions Grid */
.page-promotions__featured-promos {
    background-color: #f8f8f8;
}

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

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

.page-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 51, 102, 0.15);
}

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

.page-promotions__promo-card h3 {
    font-size: 1.5em;
    color: #003366;
    padding: 20px 25px 10px;
    margin-top: 0;
}

.page-promotions__promo-description {
    font-size: 1em;
    color: #555;
    padding: 0 25px 20px;
    flex-grow: 1;
}

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

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

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

.page-promotions__steps-list li {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 51, 102, 0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions__steps-list li:hover {
    transform: translateY(-5px);
}

.page-promotions__step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #003366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.page-promotions__step-icon {
    width: 50px;
    height: 50px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make icon white */
}

.page-promotions__steps-list h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

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

.page-promotions__steps-list p a {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
}

.page-promotions__steps-list p a:hover {
    text-decoration: underline;
    color: #FFCC00;
}

/* Why Choose Section */
.page-promotions__why-choose {
    background-color: #fff;
}

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

.page-promotions__reasons-list li {
    background-color: #f0f7ff;
    border-left: 5px solid #003366;
    border-radius: 8px;
    padding: 25px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-promotions__reasons-list li strong {
    color: #003366;
    font-weight: bold;
}

.page-promotions__reason-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 3px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

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

.page-promotions__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #003366;
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

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

.page-promotions__faq-question.active {
    background-color: #e0eaf2;
    border-bottom: 1px solid #ddd;
}

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

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

.page-promotions__faq-answer.open {
    max-height: 300px; /* Adjust based on content */
    padding: 20px 30px;
}

/* Final CTA Section */
.page-promotions__cta-final {
    background: linear-gradient(135deg, #003366, #004d99);
    color: #fff;
    padding: 80px 0;
}

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #FFCC00;
    margin-bottom: 20px;
    font-weight: 700;
    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;
    color: #e0e0e0;
}

.page-promotions__cta-actions .page-promotions__btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-card h3 {
        font-size: 1.3em;
    }
    .page-promotions__features-list li {
        flex: 1 1 100%;
    }
    .page-promotions__reasons-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__hero-actions .page-promotions__btn {
        margin: 0;
        width: 80%;
        max-width: 300px;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-description {
        font-size: 0.95em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
    .page-promotions__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__cta-actions .page-promotions__btn {
        margin: 0;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer.open {
        padding: 15px 20px;
    }
}