Five Star Auto Body Customer Reviews | Auto Body Repair Testimonials Vancouver WA, Longview WA, Chehalis WA * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #374151; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Navigation */ .navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #f97316; z-index: 1000; padding: 0.25rem 0; } .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .nav-logo { display: flex; align-items: center; text-decoration: none; } .nav-logo img { height: 80px; width: auto; transition: transform 0.3s ease; } .nav-logo:hover img { transform: scale(1.05); } .nav-menu { display: flex; list-style: none; gap: 2rem; margin: 0; position: relative; } .nav-item { position: relative; } .dropdown { position: relative; } .dropdown-content { position: absolute; top: 100%; left: 0; background: white; min-width: 280px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border-radius: 12px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; margin-top: 0.5rem; border: 1px solid rgba(249, 115, 22, 0.1); } .dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown-content a { display: block; padding: 1rem 1.5rem; color: #374151; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: all 0.3s ease; border-radius: 8px; margin: 0.3rem; } .dropdown-content a:hover { background: linear-gradient(45deg, #f97316, #ea580c); color: white; transform: translateX(5px); } .nav-link { color: #374151; text-decoration: none; font-weight: 500; padding: 0.5rem 0; } .nav-link:hover { color: #f97316; } .nav-cta { background: #f97316; color: white; padding: 0.5rem 1rem; border-radius: 25px; text-decoration: none; font-weight: bold; } .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #374151; padding: 0.5rem; } .dropdown-toggle::after { content: ' ▼'; font-size: 0.8rem; margin-left: 0.5rem; transition: transform 0.3s ease; } .dropdown-toggle.active::after { transform: rotate(180deg); } /* Hero Section - Full Viewport */ .hero { background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://assets.ycodeapp.com/assets/app113220/Images/main%20exterior-bis4odmgjg.webp'); background-size: cover; background-position: center; background-attachment: fixed; color: white; height: 100vh; min-height: 100vh; text-align: center; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 100px 20px 20px; } .hero .container { position: relative; z-index: 2; width: 100%; max-height: calc(100vh - 140px); display: flex; flex-direction: column; justify-content: center; } .hero h1 { font-size: 3.2rem; font-weight: bold; margin-bottom: 1rem; line-height: 1.2; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); } .hero-subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; max-width: 800px; margin-left: auto; margin-right: auto; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } .hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 2rem auto 0; max-width: 800px; width: 100%; } .stat-item { background: rgba(255,255,255,0.15); padding: 1.5rem; border-radius: 15px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); transition: all 0.3s ease; position: relative; overflow: hidden; } .stat-item::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: left 0.8s ease; } .stat-item:hover::before { left: 100%; } .stat-item:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px) scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.3); } .stat-number { font-size: 2rem; font-weight: 800; color: #fed7aa; margin-bottom: 0.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); line-height: 1; } .stat-label { font-size: 0.9rem; font-weight: 600; line-height: 1.3; color: white; } .hero-cta { margin-top: 2.5rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; } .cta-button { display: inline-block; padding: 15px 30px; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 1.1rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .cta-primary { background: linear-gradient(45deg, #f97316, #ea580c); color: white; box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4); } .cta-secondary { background: transparent; color: white; border: 2px solid white; } .cta-button:hover { transform: translateY(-3px) scale(1.05); } .cta-primary:hover { box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5); } .cta-secondary:hover { background: white; color: #2563eb; } /* Sections */ .section { padding: 80px 0; } .section-title { text-align: center; font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; color: #2563eb; } .section-subtitle { text-align: center; font-size: 1.1rem; color: #6b7280; margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; } /* Featured Testimonials Section */ .testimonials { background: white; } .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1200px; margin: 0 auto; } .testimonial-card { background: linear-gradient(145deg, #ffffff, #f8fafc); padding: 2.5rem; border-radius: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(249, 115, 22, 0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; } .testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #f97316, #2563eb, #f97316); transform: translateX(-100%); transition: transform 0.6s ease; } .testimonial-card:hover::before { transform: translateX(0); } .testimonial-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .rating { display: flex; margin-bottom: 1.5rem; font-size: 1.2rem; color: #f97316; } .testimonial-text { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; flex-grow: 1; font-style: italic; } .customer-info { display: flex; align-items: center; gap: 1rem; margin-top: auto; } .customer-avatar { width: 50px; height: 50px; background: linear-gradient(45deg, #f97316, #ea580c); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 1.2rem; box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3); } .customer-details h4 { color: #2563eb; font-weight: 600; margin-bottom: 0.2rem; } .customer-details p { color: #6b7280; font-size: 0.9rem; } /* Location Reviews Section */ .location-reviews { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .location-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .location-review-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border: 1px solid rgba(249, 115, 22, 0.1); min-height: 400px; display: flex; flex-direction: column; } .location-review-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 25px 70px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .location-header { height: 120px; background: linear-gradient(135deg, #f97316, #2563eb); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; font-weight: 600; text-align: center; position: relative; overflow: hidden; } .location-header::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 1s ease; } .location-review-card:hover .location-header::before { left: 100%; } .location-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .location-rating { color: #f97316; font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; } .location-review-text { color: #6b7280; line-height: 1.6; font-size: 0.9rem; margin-bottom: 1rem; flex-grow: 1; font-style: italic; } .location-reviewer { color: #2563eb; font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; } .location-link { color: #f97316; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; } .location-link:hover { color: #2563eb; transform: translateX(5px); } /* Service Reviews Section */ .service-reviews { background: white; } .service-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .service-review-card { background: linear-gradient(145deg, #ffffff, #f8fafc); padding: 2rem; border-radius: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(249, 115, 22, 0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; text-align: center; } .service-review-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #f97316, #2563eb, #f97316); transform: translateX(-100%); transition: transform 0.6s ease; } .service-review-card:hover::before { transform: translateX(0); } .service-review-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .service-review-card h3 { font-size: 1.3rem; color: #2563eb; margin-bottom: 1rem; font-weight: 600; line-height: 1.3; } .service-rating { color: #f97316; font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; } .service-review-text { color: #6b7280; line-height: 1.6; font-size: 0.9rem; margin-bottom: 1.5rem; flex-grow: 1; font-style: italic; text-align: left; } .service-link { color: #f97316; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; justify-content: center; } .service-link:hover { color: #2563eb; transform: translateX(5px); } /* Google Reviews Section */ .google-reviews { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; } .google-reviews .section-title { color: #ffffff; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); font-weight: 800; } .google-reviews .section-subtitle { color: #e0e7ff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-weight: 500; } .google-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1000px; margin: 0 auto; } .google-review-card { text-align: center; padding: 3rem 2rem; background: rgba(255,255,255,0.15); border-radius: 25px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: center; } .google-review-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); opacity: 0; transition: opacity 0.4s ease; } .google-review-card:hover::before { opacity: 1; } .google-review-card:hover { transform: translateY(-15px) scale(1.05); background: rgba(255,255,255,0.2); box-shadow: 0 30px 80px rgba(0,0,0,0.3); } .google-review-card h3 { margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 600; line-height: 1.3; color: #fed7aa; } .google-review-card p { font-size: 1rem; line-height: 1.6; opacity: 0.9; margin-bottom: 2rem; } .google-link { color: #fed7aa; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center; padding: 12px 24px; border: 2px solid #fed7aa; border-radius: 25px; } .google-link:hover { background: #fed7aa; color: #2563eb; transform: translateY(-2px); } /* Satisfaction Metrics Section */ .satisfaction-metrics { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; } .metric-card { background: white; padding: 3rem 2rem; border-radius: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(249, 115, 22, 0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; align-items: center; text-align: center; } .metric-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #f97316, #2563eb, #f97316); transform: translateX(-100%); transition: transform 0.6s ease; } .metric-card:hover::before { transform: translateX(0); } .metric-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .metric-number { font-size: 3.5rem; font-weight: 800; color: #f97316; margin-bottom: 0.5rem; text-shadow: 2px 2px 4px rgba(249, 115, 22, 0.1); line-height: 1; } .metric-label { font-size: 1.3rem; font-weight: 600; color: #2563eb; margin-bottom: 1rem; line-height: 1.2; } .metric-description { color: #6b7280; line-height: 1.6; font-size: 1rem; } /* Contact Section */ .contact { background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #2563eb 100%); color: white; } .contact .section-title { color: #ffffff; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); font-weight: 800; } .contact .section-subtitle { color: #fed7aa; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-weight: 500; } .contact-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; max-width: 1200px; margin: 0 auto; } .contact-item { padding: 3rem 2rem; background: rgba(255,255,255,0.15); border-radius: 25px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; min-height: 240px; display: flex; flex-direction: column; justify-content: center; } .contact-item:hover { transform: translateY(-10px) scale(1.05); background: rgba(255,255,255,0.2); box-shadow: 0 25px 60px rgba(0,0,0,0.2); } .contact-item h3 { margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 600; line-height: 1.3; } .contact-item p { font-size: 1.1rem; line-height: 1.6; } .contact-item a { color: white; text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .contact-item a:hover { color: #fed7aa; text-shadow: 0 0 10px rgba(253, 215, 170, 0.5); } /* Footer */ .footer { background: #374151; color: white; padding: 3rem 0 2rem; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-section h3 { color: #f97316; margin-bottom: 1.5rem; font-size: 1.2rem; font-weight: 600; } .footer-section ul { list-style: none; } .footer-section li { margin-bottom: 0.8rem; } .footer-section a { color: white; text-decoration: none; opacity: 0.8; transition: all 0.3s ease; font-size: 0.95rem; } .footer-section a:hover { color: #f97316; opacity: 1; transform: translateX(3px); } .footer-bottom { border-top: 1px solid #6b7280; padding-top: 2rem; text-align: center; opacity: 0.7; font-size: 0.9rem; line-height: 1.6; } /* Mobile Responsive */ @media (max-width: 768px) { .mobile-menu-btn { display: block; } .nav-logo img { height: 60px; } .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border-top: 1px solid #e5e7eb; } .nav-menu.active { display: flex; } .nav-item { width: 100%; border-bottom: 1px solid #f3f4f6; } .nav-link { display: block; padding: 1rem 1.5rem; color: #374151; text-decoration: none; font-weight: 500; border: none; background: none; width: 100%; text-align: left; cursor: pointer; } .nav-link:hover { background: #f9fafb; color: #f97316; } .dropdown-content { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: #f8fafc; margin: 0; border-radius: 0; border: none; border-top: 1px solid #e5e7eb; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .dropdown.active .dropdown-content { max-height: 500px; } /* Mobile Hero */ .hero { height: 100vh; padding: 90px 15px 15px; background-attachment: scroll; } .hero h1 { font-size: 2rem; margin-bottom: 1rem; } .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; } .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem auto 0; max-width: 400px; } .stat-item { padding: 1rem; } .stat-number { font-size: 1.5rem; margin-bottom: 0.3rem; } .stat-label { font-size: 0.8rem; } .hero-cta { margin-top: 1.5rem; flex-direction: column; align-items: center; } .cta-button { padding: 12px 24px; font-size: 1rem; width: 100%; max-width: 280px; } /* All sections mobile */ .section { padding: 50px 0; } .section-title { font-size: 1.8rem; margin-bottom: 1rem; } .section-subtitle { font-size: 1rem; margin-bottom: 2rem; padding: 0 10px; } /* Mobile grids */ .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; } .testimonial-card { padding: 1.5rem; min-height: auto; } .location-reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; } .location-review-card { min-height: auto; } .service-reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; } .service-review-card { padding: 1.5rem; min-height: auto; } .google-reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; } .google-review-card { padding: 1.5rem; min-height: auto; } .metrics-grid { grid-template-columns: 1fr; gap: 1.5rem; } .metric-card { padding: 2rem 1.5rem; min-height: auto; } .metric-number { font-size: 2.5rem; } .metric-label { font-size: 1.1rem; } .contact-content { grid-template-columns: 1fr; gap: 1.5rem; } .contact-item { padding: 1.5rem; min-height: auto; } .footer-content { grid-template-columns: 1fr; gap: 2rem; } } @media (max-width: 480px) { .hero h1 { font-size: 1.6rem; line-height: 1.2; } .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.2rem; } .hero-stats { grid-template-columns: 1fr; gap: 0.8rem; max-width: 280px; } .stat-item { padding: 0.8rem; border-radius: 10px; } .stat-number { font-size: 1.2rem; } .stat-label { font-size: 0.75rem; } .cta-button { padding: 10px 20px; font-size: 0.9rem; } .section { padding: 40px 0; } .section-title { font-size: 1.5rem; } .section-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; } } @media (min-width: 1200px) { .hero-stats { max-width: 900px; gap: 2rem; } .stat-item { padding: 2rem; } .stat-number { font-size: 2.5rem; margin-bottom: 0.8rem; } .stat-label { font-size: 1rem; } .location-reviews-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } .service-reviews-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
Five Star Auto Body
  • About
  • Services
    Auto Body Repair Collision Repair
  • Locations
    Vancouver WA Longview WA Chehalis WA
  • Gallery
  • Reviews
  • Contact

