.marquee-tracker-container {
    background-color: #e6e6e6;
    color: #ff1515;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.marquee-tracker-container .marquee-content-box {
    display: flex;
    width: max-content;
}

.marquee-tracker-container .marquee-text-flow {
    display: inline-block;
    white-space: nowrap;
    padding-left: 20px;
    will-change: transform;
    animation: professionalMarquee 35s linear infinite;
}

.marquee-tracker-container .marquee-tracker-container:hover .marquee-text-flow {
    animation-play-state: paused;
}

.swiper.hilux-thailand-hero-slider {
    width: 100%;
    height: 450px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hilux-thailand-hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hilux-thailand-hero-slider .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hilux-thailand-hero-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.hilux-thailand-hero-slider .slide-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: white;
}

.hilux-thailand-hero-slider .slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hilux-thailand-hero-slider .slide-badge.highlight {
    background: var(--primary);
    border-color: var(--primary);
}

.hilux-thailand-hero-slider .slide-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 20px;
}

.hilux-thailand-hero-slider .slide-title strong {
    font-weight: 800;
    color: #ffffff;
}

.hilux-thailand-hero-slider .slide-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 35px;
}

.hilux-thailand-hero-slider .slide-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.hilux-thailand-hero-slider .slide-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

.hilux-thailand-hero-slider .swiper-button-prev,
.hilux-thailand-hero-slider .swiper-button-next {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hilux-thailand-hero-slider .swiper-button-prev:after,
.hilux-thailand-hero-slider .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.hilux-thailand-hero-slider .swiper-button-prev:hover,
.hilux-thailand-hero-slider .swiper-button-next:hover {
    background: var(--primary);
    color: white;
}

.hilux-thailand-hero-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
}

.hilux-thailand-hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
    transition: var(--transition-smooth);
}

.hilux-thailand-hero-slider .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 999px) {
    .swiper.hilux-thailand-hero-slider {
        height: 500px;
    }

    .swiper.hilux-thailand-hero-slider .swiper-slide {
        padding: 0 40px;
    }

    .hilux-thailand-hero-slider .slide-title {
        font-size: 32px;
    }

    .hilux-thailand-hero-slider .swiper-button-prev,
    .hilux-thailand-hero-slider .swiper-button-next {
        display: none;
    }
}

.hilux-thailand-hero-slider .swiper-slide-active .slide-badge {
    animation: fadeInUp 0.6s ease forwards 0.2s;
    opacity: 0;
}

.hilux-thailand-hero-slider .swiper-slide-active .slide-title {
    animation: fadeInUp 0.6s ease forwards 0.4s;
    opacity: 0;
}

.hilux-thailand-hero-slider .swiper-slide-active .slide-desc {
    animation: fadeInUp 0.6s ease forwards 0.6s;
    opacity: 0;
}

.hilux-thailand-hero-slider .swiper-slide-active .slide-btn {
    animation: fadeInUp 0.6s ease forwards 0.8s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes professionalMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}