Drive With Cam Trucking — Join a Winning Team

Lease for $300/week. Fuel discounts, insurance, and professional dispatch support. Reliable routes, fair pay.

Quick Contact Card
Quick Contact

Address
Monroe, MI
Our Services - Cam Trucking LLC

Our Services

Comprehensive trucking solutions designed for driver success and business growth

Lease Options

Box trucks, Sprinter vans, and hotshots available with transparent weekly terms and flexible agreements.

Explore Lease Options →

Dispatch & Factoring

Only 2.75% factoring with 24/7 route planning, load matching, and dedicated dispatch support.

Learn About Dispatch →

Insurance & Benefits

Comprehensive freight and cargo coverage with driver wellness programs and safety incentives.

See Benefits →
// Add hover animation effect document.querySelectorAll('.service-card').forEach(card => { card.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-10px)'; }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; }); }); // Service link click handler document.querySelectorAll('.service-link').forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); const service = this.closest('.service-card').querySelector('h3').textContent; alert(`You clicked on: ${service}\nThis would navigate to the detailed service page.`); }); });
Driver Success Stories - Cam Trucking LLC

Why 95% of Our Drivers Renew Their Lease

We've built our reputation on fair treatment, reliable support, and creating real opportunities for professional drivers to thrive in the transportation industry.

Weekly $300 Lease

No hidden fees or surprises

Fuel Discounts

Up to 15% savings nationwide

Expert Dispatch

24/7 professional support

Insurance Included

Full coverage protection

"Cam Trucking gave me the tools to succeed when other companies didn't. The dispatch team is always available and the lease terms are fair. I've doubled my income since joining."

— Michael Rodriguez, Driver for 2 years
// Add hover animation effects document.querySelectorAll('.perk-card').forEach(card => { card.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-5px)'; this.style.boxShadow = '0 8px 20px rgba(0,0,0,0.08)'; }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; this.style.boxShadow = 'none'; }); }); // Driver review animation on load window.addEventListener('load', function() { const review = document.querySelector('.driver-review'); if (review) { review.style.opacity = '0'; review.style.transform = 'scale(0.95)'; setTimeout(function() { review.style.transition = 'all 0.6s ease'; review.style.opacity = '1'; review.style.transform = 'scale(1)'; }, 300); } }); // Perk icons animation document.querySelectorAll('.perk-icon').forEach((icon, index) => { icon.style.opacity = '0'; icon.style.transform = 'scale(0)'; setTimeout(function() { icon.style.transition = 'all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55)'; icon.style.opacity = '1'; icon.style.transform = 'scale(1)'; }, 200 + (index * 100)); }); // Intersection Observer for scroll animation const observerOptions = { threshold: 0.2, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const cards = entry.target.querySelectorAll('.perk-card'); cards.forEach((card, index) => { setTimeout(() => { card.style.opacity = '0'; card.style.transform = 'translateY(20px)'; card.style.transition = 'all 0.5s ease'; setTimeout(() => { card.style.opacity = '1'; card.style.transform = 'translateY(0)'; }, 50); }, index * 150); }); observer.unobserve(entry.target); } }); }, observerOptions); const perksGrid = document.querySelector('.perks-grid'); if (perksGrid) { observer.observe(perksGrid); }
Stats Section - Cam Trucking LLC

5+

Years in Business

50+

Active Drivers

1M+

Miles Monthly

98%

On-Time Delivery

MC: 1516908
DOT: 3864029
Fully Licensed & Insured
// Counter animation for stats function animateCounter(element, target, suffix = '', duration = 2000) { const start = 0; const increment = target / (duration / 16); let current = start; const timer = setInterval(() => { current += increment; if (current >= target) { element.textContent = target + suffix; clearInterval(timer); } else { element.textContent = Math.floor(current) + suffix; } }, 16); } // Intersection Observer for animation trigger const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { // Animate counters animateCounter(document.getElementById('years'), 5, '+'); animateCounter(document.getElementById('drivers'), 50, '+'); animateCounter(document.getElementById('delivery'), 98, '%'); // Special handling for miles const milesElement = document.getElementById('miles'); let miles = 0; const milesTimer = setInterval(() => { miles += 50000; if (miles >= 1000000) { milesElement.textContent = '1M+'; clearInterval(milesTimer); } else { milesElement.textContent = Math.floor(miles / 1000) + 'K+'; } }, 16); observer.disconnect(); } }); }, { threshold: 0.3 }); // Observe the stats section observer.observe(document.querySelector('.stats')); // Hover effects for stat items document.querySelectorAll('.stat-item').forEach(item => { item.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-8px)'; }); item.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; }); }); // Badge hover effects document.querySelectorAll('.badge').forEach(badge => { badge.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-3px)'; }); badge.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; }); });