Five Star Auto Body Customer Reviews

Read authentic customer testimonials and reviews from satisfied clients across Vancouver WA, Longview WA, and Chehalis WA. See why customers choose Five Star Auto Body for their collision repair and auto body needs.

4.9★
Average Rating
595
Customer Reviews
96%
Satisfaction Rate
4
WA Locations
Get Free Estimate View Our Work

Featured Customer Testimonials

Hear directly from our satisfied customers about their auto body repair and collision repair experiences at Five Star Auto Body

★★★★★
"Outstanding collision repair service! Five Star Auto Body restored my car to like-new condition after a major accident. The team was professional, kept me updated throughout the process, and worked directly with my insurance. Highly recommend for anyone needing quality auto body work in Vancouver."
SM

Sarah M.

Vancouver WA Customer

★★★★★
"Excellent auto body repair experience at the Longview location. They fixed my truck's dents and paint damage perfectly. The staff was knowledgeable, the work was completed on time, and the price was fair. Definitely the best auto body shop in the area."
MR

Mike R.

Longview WA Customer

★★★★★
"I was impressed with the quality of work at Five Star Auto Body in Chehalis. They handled my insurance claim seamlessly and the paint match was perfect. The customer service was exceptional - they went above and beyond to ensure I was satisfied with the repair."
JL

