/* Interior Slider */
.interior-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 4rem auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-item {
    min-width: 100%;
    height: 500px;
    position: relative;
    background: #fff;
    /* Changed from #1a1a1a to white */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.05);
    /* Lighter background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    /* Dark icon */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-control:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

@media (max-width: 768px) {
    .slide-item {
        height: 300px;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-control.prev {
        left: 10px;
    }

    .slider-control.next {
        right: 10px;
    }
}

/* Gallery Slider */
.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    /* Changed from #111 */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    /* Lighter shadow */
    aspect-ratio: 16/9;
}

.gallery-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    /* Changed from #000 */
}

.gallery-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-slide-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    /* Darker bg for visibility */
    border: none;
    color: #000;
    /* Dark icon */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-control:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.gallery-control.prev {
    left: 20px;
}

.gallery-control.next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-slider-container {
        aspect-ratio: 4/3;
    }

    .gallery-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-control.prev {
        left: 10px;
    }

    .gallery-control.next {
        right: 10px;
    }
}