/* === SLIDER CONTAINER === */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
}

/* === SLIDES === */
.slides {position:relative;width:100%;height:100%;}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active {opacity: 1;}

/* === BACKGROUND IMAGE === */
.tilt-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform .1s ease-out;
}
.bg {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s cubic-bezier(.25,.8,.25,1);
}
.slide.active .bg {
    transform: scale(1.25) translate(var(--pan-x,0%),var(--pan-y,0%));
}

/* === CAPTION CONTENT === */
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.4s ease .7s;
}
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}
.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    background: linear-gradient(90deg,#fff,#e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0,0,0,.6);
}
.slide-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    opacity: .9;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* === BUTTON === */
.slider-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: .9rem 2.2rem;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all .4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}
.slider-btn:hover {
    background: rgba(255,255,255,.25);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,.4);
}

/* === NAVIGATION === */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 60px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .5s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.25);
}
.arrow:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-50%) scale(1.2);
}
.arrow svg {width: 28px; height: 28px; fill: white;}
.prev {left: 20px;}
.next {right: 20px;}

/* === DOTS === */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all .6s ease;
    border: 2px solid rgba(255,255,255,.4);
}
.dot.active {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(255,255,255,.8);
}

/* === PROGRESS BAR === */
.progress-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 4px;
    background: rgba(255,255,255,.15);
    width: 100%;
    z-index: 9;
}
.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,#ff6b6b,#feca57,#48dbfb,#ff9ff3);
    transition: width .1s linear;
}
.footer-socials ul {
    margin:0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 300px;
        margin: 1rem auto;
        border-radius: 12px;
    }
    .slide-content h2 {font-size: 2.4rem;}
    .slide-content p {font-size: 1.1rem;}
    .arrow {width: 50px; height: 50px;}
    .arrow svg {width: 22px; height: 22px;}
    .prev {left: 15px;}
    .next {right: 15px;}
    .dots {gap: 10px; bottom: 20px;}
}