/* =========================================================
   FLEETS PAGE
========================================================= */

.fleet-hero {
    position: relative;
    min-height: 250px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(20, 20, 20, .45),
            rgba(20, 20, 20, .12)
        ),
        url('/frontend/images/banner.jpg')
        center center / cover no-repeat;

    overflow: hidden;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.fleet-hero .container {
    position: relative;
    z-index: 2;
}

.fleet-hero-inner {
    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 40px 0;
}

.fleet-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 800;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.fleet-breadcrumb {
    display: flex;
    align-items: center;

    gap: 7px;

    padding: 12px 20px;

    background: #fff;

    border-radius: 6px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .12);

    font-size: 12px;

    white-space: nowrap;
}

.fleet-breadcrumb a {
    color: #28201c;

    text-decoration: none;

    transition: .25s ease;
}

.fleet-breadcrumb a:hover {
    color: #f34a00;
}

.fleet-breadcrumb span {
    color: #aaa09a;
}

.fleet-breadcrumb span:last-child {
    color: #f34a00;

    font-weight: 600;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.fleet-section {
    width: 100%;

    background: #fffaf7;

    padding: 8px 0 55px;
}


/* =========================================================
   BOOTSTRAP ROW FIX
========================================================= */

.fleet-section .row {
    margin-left: -6px;
    margin-right: -6px;
}

.fleet-section .row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;

    margin-bottom: 12px;
}


/* =========================================================
   CARD
========================================================= */

.fleet-card {
    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #f0dfd6;

    border-radius: 6px;

    box-shadow:
        0 2px 8px rgba(70, 40, 25, .08);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);

    border-color: rgba(243, 74, 0, .28);

    box-shadow:
        0 10px 25px rgba(70, 40, 25, .13);
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.fleet-image {
    width: 100%;

    height: 205px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    margin: 0;

    background: #fff;

    overflow: hidden;
}


/* =========================================================
   IMAGE
========================================================= */

.fleet-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;

    margin: 0;

    padding: 0;

    object-fit: contain;

    object-position: center;

    transition: transform .35s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.035);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.fleet-content {
    width: 100%;

    text-align: center;

    padding: 5px 12px 15px;
}

.fleet-content h3 {
    margin: 0 0 7px;

    color: #342a25;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   BUTTONS
========================================================= */

.fleet-buttons {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;
}

.fleet-buttons a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    min-width: 69px;
    min-height: 31px;

    padding: 7px 10px;

    border-radius: 3px;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    transition: .25s ease;
}