Ready to Get Started?

Schedule a consultation or pickup in minutes. Our team is ready to help you hit the road.

Our Story and Mission

Building a legacy of excellence in trucking through driver empowerment and innovative solutions

From Humble Beginnings to Industry Leaders

Founded in 2018, Cam Trucking LLC started with a single truck and a big vision: to create a trucking company that truly values its drivers. Our founder, a former driver himself, understood the challenges and opportunities in the transportation industry firsthand.What began as a one-man operation has grown into a fleet serving clients across the Midwest, but our core philosophy remains unchanged: when drivers succeed, the company succeeds.We've maintained our commitment to fair treatment, transparent pricing, and unwavering support for every driver who joins our team. This people-first approach has been the cornerstone of our growth and the reason 95% of our drivers choose to renew their leases year after year.

Mission & Values - Cam Trucking LLC

Our Mission & Values

Driving success through integrity, innovation, and unwavering commitment to our team

Our Mission

To empower professional drivers with the tools, support, and opportunities they need to build successful careers while delivering exceptional service to our clients.

Our Vision

To become the most trusted and driver-focused trucking company in the Midwest, known for fair treatment, reliable service, and innovative solutions.

Our Values

Integrity, transparency, driver success, safety first, and continuous improvement guide every decision we make and every relationship we build.

// Add hover animation effects document.querySelectorAll('.mission-card').forEach(card => { card.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-10px)'; this.style.boxShadow = '0 15px 40px rgba(0,0,0,0.12)'; }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; this.style.boxShadow = '0 8px 30px rgba(0,0,0,0.08)'; }); }); // Icon animation on scroll const observerOptions = { threshold: 0.3, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const icons = entry.target.querySelectorAll('.mission-icon'); icons.forEach((icon, index) => { setTimeout(() => { icon.style.animation = 'iconBounce 0.6s ease-out'; }, index * 150); }); observer.unobserve(entry.target); } }); }, observerOptions); // Observe the mission cards container const missionCardsContainer = document.querySelector('.mission-cards'); if (missionCardsContainer) { observer.observe(missionCardsContainer); } // Add CSS animation dynamically const style = document.createElement('style'); style.textContent = ` @keyframes iconBounce { 0% { transform: scale(0) rotate(0deg); } 50% { transform: scale(1.15) rotate(5deg); } 100% { transform: scale(1) rotate(0deg); } } `; document.head.appendChild(style); // Card click interaction document.querySelectorAll('.mission-card').forEach(card => { card.addEventListener('click', function() { const title = this.querySelector('h3').textContent; const content = this.querySelector('p').textContent; console.log(`Clicked on: ${title}`); // You can add more interactive features here }); });
Meet Our Leadership - Cam Trucking LLC

Meet Our Leadership

The experienced team driving Cam Trucking forward

Cameron Wilson

Cameron Wilson

Founder & CEO

With 15+ years in the transportation industry, Cameron started Cam Trucking to create the company he wished existed when he was driving. His hands-on approach ensures every driver gets the support they need.

Sarah Johnson

Sarah Johnson

Operations Manager

Sarah brings 10 years of logistics expertise to ensure smooth operations and optimal route planning. Her dedication to efficiency helps maximize earnings for every driver in our fleet.

Marcus Rodriguez

Marcus Rodriguez

Dispatch Director

Marcus leads our 24/7 dispatch team with a focus on building strong relationships with drivers and clients alike. His experience ensures you always have loads when you need them.

