Five Star Auto Body Vancouver WA | #1 Collision Repair Clark County | Expert Auto Body Shop /* Critical CSS */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-black: #1a1a1a; --accent-orange: #ff6b35; --light-gray: #f5f5f5; --medium-gray: #6c757d; --dark-gray: #2c2c2c; --white: #ffffff; --success: #28a745; --warning: #ffc107; --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15); } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--dark-gray); background: var(--white); } /* Typography */ h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; } h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 600; } h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 600; } h4 { font-size: 1.25rem; font-weight: 600; } p { font-size: 1.1rem; margin-bottom: 1rem; } /* Container */ .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; } nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 0; } .logo img { height: 50px; width: auto; } .nav-menu { display: flex; gap: 2rem; list-style: none; align-items: center; } .nav-menu > li { position: relative; } .nav-menu a { color: var(--dark-gray); text-decoration: none; font-weight: 500; transition: color 0.3s; position: relative; padding: 0; display: flex; align-items: center; gap: 5px; } .nav-menu a:hover { color: var(--accent-orange); } /* Dropdown Arrow */ .dropdown-arrow { font-size: 0.8rem; transition: transform 0.3s; } .nav-menu li:hover .dropdown-arrow { transform: rotate(180deg); } /* Dropdown Menu */ .dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 250px; box-shadow: var(--shadow-lg); border-radius: 10px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; margin-top: 10px; } .nav-menu li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown a { display: block; padding: 12px 20px; color: var(--dark-gray); transition: all 0.3s; border-bottom: 1px solid var(--light-gray); } .dropdown a:last-child { border-bottom: none; } .dropdown a:hover { background: rgba(255, 107, 53, 0.1); color: var(--accent-orange); padding-left: 25px; } .dropdown a:first-child { border-radius: 10px 10px 0 0; } .dropdown a:last-child { border-radius: 0 0 10px 10px; } /* CTA Button */ .cta-button { background: var(--accent-orange); color: var(--white); padding: 14px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; font-size: 1rem; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); text-align: center; min-height: 44px; } .cta-button:hover { background: var(--primary-black); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); } /* Hero Section */ .hero { background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(44,44,44,0.8)), url('https://assets.ycodeapp.com/assets/app112490/Images/hero%20picture-zzmqiitaum.webp') center/cover; color: var(--white); padding: 100px 0; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, transparent 50%, rgba(255, 107, 53, 0.2)); animation: pulse 4s ease-in-out infinite; } @keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } } .hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .hero h1 { margin-bottom: 1rem; line-height: 1.2; animation: fadeInUp 0.8s ease; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .hero-form { background: rgba(255,255,255,0.95); padding: 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); animation: slideInRight 0.8s ease; } @keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } } .hero-form h3 { color: var(--dark-gray); margin-bottom: 20px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; color: var(--dark-gray); margin-bottom: 5px; font-weight: 500; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 1rem; transition: border-color 0.3s; font-family: inherit; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-orange); } .form-group textarea { resize: vertical; min-height: 100px; } /* Trust Badges */ .trust-badges { background: var(--light-gray); padding: 40px 0; text-align: center; } .badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; align-items: center; margin-top: 30px; } .badge-item { background: var(--white); padding: 20px; border-radius: 15px; box-shadow: var(--shadow); transition: transform 0.3s; } .badge-item:hover { transform: translateY(-5px); } .badge-item img { max-width: 100%; height: 60px; object-fit: contain; } /* Services Section */ .services { padding: 80px 0; background: var(--white); } .services h2 { text-align: center; margin-bottom: 50px; color: var(--primary-black); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; align-items: stretch; } .service-card { background: var(--light-gray); padding: 40px 30px; border-radius: 20px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; text-decoration: none; color: var(--dark-gray); display: flex; flex-direction: column; height: 100%; } .service-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%); opacity: 0; transition: opacity 0.3s; } .service-card:hover::before { opacity: 0.1; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); } .service-card h3 { position: relative; z-index: 1; margin-bottom: 15px; } .service-card > p { position: relative; z-index: 1; flex-grow: 1; margin-bottom: 20px; } .service-features { margin: 20px 0; text-align: left; position: relative; z-index: 1; flex-shrink: 0; } .service-features p { margin: 8px 0; font-size: 0.95rem; color: var(--medium-gray); } .service-card .cta-button { position: relative; z-index: 1; margin-top: auto; align-self: center; } /* Locations Section */ .locations { padding: 80px 0; background: var(--light-gray); } .locations h2 { text-align: center; margin-bottom: 20px; color: var(--primary-black); } .locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 50px; align-items: stretch; } .location-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow); transition: all 0.3s; overflow: hidden; display: flex; flex-direction: column; height: 100%; } .location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .location-header { background: linear-gradient(135deg, var(--accent-orange), var(--primary-black)); color: var(--white); padding: 30px; text-align: center; flex-shrink: 0; } .location-header h3 { margin: 0 0 10px 0; font-size: 1.5rem; } .location-subtitle { margin: 0; opacity: 0.9; font-size: 1rem; } .location-details { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; } .contact-info { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 2px solid var(--light-gray); flex-shrink: 0; } .info-row { display: flex; margin-bottom: 12px; align-items: flex-start; } .info-label { font-weight: 600; color: var(--dark-gray); min-width: 70px; margin-right: 10px; } .info-value { flex: 1; color: var(--medium-gray); } .info-value a { color: var(--accent-orange); text-decoration: none; font-weight: 600; } .info-value a:hover { text-decoration: underline; } .service-areas { margin-bottom: 25px; flex-shrink: 0; } .service-areas h4 { color: var(--primary-black); margin-bottom: 10px; font-size: 1.1rem; } .service-areas p { color: var(--medium-gray); line-height: 1.5; } .location-services { flex-grow: 1; display: flex; flex-direction: column; } .location-services h4 { color: var(--primary-black); margin-bottom: 15px; font-size: 1.1rem; } .services-list { display: flex; flex-wrap: wrap; gap: 8px; flex-grow: 1; align-content: flex-start; } .service-tag { background: var(--light-gray); color: var(--dark-gray); padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; border: 2px solid transparent; transition: all 0.3s; } .service-tag:hover { background: var(--accent-orange); color: var(--white); border-color: var(--accent-orange); } .location-actions { padding: 0 30px 30px 30px; display: flex; gap: 15px; justify-content: center; flex-shrink: 0; margin-top: auto; } .location-actions .cta-button { flex: 1; text-align: center; padding: 12px 20px; } .additional-services { margin-top: 60px; display: flex; justify-content: center; } .mobile-service-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); text-align: center; max-width: 600px; border: 3px solid var(--accent-orange); } .mobile-service-card h4 { color: var(--primary-black); margin-bottom: 15px; font-size: 1.3rem; } .mobile-service-card p { color: var(--medium-gray); margin-bottom: 25px; line-height: 1.6; } /* Testimonials */ .testimonials { padding: 80px 0; background: var(--white); } .testimonial-card { background: var(--light-gray); padding: 40px; border-radius: 20px; margin: 20px 0; position: relative; } .testimonial-card::before { content: '"'; font-size: 4rem; color: var(--accent-orange); position: absolute; top: 10px; left: 20px; opacity: 0.3; } /* Live Chat Widget */ .chat-widget { position: fixed; bottom: 80px; right: 20px; z-index: 999; background: var(--accent-orange); color: var(--white); padding: 15px 20px; border-radius: 50px; cursor: pointer; box-shadow: var(--shadow-lg); animation: bounceIn 0.5s ease 3s both; font-weight: 600; transition: all 0.3s; } .chat-widget:hover { background: var(--primary-black); transform: translateY(-2px); } /* Progress Tracker */ .progress-tracker { background: var(--light-blue); padding: 60px 0; text-align: center; } .progress-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; } .progress-step { background: var(--white); padding: 30px 20px; border-radius: 15px; box-shadow: var(--shadow); position: relative; } .step-number { background: var(--accent-orange); color: var(--white); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 0 auto 15px; } /* Video Section */ .video-section { padding: 80px 0; background: var(--dark-gray); color: var(--white); text-align: center; } .video-container { max-width: 800px; margin: 0 auto; background: #000; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-lg); } .video-placeholder { aspect-ratio: 16/9; background: linear-gradient(45deg, #333, #555); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--accent-orange); } /* Gallery Section */ .gallery { padding: 80px 0; background: var(--white); } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; } .gallery-item { aspect-ratio: 4/3; background: var(--light-gray); border-radius: 15px; overflow: hidden; transition: transform 0.3s; cursor: pointer; } .gallery-item:hover { transform: scale(1.05); } /* Footer */ footer { background: var(--primary-black); color: var(--white); padding: 60px 0 20px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-section h4 { margin-bottom: 20px; color: var(--accent-orange); } .footer-section a { color: var(--white); text-decoration: none; display: block; margin-bottom: 10px; transition: color 0.3s; } .footer-section a:hover { color: var(--accent-orange); } /* Mobile Menu */ .mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-gray); } /* FAQ Section */ .faq { padding: 80px 0; background: var(--light-gray); } .faq-container { max-width: 800px; margin: 0 auto; } details { margin-bottom: 20px; padding: 20px; background: var(--white); border-radius: 10px; cursor: pointer; box-shadow: var(--shadow); } summary { font-weight: 600; list-style: none; position: relative; padding-right: 30px; } summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.5rem; color: var(--accent-orange); transition: transform 0.3s; } details[open] summary::after { transform: rotate(45deg); } /* Online Booking Section */ .booking-section { background: var(--accent-orange); color: var(--white); padding: 60px 0; text-align: center; } .booking-form { max-width: 600px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: 20px; color: var(--dark-gray); } /* Responsive */ @media (max-width: 768px) { .hero-content { grid-template-columns: 1fr; } .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background: var(--white); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0,0,0,0.05); padding: 20px 0; max-height: calc(100vh - 70px); overflow-y: auto; } .nav-menu.active { left: 0; } .mobile-menu-toggle { display: block; } .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 0; background: var(--light-gray); } .nav-menu li:hover .dropdown { transform: none; } .dropdown-arrow { display: none; } nav { padding: 1rem 0; } .progress-steps { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: 1fr 1fr; } /* Mobile location cards */ .locations-grid { grid-template-columns: 1fr; gap: 30px; } .location-header { padding: 25px 20px; } .location-details { padding: 25px 20px; } .location-actions { padding: 0 20px 25px 20px; flex-direction: column; } .location-actions .cta-button { flex: none; } .mobile-service-card { margin: 0 20px; padding: 30px 20px; } .services-list { justify-content: center; } .service-tag { font-size: 0.8rem; padding: 6px 12px; } } /* Loading Animation */ .loading { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s; } .loading.hidden { opacity: 0; pointer-events: none; } .spinner { width: 50px; height: 50px; border: 3px solid var(--light-gray); border-top: 3px solid var(--accent-orange); border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes bounceIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } } /* Utility Classes */ .text-center { text-align: center; } .mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .font-bold { font-weight: 600; }
Five Star Auto Body Vancouver WA - Expert Collision Repair
  • Services ▼
    Collision Repair Auto Body Repair Insurance Claims 24/7 Towing Paintless Dent Repair Frame Straightening
  • Locations ▼
    Vancouver WA Longview WA
  • About
  • Gallery
  • Reviews
  • Contact

