/* style/index-latest-promotions-overview.css */

:root {
    --page-primary-color: #004AAD;
    --page-accent-color: #FFD700;
    --page-text-color-dark: #333333;
    --page-text-color-light: #FFFFFF;
    --page-background-light: #F8F8F8;
    --page-background-dark: #003380;
    --page-border-color: #E0E0E0;
    --page-shadow-light: rgba(0, 0, 0, 0.1);
    --page-transition-speed: 0.3s ease;
}

/* Base styles for the page content area */
.page-index-latest-promotions-overview {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--page-text-color-dark);
    background-color: var(--page-background-light);
}

.page-index-latest-promotions-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-latest-promotions-overview__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-latest-promotions-overview__section-title .highlight {
    color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    border-radius: 2px;
}

.page-index-latest-promotions-overview__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 60px;
    color: #555;
}

/* Hero Section */
.page-index-latest-promotions-overview__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #003380 100%); /* Darker blue gradient */
    color: var(--page-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-index-latest-promotions-overview__hero-section .page-index-latest-promotions-overview__container {
    position: relative;
    z-index: 1;
}

.page-index-latest-promotions-overview__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__hero-title .highlight {
    color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.page-index-latest-promotions-overview__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.page-index-latest-promotions-overview__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all var(--page-transition-speed);
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px var(--page-shadow-light);
}

.page-index-latest-promotions-overview__btn--primary {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    border-color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__btn--secondary {
    background-color: transparent;
    color: var(--page-text-color-light);
    border-color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--page-accent-color);
    color: var(--page-accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__btn--claim {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    border-color: var(--page-accent-color);
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 8px;
    margin-top: 20px;
}

.page-index-latest-promotions-overview__btn--claim:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-latest-promotions-overview__btn--large {
    padding: 18px 45px;
    font-size: 1.2em;
}

/* Introduction Section */
.page-index-latest-promotions-overview__introduction-section {
    padding: 80px 0;
    background-color: var(--page-background-light);
}

.page-index-latest-promotions-overview__intro-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

/* Promotions Grid Section */
.page-index-latest-promotions-overview__promotions-grid-section {
    padding: 80px 0;
    background-color: var(--page-background-dark);
    color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__promotions-grid-section .page-index-latest-promotions-overview__section-title,
.page-index-latest-promotions-overview__promotions-grid-section .page-index-latest-promotions-overview__section-description {
    color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__promotions-grid-section .page-index-latest-promotions-overview__section-title .highlight {
    color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__promotions-grid-section .page-index-latest-promotions-overview__section-title::after {
    background-color: var(--page-accent-color);
}

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

.page-index-latest-promotions-overview__promo-card {
    background-color: #003e99; /* Slightly lighter than dark background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform var(--page-transition-speed);
    display: flex;
    flex-direction: column;
}

.page-index-latest-promotions-overview__promo-card:hover {
    transform: translateY(-10px);
}

.page-index-latest-promotions-overview__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-index-latest-promotions-overview__promo-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__promo-card-title {
    font-size: 1.8em;
    color: var(--page-accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-latest-promotions-overview__promo-card-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.page-index-latest-promotions-overview__promo-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-latest-promotions-overview__promo-card-features li {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-latest-promotions-overview__promo-card-features li i {
    color: var(--page-accent-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* How to Claim Section */
.page-index-latest-promotions-overview__how-to-claim-section {
    padding: 80px 0;
    background-color: var(--page-background-light);
}

.page-index-latest-promotions-overview__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-latest-promotions-overview__step-card {
    background-color: var(--page-text-color-light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--page-transition-speed);
}

.page-index-latest-promotions-overview__step-card:hover {
    transform: translateY(-8px);
}

.page-index-latest-promotions-overview__step-icon {
    font-size: 3em;
    color: var(--page-primary-color);
    margin-bottom: 20px;
}

.page-index-latest-promotions-overview__step-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview__step-description {
    font-size: 1em;
    color: #666;
}

.page-index-latest-promotions-overview__step-description a {
    color: var(--page-primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-index-latest-promotions-overview__step-description a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions-overview__download-app-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #e6f0ff; /* Light blue background */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions-overview__download-app-cta p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: var(--page-primary-color);
    font-weight: 500;
}

/* FAQ Section */
.page-index-latest-promotions-overview__faq-section {
    padding: 80px 0;
    background-color: var(--page-background-dark);
    color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__faq-section .page-index-latest-promotions-overview__section-title {
    color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__faq-section .page-index-latest-promotions-overview__section-title .highlight {
    color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__faq-section .page-index-latest-promotions-overview__section-title::after {
    background-color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-latest-promotions-overview__faq-item {
    background-color: #003e99;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__faq-question {
    font-size: 1.3em;
    color: var(--page-accent-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-latest-promotions-overview__faq-question i {
    transition: transform var(--page-transition-speed);
}

.page-index-latest-promotions-overview__faq-question.active i {
    transform: rotate(180deg);
}

.page-index-latest-promotions-overview__faq-answer {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
    display: none;
}

.page-index-latest-promotions-overview__faq-answer.active {
    display: block;
}

/* Call to Action Section */
.page-index-latest-promotions-overview__cta-section {
    background: linear-gradient(45deg, var(--page-accent-color) 0%, #ffc107 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--page-primary-color);
}

.page-index-latest-promotions-overview__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--page-primary-color);
}

.page-index-latest-promotions-overview__cta-title .highlight {
    color: #002266; /* Darker blue for contrast on gold */
}

.page-index-latest-promotions-overview__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #002266;
}

.page-index-latest-promotions-overview__cta-section .page-index-latest-promotions-overview__btn--primary {
    background-color: var(--page-primary-color);
    color: var(--page-accent-color);
    border-color: var(--page-primary-color);
}

.page-index-latest-promotions-overview__cta-section .page-index-latest-promotions-overview__btn--primary:hover {
    background-color: #002a6b;
    border-color: #002a6b;
}

/* Related Content Section */
.page-index-latest-promotions-overview__related-content-section {
    padding: 80px 0;
    background-color: var(--page-background-light);
}

.page-index-latest-promotions-overview__related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-latest-promotions-overview__article-card {
    background-color: var(--page-text-color-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--page-transition-speed);
    display: flex;
    flex-direction: column;
}

.page-index-latest-promotions-overview__article-card:hover {
    transform: translateY(-8px);
}

.page-index-latest-promotions-overview__article-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.page-index-latest-promotions-overview__article-title {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin: 20px 20px 10px 20px;
    flex-grow: 1;
}

.page-index-latest-promotions-overview__article-title a {
    text-decoration: none;
    color: inherit;
}

.page-index-latest-promotions-overview__article-title a:hover {
    color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__article-excerpt {
    font-size: 0.95em;
    color: #666;
    padding: 0 20px;
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview__read-more {
    display: inline-block;
    color: var(--page-primary-color);
    font-weight: bold;
    text-decoration: none;
    padding: 0 20px 20px 20px;
    transition: color var(--page-transition-speed);
}

.page-index-latest-promotions-overview__read-more:hover {
    color: var(--page-accent-color);
}

.page-index-latest-promotions-overview__read-more i {
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-latest-promotions-overview__hero-title {
        font-size: 3em;
    }
    .page-index-latest-promotions-overview__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-overview__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-overview__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-overview__hero-section {
        padding: 80px 0;
    }
    .page-index-latest-promotions-overview__hero-title {
        font-size: 2.5em;
    }
    .page-index-latest-promotions-overview__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-overview__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-latest-promotions-overview__btn {
        padding: 12px 25px;
        font-size: 1em;
        width: 80%;
        margin: 0 auto;
    }
    .page-index-latest-promotions-overview__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-latest-promotions-overview__section-description {
        margin-bottom: 40px;
    }
    .page-index-latest-promotions-overview__intro-content p {
        font-size: 1em;
    }
    .page-index-latest-promotions-overview__promo-grid,
    .page-index-latest-promotions-overview__steps-grid,
    .page-index-latest-promotions-overview__related-articles-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions-overview__promo-card-title {
        font-size: 1.6em;
    }
    .page-index-latest-promotions-overview__cta-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-overview__cta-description {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-overview__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-overview__hero-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-overview__hero-subtitle {
        font-size: 0.95em;
    }
    .page-index-latest-promotions-overview__btn {
        width: 90%;
    }
    .page-index-latest-promotions-overview__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-overview__promo-card-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions-overview__step-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-overview__cta-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-overview__article-title {
        font-size: 1.2em;
    }
    .page-index-latest-promotions-overview__faq-question {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-overview__container {
        padding: 0 15px;
    }
}