.hero-slider-section {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.swiper-slide {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .swiper-slide { height: 300px; }
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 50px;
    max-width: 600px;
    color: #ffffff;
}

.slide-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--theme-primary, #3182ce);
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
}

.slide-btn:hover {
    transform: translateY(-2px);
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 45px; height: 45px;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--theme-primary, #3182ce) !important;
    width: 24px;
    border-radius: 8px;
}