// Add hover animation effects document.querySelectorAll('.leadership-team-member').forEach(member => { member.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-10px)'; }); member.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; }); }); // Photo hover effects document.querySelectorAll('.leadership-team-photo').forEach(photo => { photo.addEventListener('mouseenter', function() { this.style.borderWidth = '6px'; this.style.transform = 'scale(1.05)'; }); photo.addEventListener('mouseleave', function() { this.style.borderWidth = '4px'; this.style.transform = 'scale(1)'; }); }); // Social icon click handler document.querySelectorAll('.leadership-social-icon').forEach(icon => { icon.addEventListener('click', function(e) { e.preventDefault(); const memberName = this.closest('.leadership-team-member').querySelector('h3').textContent; const platform = this.getAttribute('title'); console.log(`Connect with ${memberName} on ${platform}`); alert(`This would connect you with ${memberName} on ${platform}`); }); }); // Intersection Observer for entrance animation const leadershipObserverOptions = { threshold: 0.2, rootMargin: '0px 0px -50px 0px' }; const leadershipObserver = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const members = entry.target.querySelectorAll('.leadership-team-member'); members.forEach((member, index) => { setTimeout(() => { member.style.opacity = '0'; member.style.transform = 'translateY(30px)'; member.style.transition = 'all 0.6s ease'; setTimeout(() => { member.style.opacity = '1'; member.style.transform = 'translateY(0)'; }, 50); }, index * 200); }); leadershipObserver.unobserve(entry.target); } }); }, leadershipObserverOptions); // Observe the team grid const leadershipTeamGrid = document.querySelector('.leadership-team-grid'); if (leadershipTeamGrid) { leadershipObserver.observe(leadershipTeamGrid); }
Stats Section - Cam Trucking LLC

5+

Years of Excellence

50+

Professional Drivers

1M+

Miles Driven Monthly

98%

Client Satisfaction

// Counter animation for stats function animateCounter(element, target, suffix = '', duration = 2000) { const start = 0; const increment = target / (duration / 16); let current = start; const timer = setInterval(() => { current += increment; if (current >= target) { element.textContent = target + suffix; clearInterval(timer); } else { element.textContent = Math.floor(current) + suffix; } }, 16); } // Intersection Observer for animation trigger const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { // Animate counters animateCounter(document.getElementById('years'), 5, '+'); animateCounter(document.getElementById('drivers'), 50, '+'); animateCounter(document.getElementById('satisfaction'), 98, '%'); // Special handling for miles const milesElement = document.getElementById('miles'); let miles = 0; const milesTimer = setInterval(() => { miles += 50000; if (miles >= 1000000) { milesElement.textContent = '1M+'; clearInterval(milesTimer); } else { milesElement.textContent = Math.floor(miles / 1000) + 'K+'; } }, 16); observer.disconnect(); } }); }, { threshold: 0.3 }); // Observe the stats section observer.observe(document.querySelector('.stats')); // Hover effects for stat items document.querySelectorAll('.stat-item').forEach(item => { item.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-8px)'; }); item.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; }); }); // Icon animation on hover document.querySelectorAll('.stat-icon').forEach(icon => { icon.addEventListener('mouseenter', function() { this.style.transform = 'scale(1.1) rotate(5deg)'; }); icon.addEventListener('mouseleave', function() { this.style.transform = 'scale(1) rotate(0deg)'; }); }); // Staggered entrance animation window.addEventListener('load', function() { const statItems = document.querySelectorAll('.stat-item'); statItems.forEach((item, index) => { item.style.opacity = '0'; item.style.transform = 'translateY(30px)'; setTimeout(() => { item.style.transition = 'all 0.6s ease'; item.style.opacity = '1'; item.style.transform = 'translateY(0)'; }, index * 150); }); });

Ready to Join Our Success Story?

Become part of a company that values your skills, supports your growth, and rewards your hard work.


Our Services

Comprehensive trucking solutions designed for driver success and business growth

Service Overview Cards - Cam Trucking LLC

Complete Trucking Solutions

Everything you need to succeed on the road, from vehicle leasing to 24/7 support

Truck Leasing

Flexible lease options for box trucks, Sprinter vans, and hotshots with transparent weekly terms.

Dispatch Services

24/7 professional dispatch support with route optimization and load matching.

Factoring

