﻿.fleet-banner {
    position: relative;
    padding: 180px 0 140px;
    background: linear-gradient( rgba(7,26,53,.82), rgba(7,26,53,.88) ), url('/images/fleet.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fleet-banner-content {
    max-width: 800px;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 2;
}

.banner-tag {
    display: inline-block;
    color: #129CE1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fleet-banner h1 {
    color: #fff;
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.fleet-banner p {
    color: rgba(255,255,255,.85);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: .3s;
}

    .btn-outline:hover {
        background: rgba(255,255,255,.1);
    }
.fleet-banner-shape {
    position: absolute;
    right: 100px;
    bottom: 40px;
    font-size: 120px;
    color: rgba(255,255,255,.05);
    animation: truckFloat 4s ease-in-out infinite;
}

@keyframes truckFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media(max-width:768px) {

    .fleet-banner {
        padding: 140px 0 100px;
    }

        .fleet-banner h1 {
            font-size: 42px;
        }

        .fleet-banner p {
            font-size: 16px;
        }

    .fleet-banner-shape {
        display: none;
    }
}

.fleet-overview-section {
    padding: 120px 0;
    background: #fff;
}

.fleet-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fleet-overview-content h2 {
    font-size: 52px;
    color: #071A35;
    margin: 15px 0 25px;
}

.fleet-overview-content p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 35px;
}
.fleet-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

    .fleet-features div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #071A35;
    }

    .fleet-features i {
        color: #129CE1;
    }

.fleet-overview-image {
    position: relative;
}

    .fleet-overview-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 25px 60px rgba(0,0,0,.08);
    }

.fleet-stat-card {
    position: absolute;
    left: -40px;
    bottom: 40px;
    background: #129CE1;
    color: #fff;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(18,156,225,.25);
}

    .fleet-stat-card h3 {
        font-size: 42px;
        margin: 0;
    }

@media(max-width:991px) {

    .fleet-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fleet-overview-content h2 {
        font-size: 36px;
    }

    .fleet-features {
        grid-template-columns: 1fr;
    }

    .fleet-stat-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 20px;
    }
}

.fleet-types-section {
    padding: 120px 0;
    background: #f8fafc;
}

.fleet-types-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.vehicle-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    transition: .4s ease;
}

    .vehicle-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(18,156,225,.15);
    }

    .vehicle-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.vehicle-content {
    padding: 30px;
}

    .vehicle-content span {
        color: #129CE1;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .vehicle-content h3 {
        color: #071A35;
        margin: 10px 0 15px;
        font-size: 28px;
    }

    .vehicle-content p {
        color: #64748b;
        line-height: 1.8;
    }

.featured {
    transform: translateY(-20px);
}

    .featured:hover {
        transform: translateY(-32px);
    }

@media(max-width:991px) {

    .fleet-types-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }
}

.fleet-process-section {
    padding: 120px 0;
    background: #fff;
}

.fleet-process {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    max-width: 250px;
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #129CE1, #0a7fc0 );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 15px 30px rgba(18,156,225,.25);
}

.process-line {
    flex: 0 0 80px;
    height: 4px;
    background: linear-gradient( 90deg, #129CE1, rgba(18,156,225,.2) );
    border-radius: 20px;
}

.process-step h4 {
    color: #071A35;
    margin-bottom: 12px;
    font-size: 24px;
}

.process-step p {
    color: #64748b;
    line-height: 1.7;
}
@media(max-width:991px) {

    .fleet-process {
        flex-direction: column;
    }

    .process-line {
        width: 4px;
        height: 60px;
    }
}

.fleet-network-section {
    padding: 120px 0;
    background: #fff;
}

.fleet-network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.network-image {
    position: relative;
    text-align: center;
}

    .network-image img {
        width: 100%;
        max-width: 550px;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,.12));
    }

.network-content .section-tag {
    color: #129CE1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.network-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #071A35;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.network-content p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.network-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 40px;
}

    .network-points div {
        font-weight: 600;
        color: #071A35;
    }

    .network-points i {
        color: #129CE1;
        margin-right: 8px;
    }

.network-stats {
    display: flex;
    gap: 30px;
}

    .network-stats h3 {
        font-size: 32px;
        color: #129CE1;
        margin: 0;
        font-weight: 800;
    }

    .network-stats span {
        color: #64748b;
        font-size: 14px;
    }

@media(max-width:991px) {

    .fleet-network-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .network-points {
        grid-template-columns: 1fr;
    }

    .network-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .network-content h2 {
        font-size: 36px;
    }
}
