/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

.page-index-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-latest-promotions__hero-section {
    background: linear-gradient(135deg, #B22222 0%, #FFD700 100%); /* Primary to secondary gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF; /* White text for hero */
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for text readability */
    z-index: 1;
}

.page-index-latest-promotions__hero-section > * {
    position: relative;
    z-index: 2;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-latest-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #B22222; /* Firebrick */
    font-size: 1.1em;
}

.page-index-latest-promotions__btn--primary:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__btn--secondary {
    background-color: #B22222; /* Firebrick */
    color: #FFD700; /* Gold */
    padding: 10px 20px;
    font-size: 0.9em;
    border: 1px solid #FFD700;
}

.page-index-latest-promotions__btn--secondary:hover {
    background-color: #991e1e; /* Darker Firebrick */
    border-color: #e6c200;
    transform: translateY(-1px);
}

.page-index-latest-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.8em;
    background-color: #FFD700;
    color: #B22222;
    border: none;
}

.page-index-latest-promotions__btn--small:hover {
    background-color: #e6c200;
}

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700; /* Gold for section titles */
    font-weight: bold;
}

.page-index-latest-promotions__section-title .highlight {
    color: #B22222;
}

.page-index-latest-promotions__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #CCCCCC;
}

.page-index-latest-promotions__promotions-overview,
.page-index-latest-promotions__featured-promotions,
.page-index-latest-promotions__how-to-claim,
.page-index-latest-promotions__terms-conditions,
.page-index-latest-promotions__why-choose-us,
.page-index-latest-promotions__faq-section,
.page-index-latest-promotions__final-cta {
    padding: 60px 0;
    background-color: #2a2a2a;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-index-latest-promotions__promotions-overview {
    background-color: #1f1f1f;
}

.page-index-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-index-latest-promotions__promo-card {
    background-color: #333333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__promo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-latest-promotions__promo-card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

.page-index-latest-promotions__promo-card-desc {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 25px;
}

.page-index-latest-promotions__featured-promotions {
    background-color: #222222;
}

.page-index-latest-promotions__promo-detail-card {
    display: flex;
    align-items: center;
    background-color: #333333;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-index-latest-promotions__promo-detail-card--reversed {
    flex-direction: row-reverse;
}

.page-index-latest-promotions__promo-detail-img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.page-index-latest-promotions__promo-detail-content {
    padding: 40px;
    width: 60%;
}

.page-index-latest-promotions__promo-detail-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-latest-promotions__promo-detail-text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-index-latest-promotions__promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-latest-promotions__promo-features li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #CCCCCC;
}

.page-index-latest-promotions__promo-features li i {
    color: #B22222; /* Firebrick */
    margin-right: 10px;
}

.page-index-latest-promotions__how-to-claim {
    background-color: #1f1f1f;
}

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

.page-index-latest-promotions__steps li {
    background-color: #333333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__step-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-index-latest-promotions__step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #B22222; /* Firebrick */
    color: #FFFFFF;
    font-size: 2.5em;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(178, 34, 34, 0.5);
}

.page-index-latest-promotions__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-promotions__step-desc {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-index-latest-promotions__terms-conditions {
    background-color: #222222;
}

.page-index-latest-promotions__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-index-latest-promotions__list li {
    background-color: #333333;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions__list li i {
    color: #FFD700; /* Gold */
    margin-right: 15px;
    font-size: 1.3em;
    flex-shrink: 0;
}

.page-index-latest-promotions__list li strong {
    color: #B22222; /* Firebrick */
}

.page-index-latest-promotions__why-choose-us {
    background-color: #1f1f1f;
}

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

.page-index-latest-promotions__benefit-item {
    background-color: #333333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(178, 34, 34, 0.7));
}

.page-index-latest-promotions__benefit-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-promotions__benefit-desc {
    font-size: 1em;
    color: #CCCCCC;
}

.page-index-latest-promotions__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #444;
}

.page-index-latest-promotions__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-index-latest-promotions__faq-section {
    background-color: #222222;
}

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

.page-index-latest-promotions__faq-item {
    background-color: #333333;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.page-index-latest-promotions__faq-question::after {
    content: '\25BC'; /* Down arrow */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.page-index-latest-promotions__faq-question.active::after {
    content: '\25B2'; /* Up arrow */
}

.page-index-latest-promotions__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
    display: none; /* Hidden by default */
    padding-top: 10px;
    border-top: 1px solid #444;
    margin-top: 10px;
}

.page-index-latest-promotions__faq-question.active + .page-index-latest-promotions__faq-answer {
    display: block;
}

.page-index-latest-promotions__final-cta {
    background-color: #B22222;
    text-align: center;
    padding: 80px 0;
    color: #FFFFFF;
    border-radius: 10px;
}

.page-index-latest-promotions__final-cta .page-index-latest-promotions__section-title {
    color: #FFD700;
}

.page-index-latest-promotions__final-cta .page-index-latest-promotions__description {
    color: #FFFFFF;
}

.page-index-latest-promotions__btn--hero {
    background-color: #FFD700;
    color: #B22222;
    font-size: 1.5em;
    padding: 20px 40px;
    border-radius: 8px;
}

.page-index-latest-promotions__btn--hero:hover {
    background-color: #e6c200;
}

.page-index-latest-promotions .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions__promo-detail-card {
        flex-direction: column;
    }
    .page-index-latest-promotions__promo-detail-card--reversed {
        flex-direction: column;
    }
    .page-index-latest-promotions__promo-detail-img,
    .page-index-latest-promotions__promo-detail-content {
        width: 100%;
    }
    .page-index-latest-promotions__promo-detail-content {
        padding: 30px;
    }
    .page-index-latest-promotions__promo-detail-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__btn--hero {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-index-latest-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions__promo-detail-content {
        padding: 20px;
    }
    .page-index-latest-promotions__promo-detail-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__list li,
    .page-index-latest-promotions__faq-item {
        padding: 15px 20px;
    }
    .page-index-latest-promotions__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__hero-section {
        padding: 60px 0;
    }
    .page-index-latest-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-latest-promotions__btn--primary {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__description {
        font-size: 0.9em;
    }
    .page-index-latest-promotions__promo-card-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions__promo-detail-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions__step-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__faq-question {
        font-size: 1em;
    }
}