/* ==========================================================
   NORTHEAST VOYAGERS
   VEHICLE FLEET
   ========================================================== */

.nv-fleet {

    width: 100%;

    padding: 90px 0;

    background: #f7f9f7;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;
}


.nv-fleet-container {

    width: 92%;

    max-width: 1400px;

    margin: 0 auto;
}


/* ==========================================================
   SECTION HEADING
   ========================================================== */

.nv-fleet-heading {

    max-width: 750px;

    margin: 0 auto 48px;

    text-align: center;
}


.nv-fleet-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #f56845;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.nv-fleet-heading h2 {

    margin: 0 0 15px;

    color: #174f31;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 700;
}


.nv-fleet-heading h2 span {

    color: #f56845;
}


.nv-fleet-heading p {

    max-width: 680px;

    margin: 0 auto;

    color: #68736c;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================================
   FLEET GRID
   ========================================================== */

.nv-fleet-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}


/* ==========================================================
   VEHICLE CARD
   ========================================================== */

.nv-fleet-card {

    background: #ffffff;

    border: 1px solid #e3e9e5;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.nv-fleet-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 16px 35px rgba(23,79,49,0.13);
}


/* ==========================================================
   IMAGE CONTAINER
   IMPORTANT:
   contain = NO CROPPING
   ========================================================== */

.nv-fleet-image {
    width: 100%;

    aspect-ratio: 3 / 2;

    position: relative;

    overflow: hidden;

    background: #ffffff;

    border-bottom: 1px solid #edf0ee;

    margin: 0;

    padding: 0;
}



/* Vehicle image */

.nv-fleet-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: fill;

    object-position: center;

    transition: transform 0.4s ease;
}



/* Slight zoom without cropping */

.nv-fleet-card:hover .nv-fleet-image img {
    transform: scale(1.015);
}


/* ==========================================================
   BADGE
   ========================================================== */

.nv-fleet-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    padding: 6px 9px;

    background: #174f31;

    color: #ffffff;

    border-radius: 3px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    z-index: 2;
}


.nv-fleet-badge.premium {

    background: #f56845;
}


/* ==========================================================
   CARD INFORMATION
   ========================================================== */

.nv-fleet-info {

    padding: 18px 18px 17px;

    text-align: center;
}


.nv-fleet-info h3 {

    margin: 0 0 5px;

    color: #174f31;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;
}


.nv-fleet-type {

    display: block;

    margin-bottom: 16px;

    color: #f56845;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.nv-fleet-buttons {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;
}


.nv-book-btn,
.nv-call-btn {

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.25s ease;
}


/* Book */

.nv-book-btn {

    background: #174f31;

    color: #ffffff;

    border: 1px solid #174f31;
}


.nv-book-btn:hover {

    background: #f56845;

    border-color: #f56845;

    color: #ffffff;

    text-decoration: none;
}


/* Call */

.nv-call-btn {

    background: #fff5f2;

    color: #f56845;

    border: 1px solid #f56845;
}


.nv-call-btn:hover {

    background: #f56845;

    color: #ffffff;

    text-decoration: none;
}


/* ==========================================================
   VIEW COMPLETE FLEET
   ========================================================== */

.nv-fleet-more {

    margin-top: 40px;

    text-align: center;
}


.nv-fleet-more-btn {

    min-height: 48px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: #174f31;

    color: #ffffff;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.nv-fleet-more-btn:hover {

    background: #f56845;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-2px);
}


/* ==========================================================
   LARGE TABLET
   ========================================================== */

@media (max-width: 1200px) {

    .nv-fleet-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .nv-fleet {

        padding: 70px 0;

    }


    .nv-fleet-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

    }


    .nv-fleet-image {

        height: 230px;

    }


    .nv-fleet-heading h2 {

        font-size: 34px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .nv-fleet {

        padding: 55px 0;

    }


    .nv-fleet-container {

        width: 90%;

    }


    .nv-fleet-heading {

        margin-bottom: 30px;

    }


    .nv-fleet-heading h2 {

        font-size: 29px;

    }


    .nv-fleet-heading p {

        font-size: 13px;

        line-height: 1.7;

    }


    .nv-fleet-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    /* Keep complete vehicle visible */

    .nv-fleet-image {
        width: 100%;
        aspect-ratio: 3 / 2;
    }


    .nv-fleet-image img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }


    .nv-fleet-info {

        padding: 17px;

    }


    .nv-fleet-info h3 {

        font-size: 18px;

    }


    .nv-book-btn,
    .nv-call-btn {

        height: 42px;

        font-size: 11px;

    }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 400px) {

    .nv-fleet-image {

        height: 230px;

    }


    .nv-fleet-heading h2 {

        font-size: 26px;

    }

}