/* style/promotions.css */

/* Core Styles */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #0A203C; /* Dark blue/green for text */
    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.8em;
    color: #0A203C; /* Dark blue/green */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions__section-description {
    font-size: 1.1em;
    color: #33475B; /* Slightly lighter dark blue */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-promotions__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A203C; /* Dark blue/green */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #E6C200; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #0A203C; /* Dark blue/green */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #1A3A5C; /* Lighter dark blue/green */
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 32, 60, 0.4);
}

.page-promotions__btn--small {
    padding: 8px 20px;
    font-size: 0.95em;
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.25em;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #0A203C 0%, #1A3A5C 100%); /* Dark blue/green gradient */
    color: #FFF;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-content {
    max-width: 600px;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for title */
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions__hero-actions {
    display: flex;
    gap: 20px;
}

.page-promotions__hero-image-wrapper {
    position: relative;
    width: 500px;
    height: 350px;
    z-index: 0;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

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

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

.page-promotions__feature-item {
    background-color: #FFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-promotions__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions__feature-title {
    font-size: 1.5em;
    color: #0A203C;
    margin-bottom: 15px;
}

.page-promotions__feature-text {
    color: #33475B;
    font-size: 1em;
}

/* Promotion Categories Section */
.page-promotions__promotion-categories {
    background-color: #FFF;
}

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

.page-promotions__category-item {
    background-color: #F8F9FA;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-promotions__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 20px;
}

.page-promotions__category-title {
    font-size: 1.6em;
    color: #0A203C;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions__category-description {
    color: #33475B;
    font-size: 0.95em;
    margin-bottom: 25px;
    flex-grow: 1;
    padding: 0 20px;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    background-color: #0A203C; /* Dark blue/green background */
    color: #E0E0E0;
}

.page-promotions__how-to-claim .page-promotions__section-title {
    color: #FFD700; /* Gold title */
}

.page-promotions__how-to-claim .page-promotions__section-description {
    color: #B0C4DE;
}

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

.page-promotions__step-item {
    background-color: #1A3A5C; /* Slightly lighter dark blue/green */
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
    background-color: #FFD700; /* Gold */
    color: #0A203C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #0A203C;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions__step-text {
    color: #B0C4DE;
    font-size: 1em;
}

.page-promotions__step-text a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__step-text a:hover {
    color: #E6C200;
}

.page-promotions__cta-bottom {
    margin-top: 60px;
}

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

.page-promotions__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #FFF;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFD700;
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #0A203C;
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #33475B;
}

/* Final CTA Section */
.page-promotions__cta-final {
    background-color: #0A203C;
    color: #E0E0E0;
    padding: 80px 0;
}

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

.page-promotions__cta-final .page-promotions__section-description {
    color: #B0C4DE;
    margin-bottom: 40px;
}

.page-promotions__download-app {
    margin-top: 30px;
}

.page-promotions__download-app p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #B0C4DE;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 60px 20px;
        min-height: auto;
    }

    .page-promotions__hero-content {
        max-width: 100%;
    }

    .page-promotions__hero-title {
        font-size: 3em;
    }

    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions__hero-actions {
        justify-content: center;
    }

    .page-promotions__hero-image-wrapper {
        width: 80%;
        height: auto;
        margin-bottom: 40px;
    }

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

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

    .page-promotions__features-grid,
    .page-promotions__category-grid,
    .page-promotions__steps {
        grid-template-columns: 1fr;
    }

    .page-promotions__step-item {
        text-align: center;
    }

    .page-promotions__step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-promotions__step-title {
        margin-top: 40px;
    }
}

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

    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-promotions__section {
        padding: 40px 0;
    }

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

    .page-promotions__feature-item, .page-promotions__category-item, .page-promotions__step-item, .page-promotions__faq-item {
        padding: 20px;
    }

    .page-promotions__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn {
        width: 100%;
    }

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

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

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

    .page-promotions__hero-image-wrapper {
        width: 95%;
    }
}