/* ===========================================
   FLEET.CSS — Vehicles / Fleet Page
=========================================== */

:root {
    --primary: var(--primary-color);
    --text-light: var(--paragraph-color);
}

/* ----- Fleet Section ----- */
.fleet-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
}

.fleet-title {
    color: var(--heading-color);
    font-size: 48px;
    margin-bottom: 55px;
    font-weight: 700;
}

/* Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 25px;
    max-width: 1300px;
    margin: auto;
}

/* Vehicle Card */
.fleet-item img {
    width: 260px;
    height: 160px;
    object-fit: contain;
    margin: auto;
    transition: 0.3s ease;
}

.fleet-item img:hover {
    transform: scale(1.08);
}

.fleet-item h3 {
    color: var(--heading);
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600;
}

/* Responsive */
@media(max-width: 992px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}
