About Five Star Auto Body Vancouver WA | 30+ Years Serving Clark County | OEM Certified /* CSS Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } 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: #2c2c2c; background: #ffffff; overflow-x: hidden; } /* Ensure all content is visible by default */ * { opacity: 1 !important; transform: none !important; } .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: #1a1a1a; } h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; color: #1a1a1a; } h3 { font-size: clamp(1.3rem, 2.8vw, 1.8rem); font-weight: 600; line-height: 1.3; margin-bottom: 0.8rem; color: #1a1a1a; } h4 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 600; line-height: 1.3; margin-bottom: 0.6rem; color: #1a1a1a; } p { font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 1rem; line-height: 1.6; } /* Header */ header { background: #ffffff; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 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: #2c2c2c; 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, .nav-menu a[style*="color: #ff6b35"] { color: #ff6b35; } /* 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: #ffffff; min-width: 250px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 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 #f5f5f5; display: block; width: 100%; } .dropdown a:hover, .dropdown a:focus { background: rgba(255, 107, 53, 0.1); color: #ff6b35; 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: #2c2c2c; 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: #ff6b35; } /* Hero Section */ .hero { background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(44,44,44,0.8)), linear-gradient(45deg, #1a1a1a, #2c2c2c); color: #ffffff; 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: #ffffff; } .hero p { font-size: clamp(1.1rem, 2.2vw, 1.3rem); margin-bottom: 2rem; opacity: 0.95; } /* CTA Button */ .cta-button { background: #ff6b35; color: #ffffff; 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: #1a1a1a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); } /* Story Section */ .story { padding: 80px 0; background: #ffffff; } .story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; } .story-text h2 { margin-bottom: 30px; } .story-text p { font-size: clamp(1.05rem, 2.1vw, 1.2rem); line-height: 1.7; } .story-image { background: #f5f5f5; border-radius: 20px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 2px solid #e0e0e0; overflow: hidden; } .image-placeholder { text-align: center; color: #6c757d; font-weight: 600; padding: 20px; } /* Values Section */ .values { padding: 80px 0; background: #f5f5f5; } .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; } .value-card { background: #ffffff; padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; } .value-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); } .value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #ff6b35; } .value-icon { font-size: 3rem; color: #ff6b35; margin-bottom: 20px; display: block; } .value-card h3 { margin-bottom: 15px; color: #1a1a1a; } .value-card p { color: #6c757d; margin-bottom: 0; } /* Certifications Section */ .certifications { padding: 80px 0; background: #ffffff; } .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .cert-item { background: #f5f5f5; padding: 30px 25px; border-radius: 15px; text-align: center; transition: transform 0.3s; } .cert-item:hover { transform: translateY(-3px); } .cert-logo { height: 80px; width: 120px; background: #ffffff; border-radius: 10px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border: 2px solid #e0e0e0; } .cert-logo-placeholder { color: #6c757d; font-weight: 600; font-size: 0.9rem; text-align: center; } .cert-item h4 { color: #1a1a1a; margin-bottom: 10px; } .cert-item p { color: #6c757d; font-size: 0.95rem; margin-bottom: 0; } /* Team Section */ .team { padding: 80px 0; background: #f5f5f5; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; } .team-member { background: #ffffff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s; } .team-member:hover { transform: translateY(-5px); } .member-photo { aspect-ratio: 1; background: #f5f5f5; display: flex; align-items: center; justify-content: center; border-bottom: 2px solid #e0e0e0; } .member-info { padding: 30px 25px; text-align: center; } .member-info h4 { color: #1a1a1a; margin-bottom: 5px; } .member-title { color: #ff6b35; font-weight: 600; margin-bottom: 15px; } .member-info p { color: #6c757d; font-size: 0.95rem; margin-bottom: 0; } /* Timeline Section */ .timeline { padding: 80px 0; background: #ffffff; } .timeline-container { max-width: 800px; margin: 50px auto 0; position: relative; } .timeline-line { position: absolute; left: 30px; top: 0; bottom: 0; width: 4px; background: rgba(255, 107, 53, 0.3); } .timeline-item { position: relative; padding-left: 80px; margin-bottom: 50px; } .timeline-year { position: absolute; left: 0; top: 0; width: 60px; height: 60px; background: #ff6b35; color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.9rem; } .timeline-content { background: #f5f5f5; padding: 25px 30px; border-radius: 15px; margin-top: 10px; } .timeline-content h4 { color: #1a1a1a; margin-bottom: 10px; } .timeline-content p { color: #6c757d; margin-bottom: 0; } /* Gallery Section */ .gallery { padding: 80px 0; background: #f5f5f5; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; } .gallery-item { aspect-ratio: 4/3; background: #ffffff; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s; display: flex; align-items: center; justify-content: center; border: 2px solid #e0e0e0; } .gallery-item:hover { transform: scale(1.03); } .gallery-placeholder { text-align: center; color: #6c757d; font-weight: 600; padding: 20px; } /* CTA Section */ .cta-section { padding: 80px 0; background: #1a1a1a; color: #ffffff; text-align: center; } .cta-section h2 { color: #ffffff; margin-bottom: 20px; } .cta-section 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 #ffffff; } .cta-button.secondary:hover { background: #ffffff; color: #1a1a1a; } /* Footer */ footer { background: #1a1a1a; color: #ffffff; 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: #ff6b35; margin-bottom: 20px; } .footer-section a { color: #ffffff; text-decoration: none; display: block; margin-bottom: 10px; transition: color 0.3s; } .footer-section a:hover { color: #ff6b35; } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #444; } /* Mobile Responsive */ @media (max-width: 1023px) { .mobile-menu-toggle { display: flex; } .nav-menu { position: fixed; top: 80px; left: -100%; width: 100vw; height: calc(100vh - 80px); background: #ffffff; flex-direction: column; justify-content: flex-start; align-items: center; transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 20px rgba(0,0,0,0.1); overflow-y: auto; padding: 20px 0; gap: 0; z-index: 9998; visibility: hidden; opacity: 0; } .nav-menu.active { left: 0; visibility: visible; opacity: 1; } .nav-menu > li { width: 100%; text-align: center; border-bottom: 1px solid #f5f5f5; position: relative; } .nav-menu a { padding: 16px 20px; font-size: 1.1rem; min-height: 48px; width: 100%; justify-content: center; } .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: #f8f9fa; border-radius: 0; margin-top: 0; display: none; } .dropdown-open .dropdown { display: block; } } @media (min-width: 1024px) { .mobile-menu-toggle { display: none; } .nav-menu { position: static; visibility: visible; opacity: 1; flex-direction: row; width: auto; height: auto; background: transparent; } } @media (max-width: 768px) { .story-content { grid-template-columns: 1fr; gap: 40px; } .values-grid { grid-template-columns: 1fr; gap: 30px; } .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .team-grid { grid-template-columns: 1fr; gap: 30px; } .timeline-item { padding-left: 60px; } .timeline-year { width: 50px; height: 50px; font-size: 0.8rem; } .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; } .gallery-grid { grid-template-columns: 1fr; } .timeline-line { left: 25px; } .timeline-item { padding-left: 70px; } .timeline-year { width: 50px; height: 50px; } }
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 Vancouver Columbia Street Vancouver Commerce Avenue Longview
  • About
  • Reviews
  • Blog
  • Contact
  • Careers

