/* style/index-latest-promotions-overview.css */
.page-index-latest-promotions-overview {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background for readability */
    line-height: 1.6;
    background-color: #0A2463;
}

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

.page-index-latest-promotions-overview-text-center {
    text-align: center;
}

/* Hero Section */
.page-index-latest-promotions-overview-hero {
    background: linear-gradient(135deg, #0A2463 0%, #203A70 100%); /* Darker blue to slightly lighter blue */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-index-latest-promotions-overview-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-index-latest-promotions-overview-hero-title {
    font-size: 3.5em;
    color: #E3B505; /* Golden for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions-overview-hero-subtitle {
    font-size: 1.3em;
    color: #F8F8F8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions-overview-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-latest-promotions-overview-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.page-index-latest-promotions-overview-btn-primary {
    background-color: #E3B505; /* Golden */
    color: #0A2463; /* Tech Blue */
    border: 2px solid #E3B505;
}

.page-index-latest-promotions-overview-btn-primary:hover {
    background-color: #F0C43D;
    transform: translateY(-3px);
}

.page-index-latest-promotions-overview-btn-secondary {
    background-color: transparent;
    color: #E3B505; /* Golden */
    border: 2px solid #E3B505;
}

.page-index-latest-promotions-overview-btn-secondary:hover {
    background-color: rgba(227, 181, 5, 0.1);
    transform: translateY(-3px);
}

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

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

.page-index-latest-promotions-overview-btn-huge {
    padding: 20px 40px;
    font-size: 1.4em;
    margin-top: 30px;
}

.page-index-latest-promotions-overview-hero-image {
    position: absolute;
    bottom: -50px;
    right: -100px;
    opacity: 0.3;
    width: 400px;
    height: auto;
    z-index: 0;
    animation: floatImage 6s ease-in-out infinite;
}

.page-index-latest-promotions-overview-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sections */
.page-index-latest-promotions-overview-section {
    padding: 60px 0;
}

.page-index-latest-promotions-overview-section-title {
    font-size: 2.5em;
    color: #E3B505; /* Golden */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-index-latest-promotions-overview-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E3B505;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-index-latest-promotions-overview-section-description {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-latest-promotions-overview-intro-text p {
    font-size: 1.1em;
    color: #F8F8F8;
    margin-bottom: 15px;
    text-align: justify;
}

.page-index-latest-promotions-overview-intro-text p strong {
    color: #E3B505;
}

/* Promotions Grid */
.page-index-latest-promotions-overview-promotions-grid {
    background-color: #123477; /* Slightly lighter blue for contrast */
}

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

.page-index-latest-promotions-overview-card {
    background-color: #0A2463;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-index-latest-promotions-overview-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-index-latest-promotions-overview-card-title {
    font-size: 1.6em;
    color: #E3B505;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-index-latest-promotions-overview-card-text {
    color: #F8F8F8;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
    padding: 0 15px;
}

/* How to Claim Section */
.page-index-latest-promotions-overview-how-to-claim {
    background-color: #0A2463;
}

.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-card {
    background-color: #123477;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-overview-step-card:hover {
    transform: translateY(-5px);
}

.page-index-latest-promotions-overview-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #E3B505;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index-latest-promotions-overview-icon-image {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

.page-index-latest-promotions-overview-step-title {
    font-size: 1.5em;
    color: #E3B505;
    margin-bottom: 10px;
}

.page-index-latest-promotions-overview-step-card p {
    color: #F8F8F8;
    font-size: 1em;
}

.page-index-latest-promotions-overview-cta-bottom {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Benefits Section */
.page-index-latest-promotions-overview-benefits {
    background-color: #123477;
}

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

.page-index-latest-promotions-overview-benefit-item {
    background-color: #0A2463;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-overview-benefit-item:hover {
    transform: translateY(-5px);
}

.page-index-latest-promotions-overview-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    filter: invert(1) drop-shadow(0 0 5px #E3B505);
}

.page-index-latest-promotions-overview-benefit-title {
    font-size: 1.5em;
    color: #E3B505;
    margin-bottom: 10px;
}

.page-index-latest-promotions-overview-benefit-item p {
    color: #F8F8F8;
    font-size: 1em;
}

/* FAQ Section */
.page-index-latest-promotions-overview-faq {
    background-color: #0A2463;
}

.page-index-latest-promotions-overview-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-index-latest-promotions-overview-accordion-item {
    background-color: #123477;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-overview-accordion-header {
    width: 100%;
    background-color: #E3B505;
    color: #0A2463; /* Tech Blue for text on Golden background */
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-latest-promotions-overview-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-overview-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-latest-promotions-overview-accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #0A2463;
    color: #F8F8F8;
}

.page-index-latest-promotions-overview-accordion-content p {
    padding: 15px 0;
    margin: 0;
}

.page-index-latest-promotions-overview-accordion-content.open {
    max-height: 300px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-index-latest-promotions-overview-accordion-content a {
    margin-top: 10px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Final CTA Section */
.page-index-latest-promotions-overview-cta-final {
    background: linear-gradient(135deg, #203A70 0%, #0A2463 100%);
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions-overview-hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions-overview-section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-overview-grid,
    .page-index-latest-promotions-overview-steps,
    .page-index-latest-promotions-overview-benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-overview-hero {
        padding: 60px 0;
    }
    .page-index-latest-promotions-overview-hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-overview-hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-overview-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-latest-promotions-overview-btn-large,
    .page-index-latest-promotions-overview-btn-huge {
        width: 80%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .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-card-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions-overview-hero-image {
        display: none;
    }
    .page-index-latest-promotions-overview-cta-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-overview-hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-overview-hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions-overview-btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-index-latest-promotions-overview-section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-overview-card-title {
        font-size: 1.2em;
    }
    .page-index-latest-promotions-overview-accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}

/* Keyframe Animations */
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}