Vancouver WA's #1 Auto Body Shop & Collision Repair Center

Expert collision repair in Vancouver WA, Clark County & Southwest Washington. OEM certified technicians, free estimates, lifetime warranty, and full insurance claims handling. Serving Battle Ground, Camas, Washougal, Ridgefield & Longview since 1995.

Get FREE Instant Quote (360) 695-1707

⭐⭐⭐⭐⭐ 4.9/5 Rating • 500+ Reviews • BBB A+ • All Insurance Accepted • OEM Certified

🚛 FREE Towing • 🚗 Rental Car Assistance • 🛡️ Lifetime Warranty

Get Your FREE Instant Estimate

Most estimates provided within 1 hour during business hours

* Required fields. We'll contact you within 1 business hour.

Vancouver WA's Most Trusted OEM Certified Auto Body Shop

Factory-authorized collision repair for all major vehicle manufacturers in Clark County & Southwest Washington

Mopar OEM Certified Auto Body Shop Vancouver WA

Mopar Certified

Chrysler, Dodge, Jeep, Ram Factory Authorized

Hyundai Certified Collision Repair Vancouver Washington

Hyundai Certified

Genesis & Hyundai OEM Parts & Procedures

Nissan Certified Auto Body Vancouver WA Clark County

Nissan Certified

