Project Gallery Five Star Auto Body Vancouver WA | Before & After Collision Repair Photos /* 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; --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; --info: #17a2b8; } 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 - Project Gallery') 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; } .gallery-stats { display: flex; justify-content: center; gap: 40px; margin: 30px 0; flex-wrap: wrap; } .stat-item { text-align: center; color: var(--white); } .stat-number { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: bold; color: var(--accent-orange); line-height: 1; } .stat-label { font-size: clamp(0.9rem, 1.8vw, 1.1rem); opacity: 0.9; margin-top: 5px; } /* 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); } /* Filter Section */ .gallery-filters { padding: 60px 0; background: var(--white); } .filter-tabs { display: flex; justify-content: center; gap: 15px; margin: 40px 0; flex-wrap: wrap; } .filter-tab { background: var(--light-gray); color: var(--dark-gray); padding: 12px 24px; border-radius: 25px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: 2px solid transparent; cursor: pointer; } .filter-tab:hover, .filter-tab.active { background: var(--accent-orange); color: var(--white); text-decoration: none; transform: translateY(-2px); } /* Project Grid */ .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; margin-top: 40px; } .project-card { background: var(--light-gray); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; position: relative; cursor: pointer; } .project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .project-images { position: relative; aspect-ratio: 16/10; background: var(--light-gray); overflow: hidden; } .before-after-container { position: relative; width: 100%; height: 100%; display: flex; } .before-image, .after-image { width: 50%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; background: var(--light-gray); } .before-image { border-right: 2px solid var(--white); } .image-placeholder { text-align: center; color: var(--medium-gray); font-weight: 600; padding: 20px; line-height: 1.3; } .image-label { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.8); color: var(--white); padding: 4px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; } .project-badge { position: absolute; top: 15px; right: 15px; background: var(--accent-orange); color: var(--white); padding: 6px 12px; border-radius: 15px; font-size: 0.85rem; font-weight: 600; } .project-info { padding: 25px; } .project-info h4 { color: var(--primary-black); margin-bottom: 10px; } .project-description { color: var(--medium-gray); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.5; } .project-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--medium-gray); border-top: 1px solid #e0e0e0; padding-top: 15px; } .project-location { display: flex; align-items: center; gap: 5px; } .project-type { background: var(--info); color: var(--white); padding: 4px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; } /* Featured Projects */ .featured-projects { padding: 80px 0; background: var(--light-gray); } .featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; margin-top: 40px; } .featured-project { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); transition: transform 0.3s; } .featured-project:hover { transform: scale(1.02); } .featured-project .project-images { aspect-ratio: 3/2; } .testimonial-section { padding: 20px 25px; border-top: 3px solid var(--accent-orange); } .customer-quote { font-style: italic; color: var(--dark-gray); margin-bottom: 15px; line-height: 1.6; } .customer-info { display: flex; align-items: center; gap: 10px; } .customer-name { font-weight: 600; color: var(--primary-black); } .customer-rating { color: var(--warning); font-size: 0.9rem; } /* Process Section */ .repair-process { padding: 80px 0; background: var(--white); } .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .process-step { text-align: center; padding: 30px 20px; background: var(--light-gray); border-radius: 20px; position: relative; transition: transform 0.3s; } .process-step:hover { transform: translateY(-3px); } .step-number { background: var(--accent-orange); color: var(--white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; margin: 0 auto 20px; } .step-icon { font-size: 2.5rem; margin-bottom: 15px; } .step-title { font-size: 1.2rem; font-weight: 600; color: var(--primary-black); margin-bottom: 10px; } .step-description { color: var(--medium-gray); font-size: 0.95rem; line-height: 1.5; } /* CTA Section */ .gallery-cta { padding: 80px 0; background: var(--primary-black); color: var(--white); text-align: center; } .gallery-cta h2 { color: var(--white); margin-bottom: 20px; } .gallery-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; } /* 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; } /* Ensure content is visible by default */ .project-card, .featured-project, .process-step { opacity: 1; transform: translateY(0); } /* 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 a { padding: 16px 20px !important; font-size: 1.1rem !important; min-height: 48px !important; width: 100% !important; justify-content: center !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; } } @media (max-width: 768px) { .projects-grid { grid-template-columns: 1fr; gap: 25px; } .featured-grid { grid-template-columns: 1fr; gap: 30px; } .process-grid { grid-template-columns: 1fr; gap: 25px; } .filter-tabs { gap: 10px; } .filter-tab { padding: 10px 18px; font-size: 0.9rem; } .gallery-stats { gap: 20px; } .cta-buttons { flex-direction: column; align-items: center; } .cta-buttons .cta-button { width: 100%; max-width: 300px; } } @media (max-width: 480px) { .projects-grid { grid-template-columns: 1fr; margin-top: 30px; } .hero { padding: 60px 0; } .gallery-filters, .featured-projects, .repair-process, .gallery-cta { padding: 60px 0; } .gallery-stats { flex-direction: column; gap: 15px; } }
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

Project Gallery Vancouver WA

Explore our impressive portfolio of collision repair and auto body transformations. See how our expert technicians at Vancouver WA and Longview locations restore vehicles to like-new condition.

500+ Projects Completed
30+ Years Experience
100% Customer Satisfaction
Get Your Free Estimate

Browse Our Work by Category

Filter our project gallery to see specific types of collision repair and auto body work completed at our Vancouver WA and Longview locations.