Only 2.75% factoring rates with quick payments and transparent fees.

Insurance

Comprehensive freight and cargo coverage with driver protection.

Fuel Discounts

Up to 15% savings on fuel nationwide with our partner network.

Maintenance

Preferred pricing on maintenance and repairs through our network.

// Add hover animation effects document.querySelectorAll('.service-card').forEach(card => { card.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-10px)'; this.style.boxShadow = '0 15px 40px rgba(0,0,0,0.12)'; }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; this.style.boxShadow = '0 8px 30px rgba(0,0,0,0.08)'; }); }); // Icon animation on scroll const observerOptions = { threshold: 0.2, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const cards = entry.target.querySelectorAll('.service-card'); cards.forEach((card, index) => { setTimeout(() => { card.style.opacity = '0'; card.style.transform = 'translateY(30px)'; card.style.transition = 'all 0.6s ease'; setTimeout(() => { card.style.opacity = '1'; card.style.transform = 'translateY(0)'; }, 50); }, index * 100); }); observer.unobserve(entry.target); } }); }, observerOptions); // Observe the services grid const servicesGrid = document.querySelector('.services-grid'); if (servicesGrid) { observer.observe(servicesGrid); } // Card click interaction document.querySelectorAll('.service-card').forEach(card => { card.addEventListener('click', function() { const title = this.querySelector('h3').textContent; console.log(`Clicked on: ${title}`); // You can add navigation or modal functionality here }); }); // Icon pulse animation on hover document.querySelectorAll('.service-icon').forEach(icon => { icon.addEventListener('mouseenter', function() { this.style.transform = 'scale(1.1) rotate(5deg)'; }); icon.addEventListener('mouseleave', function() { this.style.transform = 'scale(1) rotate(0deg)'; }); });

Truck Leasing Options

$300/week

Get behind the wheel of a reliable, well-maintained vehicle with our straightforward leasing program. We offer flexible terms and multiple vehicle options to match your business needs.

  • Box Trucks (26ft) - Perfect for local and regional routes

  • Sprinter Vans - Ideal for last-mile delivery and smaller loads

  • Hotshot Trucks - For time-sensitive and specialized freight

  • No long-term commitment required

  • Weekly billing with no hidden fees

  • Regular maintenance included

Professional Dispatch Services

24/7 Support

Our experienced dispatch team works around the clock to keep you moving and earning. We handle load matching, route optimization, and client communication so you can focus on driving.

  • 24/7 dispatch support - Never drive alone

  • Advanced load matching technology

  • Route optimization for maximum efficiency

  • Client relationship management

  • Emergency support and assistance

  • Weekly settlement reports

Freight Factoring

Only 2.75%

Get paid faster with our low-cost factoring services. We offer some of the most competitive rates in the industry with transparent pricing and quick payment processing.

  • Only 2.75% factoring rate - Industry leading

  • Same-day funding available

  • No long-term contracts

  • Online invoice submission

  • Dedicated account manager

  • Credit checks on new clients

FAQ Section - Cam Trucking LLC

Frequently Asked Questions

Get answers to common questions about our services

What's included in the $300 weekly lease?

The $300 weekly lease includes the vehicle, basic maintenance, and standard insurance coverage. Additional services like dispatch, factoring, and premium insurance are available as add-ons or in our Professional Package.

How quickly can I get started?

Most drivers can be on the road within 3-5 business days after approval. The process includes application review, documentation verification, and vehicle assignment.

What are your factoring rates?

We offer industry-leading factoring rates at only 2.75%. There are no hidden fees or long-term contracts required.

Do you provide training for new drivers?

Yes! We offer comprehensive orientation and ongoing training for all our drivers, including route planning, client communication, and safety procedures.

What types of insurance do you provide?

We provide comprehensive coverage including liability, cargo, and physical damage insurance. Additional coverage options are available based on your specific needs.

Ready to Get on the Road?

Join hundreds of successful drivers who trust Cam Trucking for their business needs.


Drive With Cam Trucking

Join our winning team and build the career you deserve with competitive pay, reliable support, and growth opportunities.

Why Drive With Us - Cam Trucking LLC

Why Drive With Us?

