Customer Reviews Five Star Auto Body Vancouver WA | 500+ Five Star Reviews | Clark County /* Reset and Base Styles */ * { 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; --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15); --success: #28a745; --warning: #ffc107; } html { font-size: 16px; scroll-behavior: smooth; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--dark-gray); background: var(--white); overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; } /* Typography */ h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; color: var(--primary-black); } h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; color: var(--primary-black); } h3 { font-size: clamp(1.3rem, 2.8vw, 1.8rem); font-weight: 600; line-height: 1.3; margin-bottom: 0.8rem; color: var(--primary-black); } h4 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 600; line-height: 1.3; margin-bottom: 0.6rem; color: var(--primary-black); } p { font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 1rem; line-height: 1.6; } /* Header */ header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; height: 80px; transition: all 0.3s ease; } nav { display: flex; justify-content: space-between; align-items: center; height: 80px; position: relative; padding: 0; } .logo { flex-shrink: 0; z-index: 1001; } .logo img { height: 50px; width: auto; max-width: 180px; } /* Navigation Menu */ .nav-menu { display: flex; gap: 2rem; align-items: center; justify-content: flex-end; list-style: none; margin: 0; padding: 0; } .nav-menu > li { position: relative; } .nav-menu a { color: var(--dark-gray); text-decoration: none; font-weight: 500; transition: all 0.3s; display: flex; align-items: center; gap: 5px; padding: 8px 0; } .nav-menu a:hover, .nav-menu a:focus { color: var(--accent-orange); } /* Dropdown Arrow */ .dropdown-arrow { font-size: 0.8rem; transition: transform 0.3s; margin-left: 5px; } /* Desktop Dropdown */ .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; z-index: 1000; } .nav-menu li:hover .dropdown, .nav-menu li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); } .nav-menu li:hover .dropdown-arrow, .nav-menu li:focus-within .dropdown-arrow { transform: rotate(180deg); } .dropdown a { padding: 12px 20px; font-size: 0.95rem; border-bottom: 1px solid var(--light-gray); display: block; width: 100%; } .dropdown a:hover, .dropdown a:focus { 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; border-bottom: none; } /* Mobile Menu Toggle */ .mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--dark-gray); padding: 8px; z-index: 1001; transition: all 0.3s; border-radius: 4px; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; position: relative; } .mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: rgba(255, 107, 53, 0.1); color: var(--accent-orange); } /* Hero Section */ .hero { background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(44,44,44,0.8)), url('data:image/svg+xml,Hero Video Placeholder - Reviews') center/cover; color: var(--white); padding: 80px 0; position: relative; min-height: 60vh; display: flex; align-items: center; } .hero-content { text-align: center; max-width: 900px; margin: 0 auto; } .hero h1 { color: var(--white); } .hero p { font-size: clamp(1.1rem, 2.2vw, 1.3rem); margin-bottom: 2rem; opacity: 0.95; } .star-rating { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 20px 0; font-size: clamp(1.5rem, 3vw, 2rem); } .stars { color: var(--warning); } .rating-text { color: var(--white); font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; } /* CTA Button */ .cta-button { background: var(--accent-orange); color: var(--white); padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: clamp(1rem, 2vw, 1.1rem); display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); border: none; cursor: pointer; min-height: 48px; } .cta-button:hover { background: var(--primary-black); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); } /* Review Stats */ .review-stats { padding: 80px 0; background: var(--white); } .section-intro { text-align: center; max-width: 800px; margin: 0 auto 40px; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .stat-card { background: var(--light-gray); padding: 40px 30px; border-radius: 20px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; /* Content is visible by default */ opacity: 1; transform: translateY(0); } .stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent-orange); } .stat-number { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: bold; color: var(--accent-orange); margin-bottom: 10px; line-height: 1; } .stat-label { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--primary-black); font-weight: 600; margin-bottom: 5px; } .stat-description { font-size: 0.9rem; color: var(--medium-gray); margin: 0; } /* Featured Reviews */ .featured-reviews { padding: 80px 0; background: var(--light-gray); } .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 40px; } .review-card { background: var(--white); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; position: relative; /* Content is visible by default */ opacity: 1; transform: translateY(0); } .review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .review-card::before { content: '"'; font-size: 4rem; color: var(--accent-orange); position: absolute; top: -10px; left: 20px; opacity: 0.3; } .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding-top: 10px; } .reviewer-avatar { width: 60px; height: 60px; background: var(--accent-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--white); font-size: 1.3rem; flex-shrink: 0; } .reviewer-info { flex: 1; } .reviewer-info h4 { margin: 0; color: var(--primary-black); } .reviewer-location { color: var(--medium-gray); font-size: 0.9rem; } .review-stars { color: var(--warning); font-size: 1.2rem; margin: 5px 0; } .review-content { color: var(--dark-gray); line-height: 1.7; margin-bottom: 20px; } .review-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--medium-gray); border-top: 1px solid var(--light-gray); padding-top: 15px; flex-wrap: wrap; gap: 10px; } .service-type { background: var(--accent-orange); color: var(--white); padding: 4px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; } /* Before After Gallery */ .before-after { padding: 80px 0; background: var(--white); } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 40px; } .gallery-item { background: var(--light-gray); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; position: relative; /* Content is visible by default */ opacity: 1; transform: translateY(0); } .gallery-item:hover { transform: scale(1.03); } .gallery-image { aspect-ratio: 4/3; background: var(--light-gray); display: flex; align-items: center; justify-content: center; border-bottom: 2px solid #e0e0e0; position: relative; } .image-placeholder { text-align: center; color: var(--medium-gray); font-weight: 600; padding: 20px; } .gallery-badge { position: absolute; top: 15px; left: 15px; background: var(--success); color: var(--white); padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; } .gallery-content { padding: 20px; text-align: center; } .gallery-content h4 { margin-bottom: 10px; color: var(--primary-black); } .gallery-content p { color: var(--medium-gray); font-size: 0.9rem; margin: 0; } /* Location Reviews */ .location-reviews { padding: 80px 0; background: var(--light-gray); } .locations-tabs { display: flex; justify-content: center; gap: 20px; margin: 40px 0; flex-wrap: wrap; } .location-tab { background: var(--white); color: var(--dark-gray); padding: 12px 25px; border-radius: 25px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: 2px solid transparent; } .location-tab:hover, .location-tab.active { background: var(--accent-orange); color: var(--white); text-decoration: none; } /* Review CTA */ .review-cta { padding: 80px 0; background: var(--primary-black); color: var(--white); text-align: center; } .review-cta h2 { color: var(--white); margin-bottom: 20px; } .review-cta p { font-size: clamp(1.1rem, 2.2vw, 1.3rem); margin-bottom: 40px; opacity: 0.9; } .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; } .cta-button.secondary { background: transparent; border: 2px solid white; } .cta-button.secondary:hover { background: var(--white); color: var(--primary-black); } /* Footer */ footer { background: var(--primary-black); color: var(--white); padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-section h4 { color: var(--accent-orange); margin-bottom: 20px; } .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); } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #444; } /* Mobile Responsive */ @media (max-width: 1023px) { .mobile-menu-toggle { display: flex !important; } .nav-menu { position: fixed !important; top: 80px !important; left: -100% !important; width: 100vw !important; height: calc(100vh - 80px) !important; background: var(--white) !important; flex-direction: column !important; justify-content: flex-start !important; align-items: center !important; transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important; overflow-y: auto !important; padding: 20px 0 !important; gap: 0 !important; z-index: 9998 !important; visibility: hidden !important; opacity: 0 !important; } .nav-menu.active { left: 0 !important; visibility: visible !important; opacity: 1 !important; } .nav-menu > li { width: 100% !important; text-align: center !important; border-bottom: 1px solid var(--light-gray) !important; position: relative !important; } .nav-menu > li:last-child { border-bottom: none !important; } .nav-menu a { padding: 16px 20px !important; font-size: 1.1rem !important; min-height: 48px !important; width: 100% !important; justify-content: center !important; } .dropdown { position: static !important; background: var(--light-gray) !important; width: 100% !important; box-shadow: none !important; border-radius: 0 !important; opacity: 0 !important; max-height: 0 !important; overflow: hidden !important; transition: all 0.3s ease !important; margin: 0 !important; z-index: auto !important; } .nav-menu li:hover .dropdown, .nav-menu li:focus-within .dropdown, .nav-menu li.dropdown-open .dropdown { opacity: 1 !important; max-height: 300px !important; } .dropdown a { padding: 12px 30px !important; font-size: 1rem !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; background: var(--light-gray) !important; } .dropdown a:hover, .dropdown a:focus { background: var(--accent-orange) !important; color: var(--white) !important; padding-left: 35px !important; } } @media (min-width: 1024px) { .mobile-menu-toggle { display: none !important; } .nav-menu { position: static !important; visibility: visible !important; opacity: 1 !important; flex-direction: row !important; width: auto !important; height: auto !important; background: transparent !important; transition: none !important; } } @media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .reviews-grid { grid-template-columns: 1fr; gap: 25px; } .gallery-grid { grid-template-columns: 1fr; gap: 20px; } .locations-tabs { flex-direction: column; align-items: center; gap: 15px; } .cta-buttons { flex-direction: column; align-items: center; } .cta-buttons .cta-button { width: 100%; max-width: 300px; } .review-meta { flex-direction: column; align-items: flex-start; gap: 10px; } } @media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .star-rating { flex-direction: column; gap: 5px; } .hero { padding: 60px 0; } .review-stats, .featured-reviews, .before-after, .location-reviews, .review-cta { padding: 60px 0; } } /* Animation Enhancement (Progressive Enhancement) */ .animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; } .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
Five Star Auto Body Vancouver WA - Expert Collision Repair
  • Services ▼
    Vancouver WA Collision Vancouver WA Auto Body Longview WA Collision Longview WA Auto Body
  • Locations ▼
    NE 68th Street Columbia Street Commerce Avenue
  • About
  • Reviews
  • Blog
  • Contact
  • Careers

