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

/* Biến CSS */
:root {
    --page-index-latest-promotions-primary-color: #1A2E40;
    --page-index-latest-promotions-secondary-color: #FFD700;
    --page-index-latest-promotions-text-light: #F8F8F8;
    --page-index-latest-promotions-text-dark: #1A2E40;
    --page-index-latest-promotions-bg-light: #F0F2F5;
    --page-index-latest-promotions-bg-dark: #1A2E40;
    --page-index-latest-promotions-accent-gold: #FFD700;
    --page-index-latest-promotions-shadow: rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-index-latest-promotions-text-dark);
    background-color: var(--page-index-latest-promotions-bg-light);
}

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

.page-index-latest-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-latest-promotions__section:nth-of-type(even) {
    background-color: var(--page-index-latest-promotions-bg-dark);
    color: var(--page-index-latest-promotions-text-light);
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__section-title,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__section-description,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__feature-title,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__feature-description,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-item-title,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-item-description,
.page-index-latest-promotions__section:nth-of-promotions:nth-of-type(even) .page-index-latest-promotions__step-title,
.page-index-latest-promotions__section:nth-of-promotions:nth-of-type(even) .page-index-latest-promotions__step-description,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-card-title,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-card-description,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__faq-question,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__faq-answer,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__terms-list li,
.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__terms-list li strong {
    color: var(--page-index-latest-promotions-text-light);
}

.page-index-latest-promotions__hero-section {
    background: linear-gradient(135deg, var(--page-index-latest-promotions-primary-color) 0%, #3a506b 100%);
    color: var(--page-index-latest-promotions-text-light);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-index-latest-promotions-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.page-index-latest-promotions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--page-index-latest-promotions-shadow);
    margin-bottom: 40px;
}

.page-index-latest-promotions__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-index-latest-promotions__btn--primary {
    background-color: var(--page-index-latest-promotions-secondary-color);
    color: var(--page-index-latest-promotions-primary-color);
}

.page-index-latest-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-promotions__btn--secondary {
    background-color: transparent;
    color: var(--page-index-latest-promotions-secondary-color);
    border: 2px solid var(--page-index-latest-promotions-secondary-color);
}

.page-index-latest-promotions__btn--secondary:hover {
    background-color: var(--page-index-latest-promotions-secondary-color);
    color: var(--page-index-latest-promotions-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

.page-index-latest-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: var(--page-index-latest-promotions-primary-color);
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__section-title {
    color: var(--page-index-latest-promotions-secondary-color);
}

.page-index-latest-promotions__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__section-description {
    color: var(--page-index-latest-promotions-text-light);
    opacity: 0.8;
}

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

.page-index-latest-promotions__feature-card {
    background-color: var(--page-index-latest-promotions-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--page-index-latest-promotions-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__feature-card {
    background-color: #2b445c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

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

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__feature-title {
    color: var(--page-index-latest-promotions-secondary-color);
}

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

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__feature-description {
    color: var(--page-index-latest-promotions-text-light);
    opacity: 0.7;
}

.page-index-latest-promotions__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    text-align: left;
}

.page-index-latest-promotions__promo-item {
    background-color: var(--page-index-latest-promotions-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--page-index-latest-promotions-shadow);
    border-left: 5px solid var(--page-index-latest-promotions-secondary-color);
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-item {
    background-color: #2b445c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-item-title {
    color: var(--page-index-latest-promotions-secondary-color);
}

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

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-item-description {
    color: var(--page-index-latest-promotions-text-light);
    opacity: 0.7;
}

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

.page-index-latest-promotions__step-card {
    background-color: var(--page-index-latest-promotions-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--page-index-latest-promotions-shadow);
    text-align: left;
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__step-card {
    background-color: #2b445c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--page-index-latest-promotions-secondary-color);
    color: var(--page-index-latest-promotions-primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__step-title {
    color: var(--page-index-latest-promotions-secondary-color);
}

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

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__step-description {
    color: var(--page-index-latest-promotions-text-light);
    opacity: 0.7;
}

.page-index-latest-promotions__illustration {
    max-width: 80%;
    height: auto;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 25px var(--page-index-latest-promotions-shadow);
}

.page-index-latest-promotions__illustration--faq {
    margin-top: 40px;
}

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

.page-index-latest-promotions__promo-card {
    background-color: var(--page-index-latest-promotions-text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--page-index-latest-promotions-shadow);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-card {
    background-color: #2b445c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-latest-promotions__promo-card-title {
    font-size: 1.6em;
    color: var(--page-index-latest-promotions-primary-color);
    margin-bottom: 10px;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-card-title {
    color: var(--page-index-latest-promotions-secondary-color);
}

.page-index-latest-promotions__promo-card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__promo-card-description {
    color: var(--page-index-latest-promotions-text-light);
    opacity: 0.7;
}

.page-index-latest-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions__terms-list li {
    background-color: var(--page-index-latest-promotions-text-light);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 15px var(--page-index-latest-promotions-shadow);
    line-height: 1.8;
    color: #444;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__terms-list li {
    background-color: #2b445c;
    color: var(--page-index-latest-promotions-text-light);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__terms-list li strong {
    color: var(--page-index-latest-promotions-primary-color);
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__terms-list li strong {
    color: var(--page-index-latest-promotions-secondary-color);
}

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

.page-index-latest-promotions__faq-item {
    background-color: var(--page-index-latest-promotions-text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--page-index-latest-promotions-shadow);
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__faq-item {
    background-color: #2b445c;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__faq-question {
    font-size: 1.4em;
    color: var(--page-index-latest-promotions-primary-color);
    margin-bottom: 10px;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__faq-question {
    color: var(--page-index-latest-promotions-secondary-color);
}

.page-index-latest-promotions__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-index-latest-promotions__section:nth-of-type(even) .page-index-latest-promotions__faq-answer {
    color: var(--page-index-latest-promotions-text-light);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions__promo-list,
    .page-index-latest-promotions__steps-grid,
    .page-index-latest-promotions__promo-card-grid,
    .page-index-latest-promotions__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions__illustration {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions__section {
        padding: 40px 0;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-latest-promotions__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.6em;
    }
    .page-index-latest-promotions__btn {
        width: 100%;
        text-align: center;
    }
    .page-index-latest-promotions__cta-group {
        flex-direction: column;
    }
    .page-index-latest-promotions__feature-card,
    .page-index-latest-promotions__promo-item,
    .page-index-latest-promotions__step-card,
    .page-index-latest-promotions__promo-card,
    .page-index-latest-promotions__faq-item {
        padding: 20px;
    }
    .page-index-latest-promotions__step-card {
        padding-top: 60px;
    }
    .page-index-latest-promotions__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}