We invest in our drivers' success with comprehensive benefits and unwavering support

Competitive Earnings

Earn up to $1,800+ per week with our optimized routes and consistent freight opportunities.

Fuel Discounts

Save up to 15% on fuel with our nationwide network of partner fuel stations.

Full Insurance

Comprehensive coverage including liability, cargo, and physical damage protection.

24/7 Dispatch

Round-the-clock support from experienced dispatchers who understand your needs.

Modern Fleet

Drive well-maintained 2020+ model trucks with advanced safety features.

Growth Opportunities

Advance to trainer positions or management roles as you grow with our company.

Simple Application Process - Cam Trucking LLC

Simple Application Process

Get on the road in as little as 3-5 business days

1

Submit Application

Complete our online form with your basic information and experience.

2

Document Review

Upload your license, medical certificate, and other required documents.

3

Interview & Approval

Phone interview with our team and background check completion.

4

Hit The Road

Vehicle assignment, orientation, and start earning immediately.

Start Your Application

Complete the form below and our team will contact you within 24 hours

Driver Requirements - Cam Trucking LLC

Driver Requirements

  • Valid Commercial Driver's License (CDL)
  • Clean driving record (max 2 moving violations)
  • Minimum 1 year commercial driving experience
  • Current DOT medical certificate
  • Must be 21 years or older
  • Successful background check
  • Drug-free with clean screening

Need Help With Your Application?

Our recruitment team is available Monday-Friday, 8AM-6PM to assist you with the application process.

Phone: 330-338-9346

Email: [email protected]

Hear From Our Drivers - Cam Trucking LLC

Hear From Our Drivers

Real stories from the Cam Trucking family

"I've been with Cam Trucking for 3 years now. The dispatch team is incredible - they always have loads when I need them and the support is 24/7. Best company I've ever worked for."
MR

Michael Rodriguez

Regional Driver, 3 years

"The $300 weekly lease is fair and transparent. No hidden fees like other companies. I'm home every weekend and making great money. Couldn't be happier with my decision to join."
SJ

Sarah Johnson

Local Driver, 1 year

"As a hotshot driver, the time-sensitive freight pays well and the company has great relationships with clients. The factoring at 2.75% is the best rate I've found anywhere."
TW

Thomas Wilson

Hotshot Driver, 2 years

Get In Touch

We're here to help you succeed on the road. Contact us for driver applications, dispatch services, or any questions.

Multiple Ways to Reach Us - Cam Trucking LLC

Multiple Ways to Reach Us

Choose the contact method that works best for you

Call Us

Speak directly with our team for immediate assistance with applications, dispatch, or general inquiries.

330-338-9346

Email Us

Send us detailed questions or documents. We respond to all emails within 24 hours.

[email protected]

Fill Contact Form

Complete our online form with your inquiry and we'll get back to you within 24 hours.

Fill Form Below
Contact Information - Cam Trucking LLC

Contact Information

Phone Numbers

330-338-9346 - General Inquiries

330-338-9347 - Dispatch (24/7)

330-338-9348 - Driver Recruitment

Email Addresses

[email protected] - General

[email protected] - Dispatch

[email protected] - Careers

Office Location

Cam Trucking LLC

123 Trucking Way

Monroe, MI 48161

Get Directions →

Business Hours

  • Monday - Friday8:00 AM - 6:00 PM
  • Saturday9:00 AM - 2:00 PM
  • SundayClosed
  • Dispatch24/7 Available
Visit Our Office - Cam Trucking LLC

Visit Our Office

Stop by our Monroe, MI headquarters to discuss your driving career, leasing options, or dispatch services. Our team is ready to welcome you and provide personalized assistance.

Cam Trucking LLC

123 Trucking Way
Monroe, MI 48161
United States

Parking Information

Ample parking available for personal vehicles and commercial trucks. Designated visitor parking near the main entrance.

Get Directions

24/7 Dispatch Emergency Line

For urgent freight issues, road emergencies, or immediate dispatch assistance

330-338-9347

Available 24 hours a day, 7 days a week for current drivers and clients


Schedule & Booking

Book truck pickups, dispatch services, and consultations quickly and easily. Get on the road faster with our streamlined booking process.