Infiniti & Nissan Factory Standards

Kia Certified Collision Center Vancouver Washington

Kia Certified

OEM Certified Collision Repair Center

BBB A+

Better Business Bureau Accredited Since 1995

I-CAR Gold

Industry Gold Class Certification

Expert Auto Body Services in Vancouver WA & Clark County

Complete collision repair and auto body services for all makes and models throughout Southwest Washington

Collision Repair Vancouver WA

Expert collision repair services to restore your vehicle to pre-accident condition. Our OEM certified technicians in Vancouver WA use factory parts and procedures with a lifetime warranty on all collision repairs.

• Frame straightening & alignment

• Structural damage repair

• Computerized color matching

• OEM parts & procedures

Get Collision Repair Quote

Auto Body Repair Clark County

Complete auto body repair services including dent removal, scratch repair, and professional automotive painting. Serving all of Clark County with precision bodywork and guaranteed results.

• Dent repair & removal

• Scratch & scuff repair

• Panel replacement

• Paint restoration

Schedule Body Repair

Insurance Claims Vancouver WA

Full insurance claims handling for all major insurance companies. We work directly with State Farm, Allstate, GEICO, Progressive & more to make your claim process stress-free with direct billing available.

• Direct insurance billing

• Claims paperwork handling

• Adjuster coordination

