/* style/promotions.css */
.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__hero-section {
    background: linear-gradient(135deg, #0047AB, #002880);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0047AB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn--secondary {
    background-color: #0047AB;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-right: 15px;
}

.page-promotions__btn--secondary:hover {
    background-color: #002880;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0047AB;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 60px;
    position: relative;
}

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

.page-promotions__section-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.page-promotions__why-choose-us {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.page-promotions__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    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-item: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;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions__feature-title {
    font-size: 1.6em;
    color: #0047AB;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__feature-item p {
    color: #666;
    font-size: 1em;
}

.page-promotions__current-promotions {
    padding: 80px 0;
    background-color: #fff;
}

.page-promotions__promotion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.page-promotions__promotion-card {
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 4px 15px 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__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promotion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

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

.page-promotions__promotion-card-title {
    font-size: 1.4em;
    color: #0047AB;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__promotion-card-title a {
    color: #0047AB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promotion-card-title a:hover {
    color: #FFD700;
}

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

.page-promotions__how-to-claim {
    background-color: #f0f2f5;
    padding: 80px 0;
}

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

.page-promotions__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-promotions__step-number {
    font-size: 2.5em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: #0047AB;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #0047AB;
    margin-bottom: 15px;
}

.page-promotions__step-item p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-promotions__step-item a {
    color: #0047AB;
    text-decoration: underline;
}

.page-promotions__step-item a:hover {
    color: #FFD700;
}

.page-promotions__tips-section {
    padding: 80px 0;
}

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

.page-promotions__tips-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FFD700;
}

.page-promotions__tip-title {
    font-size: 1.4em;
    color: #0047AB;
    margin-bottom: 15px;
}

.page-promotions__tip-title::before {
    content: '✓';
    color: #FFD700;
    margin-right: 10px;
    font-weight: bold;
}

.page-promotions__tips-list li p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions__faq-section {
    background-color: #f0f2f5;
    padding: 80px 0;
}

.page-promotions__faq-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-promotions__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #0047AB;
    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;
    color: #FFD700;
    font-weight: bold;
}

.page-promotions__faq-question.active::after {
    content: '-';
}

.page-promotions__faq-answer {
    color: #666;
    font-size: 0.95em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

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

.page-promotions__cta-section {
    background: linear-gradient(45deg, #0047AB, #002880);
    color: #fff;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions__cta-section .page-promotions__section-title {
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

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

.page-promotions__cta-section .page-promotions__section-intro {
    color: #f0f0f0;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__btn--secondary {
        margin-right: 0;
        margin-bottom: 15px;
    }

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

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

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

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

    .page-promotions__btn {
        width: 100%;
        display: block;
        margin-bottom: 15px;
    }

    .page-promotions__promotion-content .page-promotions__btn {
        margin-bottom: 10px;
    }
}