Jennifer L.

Chehalis WA Customer

Customer Reviews by Location

See what customers are saying about each of our Five Star Auto Body locations across Washington State

Vancouver - Columbia Street
4.9★ | 42 Reviews
"The Vancouver Columbia Street location provided excellent service. Fast, professional, and the quality of work exceeded my expectations. They made the insurance process easy and kept me informed every step of the way."
- David K.
View Location →
Vancouver - NE 68th Street
4.8★ | 418 Reviews
"Amazing auto body repair work at the NE 68th Street location. They fixed significant collision damage and the car looks brand new. Professional staff, fair pricing, and warranty on all work. Highly recommended!"
- Lisa H.
View Location →
Longview - Commerce Avenue
5.0★ | 124 Reviews
"Great experience at the Longview location. They repaired extensive damage from a collision and the finished product was flawless. The team was friendly, professional, and completed the work ahead of schedule."
- Robert T.
View Location →
Chehalis - N Market Boulevard
5.0★ | 11 Reviews
"Exceptional service at the Chehalis location. They handled my insurance claim perfectly and the auto body repair work was outstanding. The paint match was perfect and you can't even tell there was damage."
- Amanda P.
View Location →

Reviews by Service Type

Customer feedback on our specialized auto body repair and collision repair services across Washington

