/* ============================================
   FLEET SECTION - Premium Showcase
   ============================================ */
.fleet-section {
    background: var(--off-white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.fleet-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
    /* Light background for 'contain' empty areas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed from cover to show full image */
    padding: var(--space-md);
    transition: var(--transition);
}

.fleet-card:hover .fleet-img-wrapper img {
    transform: scale(1.05);
    /* Reduced scale */
}

.fleet-info {
    padding: var(--space-xl);
}

.fleet-badge {
    display: inline-block;
    padding: var(--space-2xs) var(--space-sm);
    background: var(--light-blue);
    color: var(--primary);
    font-size: var(--font-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.fleet-specs {
    margin-top: var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    border-top: 1px solid var(--light-gray);
    padding-top: var(--space-md);
}

.spec-item {
    font-size: var(--font-sm);
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.spec-item i {
    color: var(--primary);
}