/* =========================================================
   NORTHEAST VOYAGERS HERO SLIDER
   ========================================================= */

.nev-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #102f21;
}


/* =========================================================
   SLIDER
   ========================================================= */

.nev-slider {
    width: 100%;
    height: 680px;

    position: relative;
    overflow: hidden;
}


/* =========================================================
   SLIDE
   ========================================================= */

.nev-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.nev-slide.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   SLIDE IMAGE
   ========================================================= */

.nev-slide-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1);

    transition:
        transform 7s ease;
}


/* Ken Burns Effect */

.nev-slide.active .nev-slide-image {
    transform: scale(1.07);
}


/* =========================================================
   DARK GRADIENT OVERLAY
   ========================================================= */

.nev-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 17, 0.88) 0%,
            rgba(8, 25, 17, 0.65) 35%,
            rgba(8, 25, 17, 0.25) 70%,
            rgba(8, 25, 17, 0.08) 100%
        );

    z-index: 1;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.nev-hero-content {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    display: flex;
    align-items: center;
}


.nev-hero-inner {
    width: 94%;
    max-width: 1400px;

    margin: 0 auto;

    padding-left: 3%;
}


/* =========================================================
   SMALL LABEL
   ========================================================= */

.nev-hero-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 15px;

    border-left: 4px solid #f56845;

    background: rgba(245, 104, 69, 0.12);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   HEADING
   ========================================================= */

.nev-hero h1,
.nev-hero h2 {

    max-width: 760px;

    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -1px;
}


.nev-hero h1 strong,
.nev-hero h2 strong {
    display: block;

    color: #f56845;

    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.nev-hero p {

    max-width: 650px;

    margin: 0 0 32px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   BUTTON AREA
   ========================================================= */

.nev-hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.nev-btn {

    min-height: 52px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 4px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.3s ease;
}


/* =========================================================
   CALL BUTTON
   ========================================================= */

.nev-btn-call {

    color: #ffffff;

    background: #f56845;

    border: 2px solid #f56845;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);
}


.nev-btn-call:hover {

    color: #ffffff;

    background: #df5536;

    border-color: #df5536;

    transform: translateY(-2px);

    text-decoration: none;
}


/* Phone Icon */

.nev-phone-icon {

    width: 27px;
    height: 27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.18);

    font-size: 14px;
}


/* Phone Number */

.nev-phone-number {

    font-weight: 500;

    opacity: 0.95;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.nev-btn-primary {

    color: #174f31;

    background: #ffffff;

    border: 2px solid #ffffff;
}


.nev-btn-primary:hover {

    color: #ffffff;

    background: #174f31;

    border-color: #174f31;

    transform: translateY(-2px);

    text-decoration: none;
}


/* =========================================================
   SLIDER ARROWS
   ========================================================= */

.nev-slider-arrow {

    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    margin-top: -24px;

    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 50%;

    background: rgba(0,0,0,0.18);

    color: #ffffff;

    font-size: 34px;

    line-height: 40px;

    cursor: pointer;

    z-index: 5;

    opacity: 0.75;

    transition: all 0.3s ease;
}


.nev-slider-arrow:hover {

    background: #f56845;

    border-color: #f56845;

    opacity: 1;

    transform: scale(1.05);
}


.nev-prev {
    left: 25px;
}


.nev-next {
    right: 25px;
}


/* =========================================================
   SLIDER DOTS
   ========================================================= */

.nev-slider-dots {

    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;

    gap: 9px;

    z-index: 5;
}


.nev-dot {

    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,0.55);

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.nev-dot.active {

    width: 30px;

    border-radius: 10px;

    background: #f56845;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .nev-slider {
        height: 600px;
    }

    .nev-hero h1,
    .nev-hero h2 {
        font-size: 45px;
    }

    .nev-hero-inner {
        padding-left: 4%;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .nev-slider {
        height: 620px;
    }


    .nev-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(8, 25, 17, 0.88),
                rgba(8, 25, 17, 0.55)
            );
    }


    .nev-hero-content {
        align-items: center;
    }


    .nev-hero-inner {

        width: 90%;

        padding-left: 0;

        margin: 0 auto;
    }


    .nev-hero-label {

        margin-bottom: 14px;

        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .nev-hero h1,
    .nev-hero h2 {

        max-width: 650px;

        font-size: 36px;

        line-height: 1.2;

        letter-spacing: -0.5px;
    }


    .nev-hero p {

        max-width: 580px;

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 25px;
    }


    .nev-hero-buttons {

        gap: 10px;
    }


    .nev-btn {

        min-height: 48px;

        padding: 0 17px;

        font-size: 11px;
    }


    .nev-phone-number {
        display: none;
    }


    .nev-slider-arrow {

        width: 40px;
        height: 40px;

        font-size: 28px;

        line-height: 32px;

        margin-top: -20px;
    }


    .nev-prev {
        left: 12px;
    }


    .nev-next {
        right: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .nev-slider {
        height: 580px;
    }


    .nev-hero-inner {
        width: 88%;
    }


    .nev-hero-label {

        font-size: 9px;

        padding: 7px 11px;

        border-left-width: 3px;
    }


    .nev-hero h1,
    .nev-hero h2 {

        font-size: 30px;

        line-height: 1.18;

        margin-bottom: 15px;
    }


    .nev-hero p {

        font-size: 13px;

        line-height: 1.65;

        margin-bottom: 22px;
    }


    .nev-hero-buttons {

        flex-direction: column;

        align-items: flex-start;

        width: 100%;
    }


    .nev-btn {

        min-height: 47px;

        width: auto;

        padding: 0 17px;

        font-size: 11px;
    }


    .nev-slider-dots {
        bottom: 20px;
    }


    .nev-slider-arrow {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .nev-slider {
        height: 560px;
    }


    .nev-hero h1,
    .nev-hero h2 {
        font-size: 27px;
    }


    .nev-hero p {
        font-size: 12px;
    }

}