.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 700px;
    overflow: hidden;
    font-family: "Monserrat", Sans-serif !important;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateY(-100%);
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8);
}

.hero-slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 80px;
    gap: 40px;
}

.hero-slide-title {
    font-size: 55px;
    font-weight: 300;
    line-height: 72px;
    color: #FFFFFF;
    text-transform: uppercase;
    max-width: 1200px;
    margin: 0;
}

.hero-navigation-dots {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    opacity: 0.9;
}

.hero-dot.active {
    background: #D9D9D940;
    width: 16px;
    height: 16px;
    border: 1px solid #FFFFFF;
}

.hero-scroll-down {
    position: relative;
    width: 80px;
    height: 80px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-down:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-down img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


@media (max-width: 1024px) {
    .hero-slide-title {
        font-size: 42px;
    }
    
    .hero-slide-content {
        gap: 35px;
    }
    
    .hero-navigation-dots {
        right: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-slide-title {
        font-size: 32px;
        letter-spacing: 1px;
        line-height: 46px;
    }
    
    .hero-slide-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-navigation-dots {
        right: 20px;
        gap: 15px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}
