/* Slider Container */
.dz-slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dz-slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    /* Default height */
}

@media (max-width: 768px) {
    .dz-slider-wrapper {
        height: 250px;
    }
}

/* Slide Base */
.dz-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dz-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Background Image */
.dz-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.dz-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

/* Content */
.dz-slide-content {
    position: relative;
    z-index: 3;
    padding: 0 60px;
    color: white;
    width: 100%;
    text-align: right;
    /* RTL support */
}

.dz-slide-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s 0.2s;
}

.dz-slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s 0.3s;
}

.dz-slide.active .dz-slide-title,
.dz-slide.active .dz-slide-subtitle {
    transform: translateY(0);
    opacity: 1;
}

.dz-slide-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.dz-slide-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Navigation Dots */
.dz-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dz-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.dz-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Arrows */
.dz-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    user-select: none;
}

.dz-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.dz-slider-arrow-prev {
    right: 20px;
}

.dz-slider-arrow-next {
    left: 20px;
}

@media (max-width: 768px) {
    .dz-slide-content {
        padding: 0 20px;
        text-align: center;
    }

    .dz-slide-title {
        font-size: 1.8rem;
    }

    .dz-slider-arrow {
        display: none;
    }
}

/* Animations */
.dz-slider-animation-fade .dz-slide {
    transition: opacity 0.8s ease-in-out;
}

.dz-slider-animation-slide .dz-slide {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s;
}