About Five Star Auto Body Vancouver WA

Family-owned and operated since 1995, we've been Vancouver WA's trusted collision repair experts for over 30 years. Serving Clark County and Southwest Washington with integrity, expertise, and exceptional results that exceed expectations.

Get Your Free Estimate

Our Vancouver WA Auto Body Story

Founded in 1995, Five Star Auto Body began as a small family-owned collision repair shop with a simple mission: provide honest, high-quality auto body repair services to the Vancouver WA community. What started in a single location has grown into three strategic locations serving all of Clark County and Southwest Washington.

Over three decades, we've built our reputation one satisfied customer at a time. From minor dent repairs to complete collision reconstruction, our commitment to excellence has made us the most trusted name in Vancouver WA auto body repair.

Today, we're proud to be OEM certified by major manufacturers, BBB accredited, and the preferred choice for thousands of drivers throughout Vancouver, Battle Ground, Camas, Washougal, Ridgefield, and Longview.

Five Star Auto Body
Founding Story Image
1995 - Present

What Sets Five Star Auto Body Apart

Our core values guide every collision repair project and customer interaction throughout Clark County and Southwest Washington.

🛡️

Quality & Safety First

Every collision repair meets or exceeds manufacturer specifications using OEM parts and certified procedures to ensure your vehicle's safety and performance.