Choose Your Service - Cam Trucking LLC

Choose Your Service

Select the type of booking that matches your needs

Truck Pickup

Schedule freight pickup with our reliable box trucks, Sprinter vans, or hotshot trucks.

  • Next-day pickup available
  • Real-time tracking
  • Proof of delivery
  • Insurance included
2-4 hour pickup window
Book Pickup

Dispatch Services

Get dedicated dispatch support for your loads with our 24/7 professional team.

  • 24/7 availability
  • Load optimization
  • Client communication
  • Route planning
Immediate response
Get Dispatch

Consultation

Schedule a meeting with our team to discuss your trucking needs and solutions.

  • 30-60 minute sessions
  • Expert advice
  • Custom solutions
  • No obligation
Flexible scheduling
Book Meeting
// Add hover animation effects document.querySelectorAll('.booking-option').forEach(option => { option.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-10px)'; this.style.boxShadow = '0 15px 40px rgba(0,0,0,0.12)'; }); option.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; this.style.boxShadow = '0 8px 30px rgba(0,0,0,0.08)'; }); }); // Icon animation on scroll const observerOptions = { threshold: 0.2, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const options = entry.target.querySelectorAll('.booking-option'); options.forEach((option, index) => { setTimeout(() => { option.style.opacity = '0'; option.style.transform = 'translateY(30px)'; option.style.transition = 'all 0.6s ease'; setTimeout(() => { option.style.opacity = '1'; option.style.transform = 'translateY(0)'; }, 50); }, index * 150); }); observer.unobserve(entry.target); } }); }, observerOptions); // Observe the booking options const bookingOptions = document.querySelector('.booking-options'); if (bookingOptions) { observer.observe(bookingOptions); } // Button click handlers document.querySelectorAll('.cta-btn').forEach(btn => { btn.addEventListener('click', function(e) { e.preventDefault(); const serviceName = this.closest('.booking-option').querySelector('h3').textContent; console.log(`Selected service: ${serviceName}`); alert(`You selected: ${serviceName}\nThis would navigate to the booking form.`); }); }); // Feature list animation on card hover document.querySelectorAll('.booking-option').forEach(option => { option.addEventListener('mouseenter', function() { const features = this.querySelectorAll('.option-features li'); features.forEach((feature, index) => { setTimeout(() => { feature.style.transform = 'translateX(5px)'; feature.style.transition = 'transform 0.3s ease'; }, index * 50); }); }); option.addEventListener('mouseleave', function() { const features = this.querySelectorAll('.option-features li'); features.forEach(feature => { feature.style.transform = 'translateX(0)'; }); }); });
Booking Information - Cam Trucking LLC

Booking Information

Same-Day Bookings

For urgent same-day pickups, call our dispatch line directly at 330-338-9347. Same-day service subject to availability.

Response Time

We confirm all bookings within 2 hours during business hours. Evening and weekend bookings are confirmed the next business day.

Pricing & Quotes

All pricing is confirmed before service begins. Get instant quotes for standard routes or request custom pricing for special requirements.

Availability Schedule

  • Monday - Friday6:00 AM - 10:00 PMAvailable
  • Saturday7:00 AM - 6:00 PMAvailable
  • SundayEmergency OnlyLimited
  • HolidaysEmergency OnlyLimited