Customer Reviews Five Star Auto Body

See why over 500 Vancouver WA and Southwest Washington customers trust Five Star Auto Body for their collision repair and auto body needs. Real reviews from real customers across Clark County and Cowlitz County.

⭐⭐⭐⭐⭐
4.9/5 Stars • 500+ Reviews
Get Your Free Estimate

Trusted by Vancouver WA & Southwest Washington

Our numbers speak for themselves. Over three decades of serving Clark County and Cowlitz County with exceptional collision repair and auto body services.

4.9
Average Rating
Out of 5 stars from verified customers
500+
Customer Reviews
Across Google, Yelp, and Facebook
95%
5-Star Reviews
Customers rating us excellent
30+
Years in Business
Serving Vancouver WA since 1995
3
Convenient Locations
Vancouver & Longview facilities
100%
Customer Satisfaction
Lifetime warranty on all work

What Our Customers Say

Read real testimonials from Vancouver WA, Clark County, and Southwest Washington customers who experienced our exceptional collision repair and auto body services.

SM

Sarah M.

Vancouver, WA (Battle Ground area)
⭐⭐⭐⭐⭐
"Five Star Auto Body 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!"
January 2025 Collision Repair
MR

Mike R.

Longview, WA (Kelso area)
⭐⭐⭐⭐⭐
"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!"
December 2024 Insurance Claim
JK

