.index-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 650px;
    overflow: hidden;
    background: #000;
}

.index-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.index-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 1.5s ease;
    z-index: 1;
}

.index-slide.index-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.index-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.index-slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #fff;
    z-index: 3;
}

.index-slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: index-slideUp 1s ease forwards 0.3s;
}

.index-slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: index-slideUp 1s ease forwards 0.6s;
}

.index-slide-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: index-slideUp 1s ease forwards 0.9s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.index-slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

@keyframes index-slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.index-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.index-nav-prev,
.index-nav-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-nav-prev:hover,
.index-nav-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.index-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.index-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.index-dot.index-active {
    width: 40px;
    border-radius: 6px;
    background: #fff;
}

.index-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .index-slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    
    .index-slide-title {
        font-size: 2rem;
    }
    
    .index-slide-description {
        font-size: 1rem;
    }
    
    .index-slider-nav {
        padding: 0 15px;
    }
    
    .index-nav-prev,
    .index-nav-next {
        width: 40px;
        height: 40px;
    }
}