// Info card hover effects document.querySelectorAll('.info-card').forEach(card => { card.addEventListener('mouseenter', function() { this.style.transform = 'translateX(5px)'; this.style.boxShadow = '0 4px 15px rgba(0,0,0,0.08)'; }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateX(0)'; this.style.boxShadow = 'none'; }); }); // Availability list item hover effects document.querySelectorAll('.availability-list li').forEach(item => { item.addEventListener('mouseenter', function() { this.style.paddingLeft = '10px'; this.style.background = '#f8f9fa'; }); item.addEventListener('mouseleave', function() { this.style.paddingLeft = '0'; this.style.background = 'transparent'; }); }); // Intersection Observer for entrance animation const observerOptions = { threshold: 0.2, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const cards = entry.target.querySelectorAll('.info-card'); cards.forEach((card, index) => { setTimeout(() => { card.style.opacity = '0'; card.style.transform = 'translateX(-30px)'; card.style.transition = 'all 0.6s ease'; setTimeout(() => { card.style.opacity = '1'; card.style.transform = 'translateX(0)'; }, 50); }, index * 150); }); // Animate availability list const listItems = entry.target.querySelectorAll('.availability-list li'); listItems.forEach((item, index) => { setTimeout(() => { item.style.opacity = '0'; item.style.transform = 'translateY(20px)'; item.style.transition = 'all 0.5s ease'; setTimeout(() => { item.style.opacity = '1'; item.style.transform = 'translateY(0)'; }, 50); }, (cards.length * 150) + (index * 100)); }); observer.unobserve(entry.target); } }); }, observerOptions); // Observe the booking info card const bookingInfo = document.querySelector('.booking-info'); if (bookingInfo) { observer.observe(bookingInfo); } // Status badge animation document.querySelectorAll('.status').forEach(badge => { badge.addEventListener('mouseenter', function() { this.style.transform = 'scale(1.1)'; this.style.transition = 'transform 0.3s ease'; }); badge.addEventListener('mouseleave', function() { this.style.transform = 'scale(1)'; }); }); // Phone number click tracking document.querySelectorAll('a[href^="tel:"]').forEach(link => { link.addEventListener('click', function() { const phone = this.textContent; console.log(`User clicked to call: ${phone}`); }); });
Service Areas - Cam Trucking LLC

Service Areas

We provide reliable trucking services throughout the Midwest region

Local Service

Monroe County and surrounding areas within 50-mile radius. Same-day service available.

Regional Service

Throughout Michigan, Ohio, Indiana, Illinois, and Wisconsin. Next-day delivery guaranteed.

National Service

Coast-to-coast coverage with our partner network. Competitive rates for long-haul freight.

// Add hover animation effects document.querySelectorAll('.area-card').forEach(card => { card.addEventListener('mouseenter', function() { this.style.transform = 'translateY(-10px)'; this.style.boxShadow = '0 15px 40px rgba(0,0,0,0.12)'; }); card.addEventListener('mouseleave', function() { this.style.transform = 'translateY(0)'; this.style.boxShadow = '0 8px 30px rgba(0,0,0,0.08)'; }); }); // Icon animation on hover document.querySelectorAll('.area-icon').forEach(icon => { icon.addEventListener('mouseenter', function() { this.style.transform = 'scale(1.1) rotate(5deg)'; }); icon.addEventListener('mouseleave', function() { this.style.transform = 'scale(1) rotate(0deg)'; }); }); // Intersection Observer for entrance animation const observerOptions = { threshold: 0.2, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { const cards = entry.target.querySelectorAll('.area-card'); cards.forEach((card, index) => { setTimeout(() => { card.style.opacity = '0'; card.style.transform = 'translateY(30px)'; card.style.transition = 'all 0.6s ease'; setTimeout(() => { card.style.opacity = '1'; card.style.transform = 'translateY(0)'; }, 50); }, index * 200); }); observer.unobserve(entry.target); } }); }, observerOptions); // Observe the areas grid const areasGrid = document.querySelector('.areas-grid'); if (areasGrid) { observer.observe(areasGrid); } // Card click interaction document.querySelectorAll('.area-card').forEach(card => { card.addEventListener('click', function() { const serviceType = this.querySelector('h4').textContent; console.log(`Clicked on: ${serviceType}`); // You can add navigation or modal functionality here }); }); // Icon pulse animation on scroll window.addEventListener('scroll', function() { const icons = document.querySelectorAll('.area-icon'); icons.forEach((icon, index) => { const rect = icon.getBoundingClientRect(); const isVisible = rect.top < window.innerHeight && rect.bottom > 0; if (isVisible) { setTimeout(() => { icon.style.animation = 'iconPulse 0.6s ease-out'; }, index * 100); } }); }); // Add CSS animation dynamically const style = document.createElement('style'); style.textContent = ` @keyframes iconPulse { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } } `; document.head.appendChild(style);

Need Immediate Service?

For urgent same-day pickups or emergency dispatch services, call our 24/7 hotline

330-338-9347

Available 24 hours a day, 7 days a week for emergency services