Collision Repair Reviews

★★★★★ 4.9/5 Average Rating
"After a serious accident, Five Star Auto Body's collision repair team worked miracles. They restored my vehicle to pre-accident condition using OEM parts and manufacturer-approved techniques. The frame straightening was perfect and all safety systems were properly calibrated. Professional service from start to finish."
Learn About Collision Repair →

Auto Body Repair Reviews

★★★★★ 4.8/5 Average Rating
"Outstanding auto body repair service for dent removal and paint restoration. The technicians at Five Star Auto Body are true craftsmen - the paint match was absolutely perfect and you can't tell where the damage was. Fast turnaround time and excellent customer service throughout the process."
Learn About Auto Body Repair →

Insurance Claims Reviews

★★★★★ 4.9/5 Average Rating
"Five Star Auto Body made dealing with my insurance claim completely stress-free. They handled all the paperwork, worked directly with my adjuster, and ensured I got the coverage I deserved. Their expertise in insurance procedures saved me time and money."
Get Insurance Help →

Customer Service Reviews

★★★★★ 4.9/5 Average Rating
"The customer service at Five Star Auto Body is exceptional. They kept me informed throughout the entire repair process, provided regular updates, and went above and beyond to ensure my satisfaction. Professional, friendly, and trustworthy team."
Learn About Our Team →