BEFORE
Rear-End Collision
2022 Honda Accord
Severe trunk damage
AFTER
Perfect Restoration
Like New Condition
Flawless finish
Collision

Honda Accord Rear-End Collision Repair

Complete rear-end restoration including trunk replacement, bumper repair, and paint matching. Customer was amazed by the perfect color match and finish quality.

📍 Vancouver NE 68th St
Insurance Claim
BEFORE
BMW Paint Damage
Scratched Panels
Multiple areas
AFTER
Perfect Paint Match
Showroom Quality
Invisible repair
Paint Work

BMW Custom Paint Matching & Repair

Complex paint matching on metallic finish BMW. Multiple panel repair with perfect color and texture matching. Customer from Battle Ground was thrilled with results.

📍 Vancouver Columbia St
Paint Repair
BEFORE
Truck Frame Damage
Structural Issues
Safety concern
AFTER
Frame Straightened
Factory Specs
Safe & strong
Frame Work

Truck Frame Straightening & Repair

Major frame damage from Highway 14 collision. Complete frame straightening using computerized measuring equipment. Restored to factory safety specifications.

📍 Longview Commerce Ave
Frame Repair
BEFORE
Hail Damage
Multiple Dents
Roof & hood
AFTER
Paintless Repair
Perfect Surface
No paint needed
Hail Repair

Paintless Dent Repair - Hail Damage

Extensive hail damage from Washougal storm. Paintless dent repair preserved original factory finish while removing all dents. Insurance claim handled seamlessly.

📍 Vancouver NE 68th St
Hail Damage
BEFORE
Side Impact Damage
Door Replacement
Airbag deployment
AFTER
Complete Restoration
OEM Parts Used
Factory quality
Major Collision

Side Impact Collision - Multiple Panel Replacement

Complex side impact repair involving door replacement, quarter panel work, and airbag system restoration. All OEM parts used to maintain warranty coverage.

📍 Vancouver Columbia St
Major Repair
BEFORE
Classic Car Project
Rust & Damage
Restoration needed
AFTER
Show Quality Finish
Better Than New
Award winning
Restoration

Classic Car Full Restoration

Complete restoration of vintage vehicle including rust repair, metal fabrication, and show-quality paint. Customer drove from Portland for our expertise.

📍 Longview Commerce Ave
Custom Work
BEFORE
Parking Lot Damage
Multiple Scratches
Vandalism repair
AFTER
Perfect Finish
Invisible Repair
Like never happened
Vandalism

Vandalism Repair - Multiple Panel Paint

Extensive scratch damage from parking lot vandalism. Multiple panel paint work with perfect color matching across different lighting conditions.

📍 Vancouver NE 68th St
Insurance Claim
BEFORE
SUV Front End
Airbag Deployment
Safety systems
AFTER
Complete Restoration
All Systems Working
Safety certified
Front End

SUV Front-End Collision with Airbag Deployment

Major front-end collision repair including radiator, condenser, and safety system restoration. All airbag systems properly reset and tested.

📍 Longview Commerce Ave
Major Collision
BEFORE
Luxury Vehicle
Premium Paint
High-end finish
AFTER
Concours Quality
Mirror Finish
Exceeds OEM
Luxury

Luxury Vehicle Paint Correction & Enhancement

High-end paint correction and enhancement on luxury vehicle. Multi-stage polishing and ceramic coating application for ultimate protection and shine.

📍 Vancouver Columbia St
Premium Service

Customer Success Stories

See detailed transformations and hear directly from our satisfied customers across Vancouver WA, Clark County, and Southwest Washington.

BEFORE
Severe Damage
I-205 Collision
Progressive Insurance
AFTER
Perfect Restoration
Undetectable Repair
5-Star Result
Featured

Toyota Camry - Complete Collision Restoration

Major collision damage from I-205 accident involving multiple panels, frame work, and paint restoration. Insurance claim handled from start to finish.

📍 Longview Commerce Ave
Insurance Claim

"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. - Kelso, WA ⭐⭐⭐⭐⭐
BEFORE
Storm Damage
Hail Throughout
Allstate Claim
AFTER
Paintless Perfection
Original Finish
Neighborhood Hero
Hail Expert

Washougal Hail Storm - Neighborhood Project

Coordinated repair of multiple vehicles from severe hail storm. Paintless dent repair preserved factory finishes while working with various insurance companies.

📍 Vancouver NE 68th St
Storm Damage

"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."

David & Susan T. - Washougal, WA ⭐⭐⭐⭐⭐

Our Expert Repair Process

See how we consistently deliver outstanding results through our proven collision repair and auto body restoration process at all Vancouver WA and Longview locations.

1
📋
Initial Assessment
Comprehensive damage evaluation and detailed estimate preparation with insurance coordination
2
🔧
Disassembly & Prep
Careful disassembly and surface preparation using industry-leading techniques and equipment
3
⚒️
Structural Repair
Frame straightening and structural repairs using computerized measuring systems
4
🎨
Paint & Finish
Expert color matching and multi-stage paint application in our controlled environment
5
✅
Quality Control
Thorough inspection and testing to ensure all systems function perfectly
6
🚗
Final Delivery
Complete vehicle detailing and customer walkthrough with lifetime warranty

Ready to Restore Your Vehicle?

Join hundreds of satisfied customers across Vancouver WA and Southwest Washington who trust Five Star Auto Body for expert collision repair and auto body services. Get your free estimate today!

Get Free Estimate Schedule Consultation

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 premier auto body project gallery.