• Rental car assistance

File Insurance Claim

24/7 Towing SW Washington

Emergency towing services available 24/7 throughout Southwest Washington, Clark County, and Cowlitz County. Safe vehicle transport directly to our Vancouver or Longview locations.

• 24/7 emergency response

• Flatbed & wheel-lift towing

• Accident scene cleanup

• Secure vehicle storage

Call Emergency Towing

Paintless Dent Repair

Advanced paintless dent repair for hail damage, door dings, and minor dents. Preserve your vehicle's original paint while restoring the perfect finish without repainting.

• Hail damage repair

• Door ding removal

• Preserve original paint

• Same-day service available

Get Dent Repair Quote

Frame Straightening

Precision frame straightening using computerized measuring systems. Restore structural integrity and safety after severe collision damage with our advanced frame repair equipment.

• Computerized frame analysis

• Laser measuring systems

• Structural integrity restoration

• Safety system recalibration

Schedule Frame Repair

Our Vancouver WA Auto Body Repair Process

Professional collision repair process ensuring quality results every time

1

Free Estimate

Detailed damage assessment and written estimate provided within 1 hour during business hours.

2

Insurance Coordination

We handle all insurance paperwork and work directly with your adjuster for seamless claims processing.

3

Professional Repair

OEM certified technicians restore your vehicle using factory parts and manufacturer-approved procedures.

4

Quality Control

Comprehensive inspection and road test ensure every repair meets our strict quality standards.

5

Vehicle Delivery

Complete vehicle detailing and final walkthrough before returning your perfectly repaired vehicle.

See Our Vancouver WA Auto Body Shop in Action

Take a virtual tour of our state-of-the-art collision repair facility

▶ Shop Tour Video Coming Soon

Advanced Equipment

  • • Computerized frame machines
  • • Laser measuring systems
  • • Downdraft paint booths
  • • Color matching technology

Expert Technicians

  • • I-CAR Gold certified
  • • OEM factory trained
  • • 20+ years experience
  • • Continuous education

Quality Assurance

  • • Multi-point inspections
  • • Road testing procedures
  • • Paint booth technology
  • • Customer satisfaction focus

Three Convenient Auto Body Shop Locations in Vancouver WA & Longview

Expert collision repair services throughout Clark County, Cowlitz County, and Southwest Washington

Vancouver WA - NE 68th Street

Our Main Collision Repair Center

Address: 3019 NE 68th St, Vancouver, WA 98665
Phone: (360) 695-1707
Hours: Monday - Friday: 8:00 AM - 5:00 PM

Areas We Serve:

Vancouver, Battle Ground, Camas, Washougal, Ridgefield, Brush Prairie, Hazel Dell, Salmon Creek, Orchards & all of Clark County

Services Available:

Complete Collision Repair Frame Straightening Advanced Paint Systems Insurance Claims
Get Directions Call Now

Vancouver WA - Columbia Street

Downtown Vancouver Location

Address: 1813 Columbia St, Vancouver, WA 98660
Phone: (360) 695-1707
Hours: Monday - Friday: 8:00 AM - 5:00 PM

