Expert Collision Repair Services Washington | Vancouver, Longview, Chehalis | Five Star Auto Body * { 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-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 2rem auto 0; max-width: 800px; width: 100%; } .feature-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; } .feature-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; } .feature-item:hover::before { left: 100%; } .feature-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); } .feature-item span { display: block; font-size: 1.8rem; margin-bottom: 0.5rem; } .feature-item p { font-size: 0.9rem; font-weight: 600; line-height: 1.3; color: #fed7aa; } .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; } /* Services Section */ .services { background: white; } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1200px; margin: 0 auto; } .service-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: 320px; display: flex; flex-direction: column; justify-content: space-between; } .service-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-card:hover::before { transform: translateX(0); } .service-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-card h3 { font-size: 1.4rem; color: #2563eb; margin-bottom: 1.2rem; font-weight: 600; line-height: 1.3; } .service-card p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; flex-grow: 1; } .service-link { color: #f97316; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; } .service-link:hover { color: #2563eb; transform: translateX(5px); } /* Damage Types Section */ .damage-types { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .damage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .damage-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: 350px; display: flex; flex-direction: column; } .damage-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); } .damage-image { height: 160px; background: linear-gradient(135deg, #f97316, #2563eb); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 600; text-align: center; position: relative; overflow: hidden; } .damage-image::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; } .damage-card:hover .damage-image::before { left: 100%; } .damage-content { padding: 1.8rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .damage-card h3 { color: #2563eb; margin-bottom: 1rem; font-size: 1.2rem; font-weight: 600; line-height: 1.3; } .damage-card p { color: #6b7280; line-height: 1.6; font-size: 0.9rem; margin-bottom: 1.5rem; flex-grow: 1; } .damage-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; } .damage-link:hover { color: #2563eb; transform: translateX(5px); } /* Process Section */ .process { background: white; } .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .process-step { background: linear-gradient(145deg, #f8fafc, #e2e8f0); padding: 2.5rem; border-radius: 25px; text-align: center; box-shadow: 0 15px 50px 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; justify-content: center; } .process-step::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; } .process-step:hover::before { transform: translateX(0); } .process-step:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 70px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .step-number { width: 80px; height: 80px; background: linear-gradient(45deg, #f97316, #ea580c); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; margin: 0 auto 1.5rem; box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3); } .process-step h3 { font-size: 1.3rem; color: #2563eb; margin-bottom: 1.2rem; font-weight: 600; line-height: 1.3; } .process-step p { color: #6b7280; line-height: 1.6; font-size: 0.95rem; } /* Why Choose Section */ .why-choose { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; } .why-choose .section-title { color: #ffffff; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); font-weight: 800; } .why-choose .section-subtitle { color: #e0e7ff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-weight: 500; } .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; } .feature-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: 280px; display: flex; flex-direction: column; justify-content: center; } .feature-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; } .feature-card:hover::before { opacity: 1; } .feature-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); } .feature-card h3 { margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 600; line-height: 1.3; color: #fed7aa; } .feature-card p { font-size: 1rem; line-height: 1.6; opacity: 0.9; } /* Locations Section */ .locations { background: white; } .locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1200px; margin: 0 auto; } .location-card { background: linear-gradient(145deg, #ffffff, #f8fafc); border-radius: 25px; overflow: hidden; box-shadow: 0 20px 60px 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: 450px; display: flex; flex-direction: column; } .location-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 35px 90px rgba(0,0,0,0.18); border-color: rgba(249, 115, 22, 0.3); } .location-image { height: 160px; background: linear-gradient(135deg, #f97316, #2563eb); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 1rem; position: relative; overflow: hidden; } .location-image::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-card:hover .location-image::before { left: 100%; } .location-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .location-card h3 { color: #2563eb; margin-bottom: 1rem; font-size: 1.3rem; font-weight: 600; line-height: 1.3; } .location-details { color: #6b7280; margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.6; flex-grow: 1; } .location-details p { margin-bottom: 0.5rem; } .location-buttons { display: flex; flex-direction: column; gap: 0.8rem; margin-top: auto; } .btn-primary, .btn-secondary { padding: 0.8rem 1.5rem; border-radius: 25px; text-decoration: none; text-align: center; font-weight: 600; font-size: 0.95rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .btn-primary { background: linear-gradient(45deg, #f97316, #ea580c); color: white; box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4); } .btn-secondary { background: transparent; color: #2563eb; border: 2px solid #2563eb; } .btn-secondary:hover { background: #2563eb; color: white; transform: translateY(-2px); } /* 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-features { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem auto 0; max-width: 400px; } .feature-item { padding: 1rem; } .feature-item span { font-size: 1.5rem; margin-bottom: 0.3rem; } .feature-item p { 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 */ .services-grid { grid-template-columns: 1fr; gap: 1.5rem; } .service-card { padding: 1.5rem; min-height: auto; } .damage-grid { grid-template-columns: 1fr; gap: 1.5rem; } .damage-card { min-height: auto; } .process-grid { grid-template-columns: 1fr; gap: 1.5rem; } .process-step { padding: 1.5rem; min-height: auto; } .step-number { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 1rem; } .features-grid { grid-template-columns: 1fr; gap: 1.5rem; } .feature-card { padding: 1.5rem; min-height: auto; } .feature-icon { font-size: 3rem; margin-bottom: 1rem; } .locations-grid { grid-template-columns: 1fr; gap: 1.5rem; } .location-card { max-width: 400px; margin: 0 auto; min-height: auto; } .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-features { grid-template-columns: 1fr; gap: 0.8rem; max-width: 280px; } .feature-item { padding: 0.8rem; border-radius: 10px; } .feature-item span { font-size: 1.2rem; } .feature-item p { 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-features { max-width: 900px; gap: 2rem; } .feature-item { padding: 2rem; } .feature-item span { font-size: 2rem; margin-bottom: 0.8rem; } .feature-item p { font-size: 1rem; } .damage-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } .process-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

Expert Collision Repair Services in Washington State

Professional auto collision repair in Vancouver WA, Longview WA & Chehalis WA with certified I-CAR technicians, advanced frame straightening equipment, structural damage restoration, and comprehensive insurance claims support for all vehicle makes and models

✓

Same-Day Collision Estimates

✓

Insurance Direct Billing

✓

I-CAR Certified Technicians

✓

Lifetime Warranty

Call (360) 699-4887 Get Free Estimate

Comprehensive Collision Repair Services Washington

Complete auto collision repair and restoration services with manufacturer certifications, I-CAR training, and warranty guarantees across Vancouver WA, Longview WA, and Chehalis WA locations serving Clark County, Cowlitz County, and Lewis County communities

Major Collision Repair Vancouver WA

Expert collision repair for severe accident damage including structural repairs, frame straightening, and comprehensive restoration in Vancouver Washington. Our certified technicians handle major collision damage with precision using manufacturer-approved methods and state-of-the-art equipment to restore your vehicle to pre-accident condition safely and efficiently with complete insurance coordination.

Vancouver Collision Quote →

Frame Straightening Longview WA

Advanced frame straightening services using computerized measuring systems and hydraulic frame machines in Longview Washington. We restore structural integrity and proper alignment for collision-damaged vehicles with precision measurements ensuring your vehicle meets manufacturer safety specifications and operates correctly with certified welding and structural repair techniques.

Frame Repair Quote →

Structural Damage Repair Chehalis WA

Comprehensive structural damage repair for unibody and frame-on-frame vehicles using certified welding techniques and OEM replacement parts in Chehalis Washington. Our structural repair specialists ensure complete safety restoration with detailed documentation for insurance claims and warranty compliance using advanced diagnostic equipment and repair procedures.

Structural Repair Quote →

Types of Vehicle Collision Damage We Repair

Expert collision repair services for all types of vehicle damage from minor fender benders to major multi-vehicle collisions across Washington state with specialized expertise in structural damage, frame repair, and comprehensive restoration

Front End Collision

Front End Collision Damage

Complete front end collision repair including hood, bumper, headlights, grille, radiator support, and engine compartment damage restoration. Our technicians restore all front-end components with precision using OEM parts and manufacturer-approved repair procedures for safety and appearance restoration with advanced diagnostic equipment for hidden damage detection.

Front End Repair →
Side Impact T-Bone

Side Impact T-Bone Collision

Expert side impact collision repair for door panels, quarter panels, B-pillars, and structural components damaged in T-bone accidents. We restore side impact damage using advanced pulling equipment and certified welding techniques to ensure structural integrity and proper door alignment with comprehensive safety system inspection and restoration.

Side Impact Quote →
Rear End Collision

Rear End Collision

Professional rear end collision repair for trunk panels, bumpers, tail lights, rear quarter panels, and structural components damaged in rear-impact accidents. Our collision specialists restore rear impact damage with attention to detail ensuring proper fit, finish, and safety compliance with frame straightening when necessary.

Rear End Repair →
Multi-Vehicle Collision

Multi-Vehicle Collision

Comprehensive collision repair for vehicles involved in multi-car accidents with complex damage patterns affecting multiple vehicle areas. We handle extensive collision damage requiring coordination of multiple repair processes with detailed documentation for insurance purposes and comprehensive restoration to pre-accident condition.

Complex Collision →

Our Professional Collision Repair Process

Streamlined collision repair process with transparent communication, quality guarantees, and customer satisfaction from initial damage assessment to final delivery across all Washington state locations

1

Collision Damage Assessment

Comprehensive collision damage inspection using advanced diagnostic equipment to identify all structural and cosmetic damage with detailed repair estimates, timeline projections, and insurance coordination assistance for accurate damage documentation.

2

Insurance Coordination & Approval

Complete insurance claims processing and approval coordination with direct communication to insurance adjusters ensuring proper coverage for all collision repair work needed with transparent documentation and cost estimates for efficient claims resolution.

3

Professional Collision Repair

Expert collision repair work using manufacturer-approved techniques, OEM parts, and certified welding procedures with regular progress updates throughout the repair process and quality control checkpoints ensuring precision and safety compliance.

4

Quality Control & Delivery

Final quality inspection and customer walkthrough ensuring all collision repairs meet our high standards with complete documentation, warranty information provided, and customer satisfaction guaranteed before vehicle delivery and follow-up support.

Why Choose Five Star Auto Body for Collision Repair

Industry-leading collision repair expertise with certified technicians, advanced equipment, and guaranteed results across Washington state serving Vancouver, Longview, Chehalis and surrounding communities

Manufacturer Collision Certifications

Our collision repair facilities maintain certifications from major automotive manufacturers including Kia, FCA, Hyundai, and Nissan ensuring we meet strict quality standards for collision repair procedures, parts usage, and technician training with compliance to manufacturer specifications and warranty requirements for optimal repair quality.

Advanced Collision Repair Equipment

State-of-the-art collision repair equipment including computerized frame machines, precision measuring systems, professional paint booths, and ADAS calibration tools enabling us to restore even severely damaged vehicles to pre-accident condition with accuracy and quality guaranteed using the latest automotive repair technology.

I-CAR Certified Technicians

Our team consists exclusively of I-CAR certified collision repair technicians with extensive training and experience in modern vehicle construction, safety systems, and repair techniques ensuring professional results and customer satisfaction guaranteed with ongoing education and certification maintenance for industry excellence.

Professional Collision Repair Centers Across Washington State

Four strategically located collision repair facilities serving Vancouver WA, Longview WA, Chehalis WA and surrounding communities with certified I-CAR technicians, advanced equipment, and comprehensive insurance claim support for all collision repair needs

Vancouver NE 68th Street

Vancouver NE 68th Street Collision Center

Address: NE 68th Street, Vancouver, WA 98662

Phone: (360) 699-4887

Hours: Monday-Friday: 8:00 AM - 5:00 PM
Saturday: 10:00 AM - 2:00 PM

Services: Major collision repair and frame straightening, Advanced ADAS calibration systems, Computer color-matched paint refinishing

Service Area: Northeast Clark County, East Vancouver, Camas, Washougal, Battle Ground collision repair services

Vancouver NE Collision Services Call Now
Vancouver Columbia Street

Vancouver Columbia Street Auto Body

Address: Columbia Street, Vancouver, WA 98660

Phone: (360) 258-1612

Hours: Monday-Friday: 8:00 AM - 5:00 PM
Saturday: By appointment only

Services: Complex structural collision damage repair, Multi-vehicle accident restoration, Insurance adjuster coordination

Service Area: West Vancouver, Downtown Vancouver, Hazel Dell, Salmon Creek collision repair and auto body services

Vancouver West Collision Services Call Now
Longview Commerce Avenue

Longview Commerce Avenue Collision

Address: Commerce Avenue, Longview, WA 98632

Phone: (360) 353-3018

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

Services: Frame alignment and collision restoration, Commercial vehicle collision repair, Truck and heavy-duty vehicle services

Service Area: Cowlitz County, Longview, Kelso, Castle Rock, Woodland collision repair and auto body restoration

Longview Collision Services Call Now

Get Your Free Collision Repair Estimate Today

Professional collision repair estimates and insurance assistance available at all Washington locations with fast response guaranteed and transparent pricing for all collision repair services

Call Now for Estimate

Vancouver NE: (360) 699-4887
Vancouver West: (360) 258-1612
Longview: (360) 353-3018
Chehalis: (360) 748-8344

Find Nearest Location

Vancouver WA Locations
Longview WA Location
Chehalis WA Location
All Contact Information

Email for Quick Quote

info@fivestarvancouver.com
Send photos for fast estimates
Insurance claims assistance
Same-day response guaranteed

Collision Repair Services

  • Collision Repair
  • Vancouver Collision
  • Longview Collision
  • Chehalis Collision
  • Auto Body Repair
  • Repair Gallery
  • Customer Reviews

Washington Locations

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

Company Information

  • About Five Star Auto Body
  • Careers & Employment
  • Auto Body Blog
  • Contact Us

Contact Information

  • Vancouver NE: (360) 699-4887
  • Vancouver West: (360) 258-1612
  • Longview: (360) 353-3018
  • Chehalis: (360) 748-8344
  • Email: info@fivestarvancouver.com

© 2024 Five Star Auto Body - Expert Collision Repair Services Washington. All rights reserved.

Professional Collision Repair Vancouver WA | Longview WA | Chehalis WA | Certified I-CAR Technicians | Insurance Claims Support