/* style/index-top-promotions.css */
.page-index-top-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-index-top-promotions__container--center {
    text-align: center;
}

.page-index-top-promotions__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-index-top-promotions__section--intro {
    background-color: #ffffff;
}

.page-index-top-promotions__section--promos {
    background-color: #e3f2fd; /* Light blue background for promo cards section */
}

.page-index-top-promotions__section--how-to-claim {
    background-color: #ffffff;
}

.page-index-top-promotions__section--terms {
    background-color: #f1f8e9; /* Light green for terms section */
}

.page-index-top-promotions__section--why-kubet {
    background-color: #ffffff;
}

.page-index-top-promotions__section--faq {
    background-color: #fff3e0; /* Light orange for FAQ section */
}

.page-index-top-promotions__section--cta {
    background-color: #1A237E; /* Main brand color */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-index-top-promotions__heading {
    font-size: 2.5em;
    color: #1A237E; /* Main brand color for headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-top-promotions__section--cta .page-index-top-promotions__heading {
    color: #FFB300; /* Auxiliary color for CTA section heading */
}

.page-index-top-promotions__text {
    font-size: 1.1em;
    color: #424242; /* Darker text for readability */
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-top-promotions__section--cta .page-index-top-promotions__text {
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Hero Section */
.page-index-top-promotions__hero {
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 50%, #FFB300 100%);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-index-top-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-index-top-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFB300; /* Auxiliary color for hero title */
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-index-top-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Lighter text for subtitle */
    font-weight: 300;
}

.page-index-top-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-top-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
}

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

.page-index-top-promotions__btn--primary {
    background-color: #FFB300; /* Auxiliary color */
    color: #1A237E; /* Main brand color for text */
}

.page-index-top-promotions__btn--primary:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-index-top-promotions__btn--secondary {
    background-color: #1A237E; /* Main brand color */
    color: #FFB300; /* Auxiliary color for text */
    border: 1px solid #FFB300;
}

.page-index-top-promotions__btn--secondary:hover {
    background-color: #303F9F;
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-index-top-promotions__btn--tertiary {
    background-color: #ffffff;
    color: #1A237E;
    border: 1px solid #1A237E;
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-top-promotions__btn--tertiary:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
}

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

/* Promo Grid */
.page-index-top-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-top-promotions__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-top-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.page-index-top-promotions__card-title {
    font-size: 1.6em;
    color: #1A237E; /* Main brand color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-top-promotions__card-text {
    color: #555;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

/* Steps List */
.page-index-top-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-index-top-promotions__steps-list li {
    background-color: #f5f5f5;
    border-left: 5px solid #FFB300; /* Auxiliary color accent */
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-index-top-promotions__step-title {
    font-size: 1.4em;
    color: #1A237E; /* Main brand color */
    margin-bottom: 10px;
}

.page-index-top-promotions__step-text {
    color: #666;
    font-size: 1em;
    margin-bottom: 15px;
}

/* General List */
.page-index-top-promotions__list {
    list-style: disc inside;
    color: #424242;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-index-top-promotions__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-index-top-promotions__list li strong {
    color: #1A237E;
}

/* Why Choose Kubet */
.page-index-top-promotions__why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-top-promotions__why-item {
    text-align: center;
    padding: 30px;
    background-color: #fcfcfc;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.page-index-top-promotions__why-item:hover {
    transform: translateY(-5px);
}

.page-index-top-promotions__why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.page-index-top-promotions__why-title {
    font-size: 1.5em;
    color: #1A237E; /* Main brand color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-top-promotions__why-text {
    color: #555;
    font-size: 1em;
}

/* FAQ Section */
.page-index-top-promotions__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.page-index-top-promotions__faq-question {
    font-size: 1.25em;
    color: #1A237E; /* Main brand color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-top-promotions__faq-answer {
    color: #555;
    font-size: 1em;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-top-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-index-top-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-top-promotions__heading {
        font-size: 2em;
    }
    .page-index-top-promotions__promo-grid,
    .page-index-top-promotions__why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-top-promotions__hero {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-index-top-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-index-top-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-top-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-top-promotions__section {
        padding: 40px 0;
    }
    .page-index-top-promotions__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-top-promotions__promo-card {
        padding: 25px;
    }
    .page-index-top-promotions__card-title {
        font-size: 1.4em;
    }
    .page-index-top-promotions__steps-list li {
        padding: 20px;
    }
    .page-index-top-promotions__step-title {
        font-size: 1.2em;
    }
    .page-index-top-promotions__why-icon {
        width: 60px;
        height: 60px;
    }
    .page-index-top-promotions__why-title {
        font-size: 1.3em;
    }
    .page-index-top-promotions__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-top-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-index-top-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-index-top-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-top-promotions__heading {
        font-size: 1.5em;
    }
    .page-index-top-promotions__promo-grid,
    .page-index-top-promotions__why-grid {
        grid-template-columns: 1fr;
    }
    .page-index-top-promotions__promo-card,
    .page-index-top-promotions__why-item {
        padding: 20px;
    }
    .page-index-top-promotions__faq-item {
        padding: 15px 20px;
    }
}