Jennifer K.

Camas, WA
⭐⭐⭐⭐⭐
"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!"
December 2024 Auto Body Repair
DT

David & Susan T.

Washougal, WA
⭐⭐⭐⭐⭐
"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."
November 2024 Hail Damage
RM

Robert M.

Ridgefield, WA
⭐⭐⭐⭐⭐
"My truck was rear-ended on Highway 14 and the damage looked extensive. Five Star Auto Body in Vancouver WA not only fixed everything perfectly but also worked with my insurance to get me a fair settlement. The frame straightening work was flawless. Highly recommend!"
October 2024 Frame Repair
LC

Lisa C.

Battle Ground, WA
⭐⭐⭐⭐⭐
"The paint work on my BMW was absolutely perfect. Five Star Auto Body matched the color exactly and you cannot tell where the repair was done. Their attention to detail is incredible. The Columbia Street location staff was professional and kept me informed throughout the entire process."
September 2024 Paint Repair

Before & After: Our Work Speaks for Itself

See the incredible transformations our expert technicians achieve at our Vancouver WA and Longview locations. From minor dents to major collision damage, we restore vehicles to like-new condition.

5-Star Result
Rear-End Collision
Honda Accord
Before & After

Complete Rear-End Repair

Sarah M. - Vancouver WA customer amazed by the perfect restoration

