Collision Repair Vancouver WA | Five Star Auto Body | Clark County Collision Center | OEM Certified /* 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; } 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; } .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; } .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)), var(--dark-gray); color: var(--white); padding: 80px 0; position: relative; min-height: 70vh; display: flex; align-items: center; } .hero-content { max-width: 900px; width: 100%; } .hero h1 { color: var(--white); } .hero p { font-size: clamp(1.1rem, 2.2vw, 1.3rem); margin-bottom: 2rem; opacity: 0.95; } .hero-stats { display: flex; gap: 30px; margin: 30px 0; flex-wrap: wrap; } .hero-stat { text-align: center; } .hero-stat-number { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: bold; color: var(--accent-orange); display: block; } .hero-stat-label { font-size: 0.9rem; opacity: 0.9; } /* 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); } .cta-buttons { display: flex; gap: 20px; flex-wrap: wrap; } /* Services Section */ .services { padding: 80px 0; background: var(--white); } .section-intro { max-width: 800px; margin: 0 auto 40px; text-align: center; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; } .service-card { background: var(--light-gray); border-radius: 20px; padding: 30px 25px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 300px; /* Ensure visibility */ opacity: 1 !important; transform: translateY(0) !important; } .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent-orange); } .service-card h3 { margin-top: 0; } .service-card h3 { margin-bottom: 15px; color: var(--primary-black); } .service-card p { color: var(--medium-gray); flex-grow: 1; margin-bottom: 20px; } .service-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; } .service-features li { padding: 5px 0; position: relative; padding-left: 20px; color: var(--medium-gray); } .service-features li:before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: bold; } /* Process Section */ .process { padding: 80px 0; background: var(--light-gray); } .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; } .process-step { background: var(--white); border-radius: 20px; padding: 30px 25px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; position: relative; /* Ensure visibility */ opacity: 1 !important; transform: translateY(0) !important; } .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; margin: 0 auto 20px; font-size: 1.3rem; } .process-step h4 { margin-bottom: 15px; color: var(--primary-black); } .process-step p { color: var(--medium-gray); margin: 0; } /* Gallery Section */ .gallery { 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; /* Ensure visibility */ opacity: 1 !important; transform: translateY(0) !important; } .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; font-size: 0.9rem; } .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; } .gallery-content h4 { margin-bottom: 10px; color: var(--primary-black); } .gallery-content p { color: var(--medium-gray); font-size: 0.9rem; margin: 0; } /* Certifications */ .certifications { padding: 80px 0; background: var(--light-gray); } .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin-top: 40px; } .cert-item { background: var(--white); padding: 25px 20px; border-radius: 15px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; /* Ensure visibility */ opacity: 1 !important; transform: translateY(0) !important; } .cert-item:hover { transform: translateY(-3px); } .cert-logo { height: 60px; width: 100px; background: var(--light-gray); border-radius: 10px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; border: 2px solid #e0e0e0; } .cert-logo-placeholder { color: var(--medium-gray); font-weight: 600; font-size: 0.8rem; text-align: center; } .cert-item h4 { color: var(--primary-black); margin-bottom: 8px; font-size: 1rem; } .cert-item p { color: var(--medium-gray); font-size: 0.85rem; margin: 0; } /* Testimonials */ .testimonials { padding: 80px 0; background: var(--white); } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 40px; } .testimonial-card { background: var(--light-gray); padding: 30px 25px; border-radius: 20px; position: relative; /* Ensure visibility */ opacity: 1 !important; transform: translateY(0) !important; } .testimonial-card::before { content: '"'; font-size: 3rem; color: var(--accent-orange); position: absolute; top: 10px; left: 20px; opacity: 0.3; } .testimonial-content { margin-bottom: 20px; padding-top: 20px; color: var(--dark-gray); line-height: 1.7; } .testimonial-author { display: flex; align-items: center; gap: 15px; } .author-avatar { width: 50px; height: 50px; background: var(--accent-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--white); } .author-info h4 { margin: 0; color: var(--primary-black); } .author-location { color: var(--medium-gray); font-size: 0.9rem; } /* Insurance Section */ .insurance { padding: 80px 0; background: var(--primary-black); color: var(--white); } .insurance h2 { color: var(--white); text-align: center; margin-bottom: 20px; } .insurance .section-intro { color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; } .insurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .insurance-item { text-align: center; padding: 35px 20px; background: rgba(255, 255, 255, 0.1); border-radius: 15px; transition: transform 0.3s; /* Ensure visibility */ opacity: 1 !important; transform: translateY(0) !important; } .insurance-item:hover { transform: translateY(-3px); } .insurance-item h4 { color: var(--white); margin-bottom: 15px; margin-top: 0; } .insurance-item p { color: rgba(255, 255, 255, 0.9); margin: 0; } /* CTA Section */ .cta-section { padding: 80px 0; background: var(--accent-orange); color: var(--white); } .cta-section .container { max-width: 800px; } .cta-section h2 { color: var(--white); margin-bottom: 20px; text-align: center; } .cta-section p { font-size: clamp(1.1rem, 2.2vw, 1.3rem); margin-bottom: 40px; opacity: 0.95; text-align: center; } .cta-section .cta-buttons { justify-content: center; } /* 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 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) { .services-grid { grid-template-columns: 1fr; gap: 25px; } .process-steps { grid-template-columns: 1fr; gap: 25px; } .gallery-grid { grid-template-columns: 1fr; gap: 20px; } .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .testimonials-grid { grid-template-columns: 1fr; gap: 25px; } .insurance-grid { grid-template-columns: 1fr; gap: 25px; } .hero-stats { justify-content: center; gap: 20px; } .cta-buttons { flex-direction: column; align-items: center; } .cta-buttons .cta-button { width: 100%; max-width: 300px; } } @media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr; } .hero { padding: 60px 0; } .services, .process, .gallery, .certifications, .testimonials, .insurance, .cta-section { padding: 60px 0; } .hero-stats { flex-direction: column; gap: 15px; align-items: center; } }
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

Expert Collision Repair Vancouver WA

Professional collision repair services in Vancouver WA and Clark County. OEM certified technicians, advanced frame straightening equipment, and lifetime warranty on all collision repairs. Serving Vancouver, Battle Ground, Camas, Washougal, and Ridgefield since 1995.

4.9★ Customer Rating
30+ Years Experience
3 Vancouver Locations
OEM Certified Repairs
Get Free Estimate NE 68th: (360) 699-4887 Columbia: (360) 695-8882

Comprehensive Collision Repair Services Vancouver WA

Five Star Auto Body provides complete collision repair services for all vehicle makes and models throughout Vancouver WA, Clark County, and Southwest Washington. Our OEM certified technicians restore your vehicle to pre-accident condition.

Frame Straightening & Alignment

Advanced computerized frame machines to restore structural integrity and proper alignment after collision damage.

  • Laser measuring systems
  • Unibody repair expertise
  • Safety system calibration
  • Structural damage assessment

Panel Replacement & Repair

Expert panel repair and replacement using OEM parts and manufacturer-approved procedures for lasting quality.

  • OEM and aftermarket parts
  • Aluminum panel expertise
  • Quarter panel replacement
  • Door and fender repair

Collision Paint & Refinishing

Professional paint matching and application in our state-of-the-art downdraft paint booths.

  • Computer color matching
  • Multi-stage paint systems
  • Clear coat protection
  • Blend and spot repairs

Bumper & Component Repair

Complete bumper repair, replacement, and sensor recalibration for modern vehicle safety systems.

  • Plastic bumper repair
  • Sensor integration
  • Headlight restoration
  • Grille replacement

Suspension & Mechanical

Collision-related suspension repairs and mechanical component replacement by certified technicians.

  • Suspension damage repair
  • Steering component replacement
  • Wheel alignment
  • Brake system inspection

Insurance Claims Coordination

Complete insurance claims handling and direct billing to make your collision repair process stress-free.

  • All insurance companies
  • Direct repair programs
  • Rental car assistance
  • Claim documentation

Contact Your Nearest Location:

NE 68th St: (360) 699-4887

Columbia St: (360) 695-8882

Our Vancouver WA Collision Repair Process

Every collision repair at Five Star Auto Body follows our proven 8-step process to ensure quality results and customer satisfaction throughout Clark County.

1

Damage Assessment

Comprehensive inspection using advanced diagnostic equipment to identify all collision damage, including hidden structural issues.

2

Insurance Coordination

We handle all insurance paperwork, work directly with adjusters, and provide detailed repair estimates for approval.

3

Parts Ordering

We source genuine OEM parts and schedule delivery to ensure your repair timeline stays on track and meets manufacturer standards.

4

Disassembly & Prep

Careful vehicle disassembly and surface preparation using proper masking and protection techniques for collision repair work.

5

Structural Repair

Frame straightening, panel replacement, and structural restoration using OEM procedures and manufacturer specifications.

6

Paint & Refinishing

Professional paint application in our climate-controlled booth with precise color matching and multi-coat systems.

7

Quality Inspection

Final quality control inspection, road testing, and complete detailing before vehicle delivery to customer.

8

Final Delivery & Warranty

Vehicle delivery with comprehensive warranty documentation and follow-up support for complete customer satisfaction.

Vancouver WA Collision Repair Results

See the incredible collision repair transformations our expert technicians achieve at our Vancouver WA locations. From minor fender benders to major structural damage, we restore vehicles to like-new condition.

Frame Perfect
Side Impact Collision
Honda Civic
Complete Restoration

Major Side Impact Repair

Complete frame straightening and panel replacement - Vancouver customer's vehicle fully restored to factory specifications.

OEM Quality
Rear-End Collision
Toyota Camry
Insurance Approved

Rear-End Collision Repair

Trunk, quarter panel, and bumper replacement using OEM parts - Battle Ground customer case study.

Multi-Panel
Front End Damage
Ford F-150
Complex Repair

Front End Collision

Hood, fender, headlight, and grille replacement with frame alignment - Camas customer's truck transformation.

Insurance Win
Multi-Vehicle Accident
Jeep Wrangler
Total Restoration

Multi-Vehicle Accident

Extensive collision damage repaired to factory standards - Washougal customer's Jeep completely restored.

Paint Perfect
Door Replacement
BMW 3 Series
Color Match

Door Panel Replacement

Perfect color matching and blend work - Ridgefield customer's BMW repair shows our paint expertise.

Frame Certified
Rollover Damage
Subaru Outback
Structural Repair

Rollover Accident Repair

Complex structural damage including roof, pillars, and frame - Salmon Creek customer's complete restoration.

OEM Certified Collision Repair Vancouver WA

Five Star Auto Body maintains the highest industry certifications to ensure your collision repair meets factory standards and preserves your vehicle's warranty throughout Clark County.

Mopar
Certified

Mopar OEM Certified

Factory authorized for Chrysler, Dodge, Jeep, and Ram collision repairs

Hyundai
Certified

Hyundai Certified

Genesis and Hyundai OEM collision repair certification

Nissan
Certified

Nissan Certified

Infiniti and Nissan factory collision repair standards

Kia
Certified

Kia Certified

OEM certified collision repair center with factory training

I-CAR
Gold

I-CAR Gold Class

Industry leading collision repair training certification

BBB
A+

BBB A+ Accredited

Better Business Bureau accredited since 1995

Vancouver WA Collision Repair Customer Reviews

Read what Vancouver WA and Clark County customers say about our collision repair services. Real testimonials from real customers who experienced our exceptional service.

"After my rear-end collision on I-205, Five Star Auto Body in Vancouver WA handled everything perfectly. They worked with my insurance, provided a rental car, and my Honda Accord looks better than before the accident. The NE 68th Street team was amazing!"
SM

Sarah M.

Vancouver WA (Battle Ground area)
"My truck was badly damaged in a Highway 14 accident and I thought it was totaled. Five Star Auto Body's collision repair experts completely restored it using their frame straightening equipment. Incredible workmanship and attention to detail."
RM

Robert M.

Ridgefield, WA
"The collision repair work on my BMW was flawless. You cannot tell where the damage was repaired - the paint matching is perfect. Five Star Auto Body's Columbia Street location provided excellent service throughout the entire process."
LC

Lisa C.

Battle Ground, WA

Insurance Claims Made Easy

Five Star Auto Body works with all major insurance companies to make your collision repair claim process smooth and stress-free throughout Vancouver WA and Clark County.

All Insurance Companies

We work with State Farm, GEICO, Progressive, Allstate, USAA, and all other major insurance providers.

Direct Billing

Direct billing to your insurance company eliminates out-of-pocket expenses for covered collision repairs.

Rental Car Assistance

We help coordinate rental car coverage and work with local rental agencies for your convenience.

Adjuster Communication

Our team handles all communication with insurance adjusters and provides detailed repair documentation.

Two Convenient Vancouver WA Locations

NE 68th Street: (360) 699-4887 Columbia Street: (360) 695-8882

Need Collision Repair in Vancouver WA?

Don't wait - get your vehicle back to perfect condition with Vancouver WA's most trusted collision repair experts. Contact Five Star Auto Body today for your free estimate and experience the difference quality makes.

Get Free Estimate NE 68th: (360) 699-4887 Columbia: (360) 695-8882

Vancouver WA Services

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

Vancouver WA Locations

NE 68th Street Vancouver Columbia Street Vancouver Commerce Avenue Longview

Company

About Five Star Auto Body Customer Reviews Project Gallery Careers

Contact Information

NE 68th St: (360) 699-4887 Columbia St: (360) 695-8882 info@fivestarvancouver.com

Monday - Friday: 8:00 AM - 5:00 PM
Serving Vancouver WA & Clark County Since 1995

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