/* ================================
   HERO SLIDER WRAPPER
================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 480px;
    overflow: hidden;
    background: #000;
}

/* ================================
   SLIDE CONTAINER
================================ */
.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

/* ================================
   SINGLE SLIDE
================================ */
.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

/* Background image version */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2)
    );
}

/* ================================
   SLIDE CONTENT
================================ */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* CTA Button */
.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #CC2230;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #a81a25;
}

/* ================================
   NAVIGATION ARROWS
================================ */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    z-index: 3;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.hero-arrow.left {
    left: 20px;
}

.hero-arrow.right {
    right: 20px;
}

/* ================================
   DOT INDICATORS
================================ */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active {
    background: #CC2230;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .hero-slider {
        height: 65vh;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-arrow {
        width: 35px;
        height: 35px;
    }
}