🤝

Honest & Transparent

We provide clear communication, detailed estimates, and honest assessments. No surprises, no hidden fees - just straightforward collision repair you can trust.

⚡

Fast & Reliable

We understand you need your vehicle back quickly. Our efficient processes and skilled technicians deliver quality collision repairs on time, every time.

💯

Lifetime Warranty

We stand behind our collision repair work with a comprehensive lifetime warranty on all repairs and paint work for as long as you own your vehicle.

🏆

Customer Satisfaction

Our 4.9/5 star rating from over 500 Vancouver WA and Clark County customers reflects our commitment to exceeding expectations every day.

🌟

Community Focused

As a local Vancouver WA business, we're invested in our community. We support local organizations and treat every customer like family.

Industry-Leading Certifications & Partnerships

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

Mopar
Certified

Mopar OEM Certified

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

Hyundai
Certified

Hyundai Certified

Genesis and Hyundai OEM parts and certified repair procedures

Nissan
Certified

Nissan Certified

Infiniti and Nissan factory standards collision repair center

Kia
Certified

Kia Certified

OEM certified collision repair center with factory training

BBB
A+

BBB A+ Accredited

Better Business Bureau accredited since 1995 with A+ rating

I-CAR
Gold

I-CAR Gold Class

Industry leading collision repair training and certification

Meet Our Expert Team

Our certified technicians and customer service professionals are the heart of Five Star Auto Body. Each team member brings years of experience and a commitment to excellence in collision repair.

Shop Owner
Photo

Owner & Founder

30+ Years Experience

Leading Five Star Auto Body since 1995 with a passion for quality collision repair and customer service excellence.

Lead Technician
Photo

Lead Collision Technician

I-CAR Gold Certified

Expert in frame straightening, structural repairs, and complex collision reconstruction with 20+ years experience.

Paint Specialist
Photo

Master Paint Technician

Color Match Specialist

Specializing in custom paint work, color matching, and flawless finish quality using the latest paint booth technology.

Customer Service
Photo

Customer Service Manager

Insurance Specialist

Dedicated to making your collision repair experience stress-free with expert insurance coordination and communication.

Our Journey Through the Years

From humble beginnings to becoming Vancouver WA's premier collision repair destination, here's our story of growth and dedication.

1995

Five Star Auto Body Founded

Started as a small family-owned collision repair shop in Vancouver WA with a commitment to quality and customer service.

2000

BBB Accreditation

Achieved Better Business Bureau accreditation and A+ rating, establishing our reputation for honest business practices.

2005

Expanded to Columbia Street

Opened our second location in downtown Vancouver to better serve Clark County residents with convenient access.

2010

OEM Certifications Achieved

Became certified by major manufacturers including Mopar, Hyundai, Nissan, and Kia for factory-authorized collision repairs.

2015

Longview Location Opens

Expanded to serve Cowlitz County with our third location, bringing expert collision repair to the Longview community.

2020

Advanced Technology Upgrade

Invested in state-of-the-art frame machines, paint booths, and diagnostic equipment for precision collision repairs.

2025

30+ Years of Excellence

Celebrating over three decades of serving Vancouver WA and Southwest Washington with 500+ five-star reviews and growing.

Inside Five Star Auto Body

Take a look at our state-of-the-art facilities, advanced equipment, and the quality workmanship that makes us Vancouver WA's premier collision repair destination.

Main Shop
Exterior View
Paint Booth
Technology
Frame Machine
Equipment
Team at Work
Action Shot
Customer Area
Waiting Room
Quality Control
Inspection
Completed Work
Before & After
Awards &
Certifications

Experience the Five Star Difference

Ready to see why Vancouver WA trusts Five Star Auto Body for collision repair? Contact us today for your free estimate and experience our commitment to excellence firsthand.

Get Free Estimate Call (360) 699-4887

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 trusted collision repair experts since 1995.