/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    width: 100%;
}

.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide-counter {
    font-size: 36px;
    font-weight: 300;
}

.slide-total {
    font-size: 20px;
    opacity: 0.8;
}

.slide-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.dot.active {
    width: 32px;
    border-radius: 4px;
    background-color: white;
}

.slide-arrows {
    display: flex;
    gap: 16px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background-color: white;
    color: black;
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .slider-controls {
        bottom: 160px;
    }

    .slide-counter {
        font-size: 24px;
    }

    .slide-total {
        font-size: 16px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 24px;
    }

    .arrow-btn {
        width: 32px;
        height: 32px;
    }

    .arrow-btn svg {
        width: 16px;
        height: 16px;
    }
}