/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #0F1D38; /* A slightly lighter dark blue for main content background */
}

.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: #F0B90B; /* Gold for main titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #C0C0C0; /* Slightly darker grey for body text */
}

.page-promotions .highlight {
    color: #F0B90B;
    font-weight: bold;
}

.page-promotions__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #F0B90B; /* Gold for primary actions */
    color: #1A2B4C; /* Dark blue for text on gold */
}

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

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

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

.page-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-promotions__btn--large {
    padding: 16px 35px;
    font-size: 1.2em;
}

.page-promotions__inline-link {
    color: #F0B90B;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__inline-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #0F1D38 100%); /* Dark blue gradient */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

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

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #F0B90B;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.page-promotions__hero-image-wrapper {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: auto;
    opacity: 0.7;
    z-index: 0;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.8) contrast(1.1);
}

/* Intro Section Features */
.page-promotions__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions__feature-item {
    background-color: #1A2B4C; /* Dark blue background for feature cards */
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(50%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect */
}

.page-promotions__feature-item h3 {
    font-size: 1.5em;
    color: #F0B90B;
    margin-bottom: 10px;
}

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

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

.page-promotions__offer-card {
    background-color: #1A2B4C; /* Dark blue background for offer cards */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #F0B90B;
}

.page-promotions__offer-card h3 {
    font-size: 1.6em;
    color: #F0B90B;
    margin: 20px 15px 10px;
}

.page-promotions__offer-card p {
    font-size: 1em;
    color: #C0C0C0;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-promotions__offer-card .page-promotions__btn {
    margin: 0 15px 20px;
    width: calc(100% - 30px);
}

/* How-To-Claim Section */
.page-promotions__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-promotions__steps li {
    background-color: #1A2B4C; /* Dark blue background for steps */
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.page-promotions__step-number {
    background-color: #F0B90B;
    color: #1A2B4C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: -20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps h3 {
    font-size: 1.4em;
    color: #F0B90B;
    margin-top: 10px;
    margin-bottom: 15px;
}

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

.page-promotions__cta-block {
    background-color: #1A2B4C; /* Dark blue for CTA block */
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

/* App Promo Section */
.page-promotions__section--app-promo {
    background-color: #0F1D38;
}

.page-promotions__container--flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.page-promotions__app-content {
    flex: 1;
}

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

.page-promotions__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Detail Pages Section */
.page-promotions__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__detail-item {
    background-color: #1A2B4C; /* Dark blue for detail items */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__detail-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-promotions__detail-item h3 a {
    color: #F0B90B;
    text-decoration: none;
}

.page-promotions__detail-item h3 a:hover {
    text-decoration: underline;
}

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

.page-promotions__detail-item .page-promotions__btn {
    width: auto;
}

/* FAQ Section */
.page-promotions__faq-item {
    background-color: #1A2B4C; /* Dark blue for FAQ items */
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item h3 {
    font-size: 1.4em;
    color: #F0B90B;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #F0B90B;
}

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

.page-promotions__faq-item p {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions__faq-item.active p {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Final CTA Section */
.page-promotions__section--final-cta {
    background-color: #1A2B4C;
    padding: 80px 0;
}

.page-promotions__final-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

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

    .page-promotions__hero-image-wrapper {
        position: static;
        transform: none;
        width: 80%;
        margin-bottom: 40px;
        order: 1;
    }

    .page-promotions__container--flex {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__app-content {
        order: 2;
    }

    .page-promotions__app-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
}

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

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

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

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

    .page-promotions__hero-actions .page-promotions__btn,
    .page-promotions__final-actions .page-promotions__btn {
        margin-bottom: 15px;
        margin-right: 0;
        width: 100%;
    }

    .page-promotions__step-number {
        position: static;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions__section {
        padding: 40px 0;
    }

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

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

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

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

    .page-promotions__cta-text {
        font-size: 1.2em;
    }
}