.elyte-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.elyte-hero-slider .swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    height: 500px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 60px;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-slide-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.hero-slide-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.hero-slide-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF6B6B;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-slide-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.6);
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}

.swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #FFFFFF;
    width: 30px;
    border-radius: 6px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .elyte-hero-slider .swiper {
        height: 400px;
    }

    .swiper-slide {
        height: 400px;
    }

    .hero-slide {
        padding: 30px 30px;
    }

    .hero-slide-title {
        font-size: 32px;
        margin: 0 0 20px 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-button-prev {
        left: 15px;
    }

    .swiper-button-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .elyte-hero-slider .swiper {
        height: 300px;
    }

    .swiper-slide {
        height: 300px;
    }

    .hero-slide {
        padding: 20px 20px;
    }

    .hero-slide-title {
        font-size: 24px;
        margin: 0 0 15px 0;
    }

    .hero-slide-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}