Areas We Serve:

Downtown Vancouver, West Vancouver, Central Vancouver & greater Vancouver metropolitan area

Services Available:

Quick Estimates Dent Repair Paint Touch-Ups Consultations
Get Directions Call Now

Longview WA

Cowlitz County Service Center

Address: 760 Commerce Ave, Longview, WA 98682
Phone: (360) 695-1707
Hours: Monday - Friday: 8:00 AM - 5:00 PM

Areas We Serve:

Longview, Kelso, Castle Rock, Kalama, Woodland & all of Cowlitz County

Services Available:

Major Collision Repair Commercial Vehicles Fleet Services Emergency Towing
Get Directions Call Now

Can't Visit Our Shop?

We offer mobile damage assessment throughout Clark County and Cowlitz County. Our certified technicians will come to you for initial estimates and consultation.

Schedule Mobile Assessment

Vancouver WA Auto Body Repair Results - Before & After Gallery

See the quality collision repair work from our Vancouver WA and Longview auto body shops

Collision Repair
Before & After
Dent Removal
Showcase
Paint Matching
Results
Frame Repair
Excellence
Hail Damage
Restoration
Complete
Rebuilds
View Complete Gallery

What Vancouver WA & Clark County Customers Say About Five Star Auto Body

"Five Star Auto Body in Vancouver WA exceeded my expectations! They handled my insurance claim with State Farm, provided a rental car through Enterprise, and my Honda Accord looks brand new. The NE 68th Street team communicated with me every step of the way. Best auto body shop in Clark County!"

- Sarah M., Vancouver WA (Battle Ground area)

⭐⭐⭐⭐⭐ 5/5 Stars

"After my collision on I-205, I needed reliable collision repair in Vancouver Washington. Five Star Auto Body's Longview location made the entire process stress-free. They worked directly with Progressive Insurance and my Toyota Camry looks perfect - you can't even tell it was in an accident!"

- Mike R., Longview WA (Kelso area)

⭐⭐⭐⭐⭐ 5/5 Stars

"I've used Five Star Auto Body twice now for my family's vehicles - once at the Columbia Street location and once at NE 68th Street. Both times they were honest, efficient, and the quality was outstanding. They're our go-to auto body shop in Vancouver WA. The lifetime warranty gives us peace of mind!"

- Jennifer K., Camas WA

⭐⭐⭐⭐⭐ 5/5 Stars

"Hail damage hit our entire neighborhood in Washougal. Five Star Auto Body handled everything - from the insurance claim with Allstate to the paintless dent repair. They even helped coordinate with other neighbors who needed the same service. Professional and caring - exactly what you want from a local business."

- David & Susan T., Washougal WA

⭐⭐⭐⭐⭐ 5/5 Stars

Read All 500+ Reviews Leave a Review

Frequently Asked Questions - Vancouver WA Auto Body Shop

Do you work with all insurance companies in Vancouver WA?

Yes! We work with all major insurance companies including State Farm, Allstate, Progressive, GEICO, Farmers, USAA, Liberty Mutual, and many others. We're an approved repair facility for most major carriers and can handle your entire claim from start to finish. We also offer direct billing to make the process seamless for Vancouver WA and Clark County residents.

Do I need an appointment for a collision repair estimate in Vancouver WA?

No appointment needed! Visit any of our three convenient locations in Vancouver WA (NE 68th St or Columbia St) or Longview Monday-Friday between 8:00 AM and 5:00 PM for a free collision repair estimate. We'll assess the damage and provide a detailed written estimate on the spot. For faster service, you can also call ahead at (360) 695-1707.

How long does collision repair take at your Vancouver WA locations?

Most collision repairs are completed within 3-5 business days, depending on the extent of damage and parts availability. Complex frame damage or specialty vehicle repairs may take longer. We'll provide an accurate timeline during your estimate and keep you updated throughout the repair process. Our goal is to get Vancouver WA and Clark County residents back on the road safely and quickly.

What warranty do you offer on auto body repairs?

We offer a lifetime warranty on all collision and auto body repairs for as long as you own your vehicle. This comprehensive warranty covers both workmanship and paint, giving Vancouver WA customers confidence in our quality. Our warranty is honored at all three locations and is backed by our reputation of serving Southwest Washington since 1995.