.fleet-buttons a i {
    font-size: 9px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.call-btn {
    background: #20a846;

    border: 1px solid #20a846;

    box-shadow:
        0 4px 9px rgba(32, 168, 70, .14);
}

.call-btn:hover {
    color: #fff;

    background: #168b38;

    border-color: #168b38;

    transform: translateY(-2px);
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.book-btn {
    background: #f34a00;

    border: 1px solid #f34a00;

    box-shadow:
        0 4px 9px rgba(243, 74, 0, .14);
}

.book-btn:hover {
    color: #fff;

    background: #c83d00;

    border-color: #c83d00;

    transform: translateY(-2px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .fleet-image {
        height: 220px;
    }

    .fleet-content h3 {
        font-size: 16px;
    }
}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .fleet-hero,
    .fleet-hero-inner {
        min-height: 225px;
    }

    .fleet-image {
        height: 190px;
    }

    .fleet-buttons {
        gap: 5px;
    }

    .fleet-buttons a {
        padding-left: 8px;
        padding-right: 8px;
    }
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .fleet-hero,
    .fleet-hero-inner {
        min-height: 220px;
    }

    .fleet-hero-inner {
        padding: 35px 0;
    }

    .fleet-image {
        height: 195px;
    }

    .fleet-content h3 {
        font-size: 14px;
    }

    .fleet-section .row {
        margin-left: -7px;
        margin-right: -7px;
    }

    .fleet-section .row > [class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
    }
}


/* =========================================================
   MOBILE
   <= 767px
========================================================= */

@media (max-width: 767.98px) {

    /* HERO */

    .fleet-hero,
    .fleet-hero-inner {
        min-height: 205px;
    }

    .fleet-hero-inner {
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        padding: 35px 0;

        gap: 15px;
    }

    .fleet-hero h1 {
        font-size: 34px;
    }


    /* BREADCRUMB */

    .fleet-breadcrumb {
        padding: 10px 15px;

        font-size: 11px;
    }


    /* SECTION */

    .fleet-section {
        padding: 10px 0 45px;
    }


    /* FULL WIDTH ROW */

    .fleet-section .container {
        width: 100%;

        max-width: 100%;

        padding-left: 10px;
        padding-right: 10px;
    }

    .fleet-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .fleet-section .row > [class*="col-"] {
        width: 100%;

        padding-left: 0;
        padding-right: 0;

        margin-bottom: 12px;
    }


    /* CARD */

    .fleet-card {
        width: 100%;

        border-radius: 6px;
    }


    /* FULL WIDTH IMAGE */

    .fleet-image {
        width: 100%;

        height: 210px;

        padding: 0;

        margin: 0;
    }

    .fleet-image img {
        width: 100%;

        height: 100%;

        max-width: 100%;

        object-fit: contain;

        padding: 0;

        margin: 0;
    }


    /* CONTENT */

    .fleet-content {
        width: 100%;

        padding: 7px 10px 13px;
    }

    .fleet-content h3 {
        font-size: 15px;

        margin-bottom: 7px;
    }


    /* BUTTONS */

    .fleet-buttons {
        width: 100%;

        gap: 6px;
    }

    .fleet-buttons a {
        flex: 1;

        width: 50%;

        min-width: 0;

        min-height: 34px;

        padding: 8px 7px;

        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   <= 575px
========================================================= */

@media (max-width: 575.98px) {

    .fleet-hero,
    .fleet-hero-inner {
        min-height: 185px;
    }

    .fleet-hero-inner {
        padding: 32px 0;
    }

    .fleet-hero h1 {
        font-size: 30px;
    }


    /* FULL WIDTH SECTION */

    .fleet-section .container {
        padding-left: 8px;
        padding-right: 8px;
    }


    /* CARD */

    .fleet-card {
        border-radius: 5px;
    }


    /* IMAGE FULL WIDTH */

    .fleet-image {
        width: 100%;

        height: 195px;

        padding: 0;
    }

    .fleet-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;

        padding: 0;
        margin: 0;
    }


    /* CONTENT */

    .fleet-content {
        padding: 6px 8px 12px;
    }

    .fleet-content h3 {
        font-size: 14px;

        margin-bottom: 7px;
    }


    /* BUTTONS */

    .fleet-buttons {
        gap: 5px;
    }

    .fleet-buttons a {
        min-height: 33px;

        padding: 8px 5px;

        font-size: 9px;
    }

    .fleet-buttons a i {
        font-size: 8px;
    }
}


/* =========================================================
   MOBILE 480px
========================================================= */

@media (max-width: 480px) {

    .fleet-section .container {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fleet-section .row > [class*="col-"] {
        margin-bottom: 10px;
    }


    /* IMAGE TAKES FULL CARD WIDTH */

    .fleet-image {
        width: 100%;

        height: 180px;
    }

    .fleet-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }


    .fleet-content {
        padding: 6px 7px 11px;
    }

    .fleet-content h3 {
        font-size: 13px;
    }

    .fleet-buttons {
        gap: 4px;
    }

    .fleet-buttons a {
        min-height: 32px;

        padding: 7px 4px;

        font-size: 8.5px;
    }
}


/* =========================================================
   EXTRA SMALL
   <= 420px
========================================================= */

@media (max-width: 420px) {

    .fleet-hero,
    .fleet-hero-inner {
        min-height: 175px;
    }

    .fleet-hero h1 {
        font-size: 28px;
    }

    .fleet-breadcrumb {
        padding: 9px 12px;

        font-size: 10px;
    }


    /* CONTAINER FULL WIDTH */

    .fleet-section .container {
        padding-left: 5px;
        padding-right: 5px;
    }


    /* IMAGE */

    .fleet-image {
        width: 100%;

        height: 165px;

        padding: 0;
    }

    .fleet-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;

        padding: 0;
    }


    /* CONTENT */

    .fleet-content {
        padding: 5px 6px 10px;
    }

    .fleet-content h3 {
        font-size: 12px;

        margin-bottom: 6px;
    }


    /* BUTTON */

    .fleet-buttons {
        gap: 4px;
    }

    .fleet-buttons a {
        min-height: 30px;

        padding: 6px 3px;

        font-size: 8px;
    }

    .fleet-buttons a i {
        font-size: 7px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   <= 360px
========================================================= */

@media (max-width: 360px) {

    .fleet-section .container {
        padding-left: 4px;
        padding-right: 4px;
    }


    .fleet-image {
        width: 100%;

        height: 150px;
    }

    .fleet-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }


    .fleet-content {
        padding: 5px 5px 9px;
    }

    .fleet-content h3 {
        font-size: 11px;

        margin-bottom: 5px;
    }

    .fleet-buttons {
        gap: 3px;
    }

    .fleet-buttons a {
        min-height: 29px;

        padding: 6px 2px;

        font-size: 7.5px;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {

    .fleet-image {
        height: 180px;
    }

    .fleet-hero,
    .fleet-hero-inner {
        min-height: 175px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.fleet-buttons a:focus-visible {
    outline: 2px solid #f34a00;

    outline-offset: 2px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .fleet-card,
    .fleet-card *,
    .fleet-buttons a,
    .fleet-image img {
        transition: none !important;
    }
}