Perfect Match
BMW Paint Repair
Color Matching
Flawless Finish

Custom Paint Matching

Lisa C. - Battle Ground customer's BMW restoration

Frame Perfect
Truck Frame Repair
Structural Work
Expert Restoration

Frame Straightening Excellence

Robert M. - Ridgefield customer's truck completely restored

Hail Damage
Hail Damage Repair
Paintless Dent
No Paint Needed

Hail Damage Restoration

David & Susan T. - Washougal neighborhood project

Side Impact
Side Panel Repair
Door Replacement
Complete Restoration

Side Impact Collision

Major damage completely repaired to factory specifications

OEM Quality
Multiple Panel
Replacement
Factory Standards

Multi-Panel Restoration

Complex collision repair using OEM parts and procedures

Reviews by Location

Each of our three locations consistently delivers five-star service. Browse reviews specific to our Vancouver WA and Longview auto body shops.

All Locations Vancouver NE 68th St Vancouver Columbia St Longview Commerce Ave
BW

Brandon W.

Vancouver, WA (Salmon Creek)
⭐⭐⭐⭐⭐
"The NE 68th Street location handled my Ford F-150 perfectly after a parking lot collision. The team there knows their stuff and treated me like family. Fast turnaround and excellent communication throughout the entire repair process."
January 2025 NE 68th St
AS

Amanda S.

Vancouver, WA (Downtown)
⭐⭐⭐⭐⭐
"I love the Columbia Street location - so convenient for downtown Vancouver. Quick estimate process and they completed my bumper repair faster than expected. Professional staff and clean facility. Will definitely return if needed."
December 2024 Columbia St
KC

Kevin C.

Kelso, WA
⭐⭐⭐⭐⭐
"The Longview Commerce Avenue location is top-notch. They handle a lot of the bigger collision jobs and their equipment is impressive. My van was totaled in appearance but they brought it back to perfect condition. Amazing work!"
November 2024 Commerce Ave

Share Your Five Star Experience

Had a great experience with Five Star Auto Body? We'd love to hear about it! Your review helps other Vancouver WA and Southwest Washington drivers find quality collision repair they can trust.

Leave a Review Get Your Free Estimate

Auto Body Services

Vancouver WA Collision Repair Vancouver WA Auto Body Longview WA Collision Repair Longview WA Auto Body

Locations

NE 68th Street Vancouver Columbia Street Vancouver Commerce Avenue Longview

Company

About Five Star Auto Body Customer Reviews Project Gallery Careers

Contact Information

(360) 699-4887 info@fivestarvancouver.com

Monday - Friday: 8:00 AM - 5:00 PM
Serving Southwest Washington Since 1995

© 2025 Five Star Auto Body. All rights reserved. Vancouver WA's most reviewed collision repair experts.