Can you help arrange a rental car while my vehicle is being repaired?

Absolutely! We work with Enterprise Rent-A-Car and other rental agencies to provide convenient rental options for our Vancouver WA and Clark County customers. If your insurance includes rental coverage, we'll coordinate everything for you at no additional cost. We can also help arrange rental cars for customers paying out-of-pocket at competitive rates.

Do you provide free towing in Vancouver WA and Clark County?

Yes! We provide free towing to our shop for customers within our service area, which includes all of Vancouver WA, Clark County, and surrounding areas like Battle Ground, Camas, Washougal, and Ridgefield. Our 24/7 emergency towing service ensures your vehicle is safely transported to the nearest Five Star Auto Body location.

Are you OEM certified for collision repairs?

Yes! Five Star Auto Body is OEM certified by multiple manufacturers including Mopar (Chrysler, Dodge, Jeep, Ram), Hyundai, Nissan, and Kia. This means we use genuine factory parts and follow manufacturer-approved repair procedures to ensure your vehicle is restored to pre-accident condition. Our Vancouver WA technicians receive ongoing factory training to maintain these certifications.

What areas do you serve besides Vancouver WA?

We proudly serve all of Clark County Washington including Vancouver, Battle Ground, Camas, Washougal, Ridgefield, La Center, Brush Prairie, Hazel Dell, Salmon Creek, and Orchards. Our Longview location serves Cowlitz County including Longview, Kelso, Castle Rock, Kalama, and Woodland. We also provide services throughout Southwest Washington and can coordinate mobile estimates for customers who can't visit our shops.

Why Vancouver WA Chooses Five Star Auto Body for Collision Repair

Local family-owned business serving Southwest Washington since 1995

Local Vancouver WA Experts

Family-owned and operated in Vancouver WA since 1995. We understand Clark County roads, weather conditions, and insurance practices. Our reputation is built on serving our neighbors with integrity and excellence.

OEM Factory Certified

Factory-certified by Mopar, Hyundai, Nissan, and Kia for guaranteed quality repairs. We use genuine OEM parts and follow manufacturer procedures to maintain your vehicle's safety and warranty.

Fast 3-5 Day Turnaround

Most collision repairs completed in 3-5 days with our efficient workflow and skilled Vancouver WA technicians. We know you need your vehicle back quickly for work and family obligations.

Lifetime Warranty

We stand behind our collision repair work with a comprehensive lifetime warranty on all repairs and paint work. Your satisfaction and safety are guaranteed for as long as you own your vehicle.

Direct Insurance Billing

We handle all insurance paperwork and bill directly to your carrier to make the collision repair process hassle-free. Work with all major insurance companies serving Vancouver WA.

Three Convenient Locations

Three locations in Vancouver WA and Longview to serve you better. Choose the most convenient location or let us coordinate between locations for complex repairs and parts availability.

Schedule Your Vancouver WA Auto Body Service Online

Book your collision repair appointment 24/7 - We'll confirm within 1 business hour

Online Appointment Booking

Auto Body Services Vancouver WA

Collision Repair Vancouver WA Auto Body Repair Clark County Insurance Claims Vancouver WA 24/7 Towing SW Washington Paintless Dent Repair Frame Straightening Color Matching & Paint

Vancouver WA Locations & Service Areas

Vancouver WA - NE 68th St Vancouver WA - Columbia St Longview WA Battle Ground WA Camas WA Washougal WA Ridgefield WA All Clark County WA

Five Star Auto Body Info

About Our Vancouver WA Shop OEM Certifications Before & After Gallery Customer Reviews Careers in Vancouver WA Contact Information Auto Body Repair Blog

Contact Five Star Auto Body

Phone: (360) 695-1707

Email: info@fivestarvancouver.com

Hours: Monday-Friday: 8:00 AM - 5:00 PM

Emergency: 24/7 Towing Available

Service: Vancouver WA, Clark County, SW Washington

Established: Serving Vancouver WA since 1995

Facebook Google Maps Yelp Reviews

© 2025 Five Star Auto Body Vancouver WA. All rights reserved. | Privacy Policy | Terms of Service | Sitemap

Vancouver WA Auto Body Shop | Collision Repair Vancouver Washington | Clark County Auto Body | Southwest Washington Collision Center

💬 Chat with us!