
/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 10s ease;
    z-index: 1;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
    color: #fff;
    max-width: 800px;
}

.slide-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-description,
.swiper-slide-active .btn-discover {
    opacity: 1;
    transform: translateY(0);
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.8s;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.btn-discover:hover .btn-icon {
    background: var(--primary-indigo);
    border-color: var(--primary-indigo);
    transform: scale(1.1);
}

/* Thumbnails */
.slider-thumbnails {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 60%;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
}

.thumbnail-slider {
    width: 100%;
    padding: 20px 0;
}

.thumbnail-slider .swiper-slide {
    width: 200px !important;
    height: 280px !important;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.thumbnail-slider .swiper-slide-active {
    transform: scale(0.8);
    opacity: 0;
    margin-left: -100px;
}

.thumb-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.thumbnail-slider .swiper-slide:hover .thumb-img {
    transform: scale(1.1);
}

.thumb-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 5;
}

.thumb-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    opacity: 0.8;
}

.thumb-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 40px;
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.arrow-prev, .arrow-next {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.arrow-prev:hover, .arrow-next:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.slider-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.pagination-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.3s linear;
}

.slider-counter {
    font-size: 2rem;
    font-weight: 900;
    font-family: serif;
}

@media (max-width: 992px) {
    .slider-thumbnails {
        display: none;
    }
    .slide-content {
        max-width: 100%;
        padding: 0 20px;
    }
    .slide-title {
        font-size: 3.5rem;
    }
}
