/* 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__section {
    padding: 60px 0;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #1A2B4C;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-subtitle {
    font-size: 1.1em;
    color: #5f6b82;
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #1A2B4C, #3A506B);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    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,patterns,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

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

.page-promotions__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

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

.page-promotions__button--primary {
    background-color: #FFD700;
    color: #1A2B4C;
    border: 2px solid #FFD700;
}

.page-promotions__button--primary:hover {
    background-color: #e5c100;
    border-color: #e5c100;
    transform: translateY(-2px);
}

.page-promotions__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-2px);
}

.page-promotions__button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
}

.page-promotions__button--action {
    background-color: #FFD700;
    color: #1A2B4C;
    border: 2px solid #FFD700;
}

.page-promotions__button--action:hover {
    background-color: #e5c100;
    border-color: #e5c100;
}

.page-promotions__button--inline {
    background-color: #FFD700;
    color: #1A2B4C;
    border: none;
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
}

.page-promotions__button--inline:hover {
    background-color: #e5c100;
}

.page-promotions__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* About Promotions Section */
.page-promotions__about-promotions {
    background-color: #fff;
}

.page-promotions__about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-promotions__about-text {
    flex: 1;
    font-size: 1.05em;
    color: #495057;
}

.page-promotions__about-text p {
    margin-bottom: 15px;
}

.page-promotions__about-text a {
    color: #1A2B4C;
    text-decoration: underline;
}

.page-promotions__about-text a:hover {
    color: #FFD700;
}

.page-promotions__about-image {
    flex: 1;
    text-align: center;
}

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

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

.page-promotions__promotion-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 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(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.page-promotions__card-title {
    font-size: 1.5em;
    color: #1A2B4C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.page-promotions__card-description {
    color: #5f6b82;
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

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

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

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

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

.page-promotions__step-title {
    font-size: 1.3em;
    color: #1A2B4C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__step-description {
    color: #5f6b82;
    font-size: 0.95em;
}

.page-promotions__step-description a {
    color: #1A2B4C;
    text-decoration: underline;
}

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

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

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

.page-promotions__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
    font-size: 1.2em;
    color: #1A2B4C;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #5f6b82;
    line-height: 1.7;
}

/* Final CTA Section */
.page-promotions__cta-final {
    background: linear-gradient(135deg, #1A2B4C, #3A506B);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-promotions__cta-content {
    max-width: 900px;
}

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

.page-promotions__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__about-content {
        flex-direction: column;
    }
    .page-promotions__about-image {
        margin-top: 30px;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-promotions__promotions-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promotion-card {
        margin-bottom: 20px;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__button--large {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__step-title {
        font-size: 1.1em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}