Google My Business Reviews

Visit our Google My Business profiles to read more customer reviews and see our locations

Vancouver Locations - Google Reviews

Read hundreds of authentic Google reviews from Vancouver area customers and see detailed ratings for our Columbia Street and NE 68th Street locations.

Read Reviews

Longview & Chehalis - Google Reviews

Discover what Longview and Chehalis customers are saying about their auto body repair experiences and browse our comprehensive Google Business profiles.

Read Reviews

Customer Satisfaction Metrics

Our commitment to excellence is reflected in our customer satisfaction scores and repeat business

96%
Customer Satisfaction
Of customers rate their Five Star Auto Body experience as excellent, with outstanding collision repair quality and customer service
82%
Customer Referrals
Of our new customers come from referrals, demonstrating the trust and satisfaction of our existing customer base
88%
Return Customers
Of customers return to Five Star Auto Body for future auto body repair needs and recommend us to family and friends

Experience Five Star Auto Body Service

Ready to see why our customers give us 5-star reviews? Contact Five Star Auto Body for expert collision repair and auto body services across Washington State.

Get Free Estimate

Vancouver: (360) 699-4887
Longview: (360) 353-3018
Chehalis: (360) 748-8344

Visit Our Locations

Vancouver WA Locations
Longview WA Location
Chehalis WA Location

See Our Work

Project Gallery
Auto Body Services
Collision Services

Services

  • Auto Body Repair
  • Collision Repair
  • Auto Body Vancouver
  • Auto Body Longview
  • Collision Vancouver
  • Collision Longview
  • Collision Chehalis

Locations

  • Vancouver WA
  • Longview WA
  • Chehalis WA
  • Commerce Avenue
  • NE 68th Street
  • N Market Blvd

Company

  • About Five Star Auto Body
  • Customer Reviews
  • Careers & Employment
  • Auto Body Blog
  • Project Gallery
  • Contact Us

Customer Reviews

  • All Customer Reviews
  • Collision Repair Reviews
  • Auto Body Reviews
  • Google My Business
  • Customer Testimonials

© 2024 Five Star Auto Body. All rights reserved.

Customer Reviews | Auto Body Repair Testimonials | Collision Repair Reviews Vancouver WA, Longview WA & Chehalis WA