.hbs-hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.hbs-slides-wrapper {
    position: relative;
    width: 100%;
}

.hbs-slide {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hbs-slide.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.hbs-slide-image-container {
    position: relative;
    width: 100%;
    line-height: 0;
}

.hbs-slide-image {
    width: 100%;
    height: auto;
    display: block;
}

.hbs-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.hbs-slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    align-items: center;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

.hbs-slide-content {
    width: 100%;
    color: #fff;
    animation: slideUp 0.8s ease;
}

.hbs-text-left {
    text-align: left;
}

.hbs-text-center {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.hbs-text-right {
    text-align: right;
    margin-left: auto;
}

.hbs-slide-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hbs-slide-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.hbs-slide-button {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 3;
}

.hbs-slide-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f0f0f0;
    color: #000;
}

.hbs-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Navigation Arrows */
.hbs-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.hbs-nav-arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.hbs-nav-prev {
    left: 20px;
}

.hbs-nav-next {
    right: 20px;
}

/* Navigation Dots */
.hbs-nav-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.hbs-nav-dot:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.hbs-nav-dot.active {
    background: #fff;
    border-color: rgba(255,255,255,0.3);
    width: 30px;
    border-radius: 6px;
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hbs-slide-content-wrapper {
        padding: 20px;
    }

    .hbs-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .hbs-nav-prev {
        left: 10px;
    }

    .hbs-nav-next {
        right: 10px;
    }

    .hbs-nav-dots {
        bottom: 15px;
        gap: 8px;
    }

    .hbs-nav-dot {
        width: 10px;
        height: 10px;
    }

    .hbs-nav-dot.active {
        width: 24px;
    }

    .hbs-slide-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hbs-slide-content-wrapper {
        padding: 15px;
    }

    .hbs-slide-title {
        margin-bottom: 15px;
    }

    .hbs-slide-subtitle {
        margin-bottom: 20px;
    }

    .hbs-nav-dots {
        bottom: 10px;
    }
}
