/* =========================================
   Slick Slider Custom Styles
   ========================================= */
.hero-slick-slider {
    position: relative;
    overflow: hidden;
}

.slider-item {
    position: relative;
    outline: none;
    /* Remove focus outline */
}

.slider-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.slider-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slider-caption p {
    font-size: 1.2rem;
}

/* Custom Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    font-size: 0;
    line-height: 0;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex !important;
    /* Force flex to center icon */
    align-items: center;
    justify-content: center;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary-color);
}

.slick-prev:before,
.slick-next:before {
    content: none !important;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev i,
.slick-next i {
    font-size: 20px;
    color: #fff;
}

/* Custom Dots */
.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slider-caption h2 {
        font-size: 1.8rem;
    }

    .slider-caption {
        bottom: 10%;
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .slick-prev,
    .slick-next {
        width: 35px;
        height: 35px;
    }
}