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

/* General Styles for the page */
.page-index-latest-promotions-overview {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-index-latest-promotions-overview__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions-overview__section:nth-child(even) {
    background-color: #f2f4f6;
}

.page-index-latest-promotions-overview__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-latest-promotions-overview__main-title {
    font-size: 3.5em;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-overview__subtitle {
    font-size: 1.2em;
    color: #eee;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-index-latest-promotions-overview__btn--primary {
    background-color: #FFD700;
    color: #0056b3; /* Darker blue for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-promotions-overview__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-latest-promotions-overview__btn--secondary {
    background-color: #007BFF;
    color: #fff;
    border: 2px solid #007BFF;
}

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

/* Hero Section */
.page-index-latest-promotions-overview__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for depth */
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
    margin-bottom: 30px;
}

.page-index-latest-promotions-overview__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-index-latest-promotions-overview__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

/* Why Choose Section */
.page-index-latest-promotions-overview__why-choose {
    text-align: center;
}

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

.page-index-latest-promotions-overview__feature-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions-overview__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions-overview__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-index-latest-promotions-overview__feature-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview__feature-item p {
    color: #555;
    font-size: 0.95em;
}

/* Promotion Types Section */
.page-index-latest-promotions-overview__promo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-latest-promotions-overview__promo-card {
    background-color: #fefefe;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-index-latest-promotions-overview__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions-overview__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-index-latest-promotions-overview__promo-card-title {
    font-size: 1.6em;
    color: #007BFF;
    padding: 20px 25px 10px;
    margin: 0;
}

.page-index-latest-promotions-overview__promo-card p {
    color: #555;
    padding: 0 25px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-index-latest-promotions-overview__promo-card ul {
    list-style: none;
    padding: 0 25px 15px;
    margin: 0;
}

.page-index-latest-promotions-overview__promo-card ul li {
    margin-bottom: 8px;
    color: #444;
    position: relative;
    padding-left: 20px;
}

.page-index-latest-promotions-overview__promo-card ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-index-latest-promotions-overview__promo-card .page-index-latest-promotions-overview__btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
}

/* Guide Section */
.page-index-latest-promotions-overview__guide {
    text-align: center;
}

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

.page-index-latest-promotions-overview__step-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page-index-latest-promotions-overview__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-index-latest-promotions-overview__step-title {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview__step-item p {
    color: #555;
    font-size: 0.95em;
}

.page-index-latest-promotions-overview__step-item a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-index-latest-promotions-overview__step-item a:hover {
    text-decoration: underline;
    color: #FFD700;
}

/* Terms & Conditions Section */
.page-index-latest-promotions-overview__terms {
    text-align: left;
}

.page-index-latest-promotions-overview__image--full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions-overview__terms p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 25px;
}

.page-index-latest-promotions-overview__terms ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-latest-promotions-overview__terms ul li {
    background-color: #eaf6ff; /* Lighter blue background */
    border-left: 5px solid #007BFF;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #333;
    font-size: 1em;
}

.page-index-latest-promotions-overview__terms ul li strong {
    color: #0056b3;
}

/* Download App Section */
.page-index-latest-promotions-overview__download-app {
    background-color: #007BFF; /* Main brand color */
    color: #fff;
    padding: 80px 0;
    border-radius: 15px;
    margin-top: 30px;
}

.page-index-latest-promotions-overview__download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-index-latest-promotions-overview__download-app .page-index-latest-promotions-overview__section-title {
    color: #FFD700;
    text-align: left;
    font-size: 2.2em;
}

.page-index-latest-promotions-overview__download-app .page-index-latest-promotions-overview__section-title::after {
    left: 0;
    transform: none;
}

.page-index-latest-promotions-overview__download-app p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0f2ff;
}

.page-index-latest-promotions-overview__app-image {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__text-content {
    flex: 1;
}

/* Conclusion Section */
.page-index-latest-promotions-overview__conclusion {
    text-align: center;
}

.page-index-latest-promotions-overview__conclusion p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions-overview__main-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions-overview__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-overview__promo-card-grid,
    .page-index-latest-promotions-overview__feature-grid,
    .page-index-latest-promotions-overview__steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-latest-promotions-overview__download-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-index-latest-promotions-overview__download-app .page-index-latest-promotions-overview__section-title {
        text-align: center;
    }
    .page-index-latest-promotions-overview__download-app .page-index-latest-promotions-overview__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-overview__hero-section {
        padding: 80px 0;
    }
    .page-index-latest-promotions-overview__main-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-overview__subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions-overview__section {
        padding: 40px 0;
    }
    .page-index-latest-promotions-overview__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-overview__feature-item,
    .page-index-latest-promotions-overview__promo-card,
    .page-index-latest-promotions-overview__step-item {
        padding: 25px;
    }
    .page-index-latest-promotions-overview__promo-card-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions-overview__app-image {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-overview__hero-section {
        padding: 60px 0;
    }
    .page-index-latest-promotions-overview__main-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-overview__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-overview__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index-latest-promotions-overview__promo-card-grid,
    .page-index-latest-promotions-overview__feature-grid,
    .page-index-latest-promotions-overview__steps {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions-overview__promo-card .page-index-latest-promotions-overview__btn {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
    }
}