/* Hero Slider - Exact match to design */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1770px;
    margin: 0 auto 20px;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    border: 2px solid #2c3e50;
    box-sizing: border-box;
}

.hero-slider__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 39.548%; /* 700/1770 = 39.548% - aspect ratio for 1770x700 */
}

.hero-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.hero-slider__slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slider__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-slider__content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 550px;
    color: #fff;
}

.hero-slider__title {
    margin: 0 0 15px;
    font-size: 2.8em;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: none;
}

.hero-slider__subtitle {
    margin: 0 0 25px;
    font-size: 1em;
    font-weight: 400;
    opacity: 1;
    text-shadow: none;
}

.hero-slider__button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #00bcd4;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.hero-slider__button:hover,
.hero-slider__button:focus {
    background: #00acc1;
    transform: none;
    box-shadow: none;
    color: #fff;
}

/* Navigation Arrows - White with blue arrow */
.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 36px;
    height: 80px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hero-slider__nav:hover {
    background: #f5f5f5;
    transform: translateY(-50%);
}

.hero-slider__nav--prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.hero-slider__nav--next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.hero-slider__nav svg {
    width: 24px;
    height: 24px;
    fill: #3BA8D0;
}

/* Dots Navigation - hidden as per design */
.hero-slider__dots {
    display: none;
}

.hero-slider__title {

    font-size: 60px;
    font-weight: 700;
    color: white;
}

.hero-slider__subtitle {

    font-size: 26px;

}

.hero-slider {
    border: unset;
}

.hero-slider__title {
    font-size: 50px;
    font-weight: 700;
    color: white;
}


/* Responsive */
@media (max-width: 1200px) {
    .hero-slider {
        max-width: 100%;
        margin: 0 0 20px;
        border-radius: 0;
    }

    .hero-slider__wrapper {
        padding-bottom: 45%;
    }

    .hero-slider__content {
        left: 50px;
        max-width: 450px;
    }

    .hero-slider__title {
        font-size: 2.2em;
    }
}

@media (max-width: 992px) {
    .hero-slider__wrapper {
        padding-bottom: 50%;
    }

    .hero-slider__content {
        left: 45px;
        max-width: 380px;
    }

    .hero-slider__title {
        font-size: 1.9em;
        margin-bottom: 12px;
    }

    .hero-slider__subtitle {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .hero-slider__button {
        padding: 12px 28px;
        font-size: 0.75em;
    }

    .hero-slider__nav {
        width: 40px;
        height: 60px;
    }

    .hero-slider__nav svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 767px) {
    .hero-slider__wrapper {
        padding-bottom: 55%;
    }

    .hero-slider__content {
        left: 35px;
        right: 35px;
        max-width: none;
    }

    .hero-slider__title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .hero-slider__subtitle {
        font-size: 0.9em;
        margin-bottom: 18px;
    }

    .hero-slider__button {
        padding: 11px 24px;
        font-size: 0.7em;
    }

    .hero-slider__nav {
        width: 35px;
        height: 50px;
    }

    .hero-slider__nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 575px) {
    .hero-slider__wrapper {
        padding-bottom: 60%;
    }

    .hero-slider__content {
        left: 25px;
        right: 25px;
    }

    .hero-slider__title {
        font-size: 1.3em;
        margin-bottom: 8px;
    }

    .hero-slider__subtitle {
        font-size: 0.85em;
        margin-bottom: 15px;
    }

    .hero-slider__button {
        padding: 10px 20px;
        font-size: 0.65em;
    }

    .hero-slider__nav {
        display: none;
    }
}
