About Five Star Auto Body | Washington's Premier Auto Body Repair Company | 20+ Journeymen Technicians * { 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; backdrop-filter: blur(10px); } .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; } .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); } .dropdown-content a:first-child { margin-top: 0.5rem; } .dropdown-content a:last-child { margin-bottom: 0.5rem; } .nav-link { color: #374151; text-decoration: none; font-weight: 500; padding: 0.5rem 0; transition: color 0.3s ease; } .nav-link:hover { color: #f97316; } .nav-cta { background: #f97316; color: white; padding: 0.5rem 1rem; border-radius: 25px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; } .nav-cta:hover { background: #ea580c; transform: translateY(-2px); } .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(135deg, rgba(249, 115, 22, 0.5) 0%, rgba(234, 88, 12, 0.5) 50%, rgba(37, 99, 235, 0.5) 100%), 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; padding: 0; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(234, 88, 12, 0.3) 50%, rgba(37, 99, 235, 0.3) 100%); z-index: 1; } .hero .container { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; } .hero h1 { font-size: 3.5rem; font-weight: bold; margin-bottom: 1rem; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .hero-subtitle { font-size: 1.3rem; margin-bottom: 2.5rem; opacity: 0.95; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); max-width: 900px; margin-left: auto; margin-right: auto; } .hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 2rem auto; max-width: 900px; width: 100%; } .hero-stat { background: rgba(255,255,255,0.15); padding: 2rem 1.5rem; border-radius: 20px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); transition: all 0.3s ease; min-height: 160px; display: flex; flex-direction: column; justify-content: center; align-items: center; } .hero-stat:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); } .hero-stat h3 { font-size: 2.5rem; font-weight: bold; color: #fed7aa; margin-bottom: 0.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .hero-stat p { font-size: 1rem; opacity: 0.9; text-align: center; font-weight: 500; } /* 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: 800px; margin-left: auto; margin-right: auto; } /* Our Story Section */ .our-story { background: white; } .story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .story-text { padding: 2rem; } .story-text h3 { font-size: 1.8rem; color: #2563eb; margin-bottom: 1.5rem; font-weight: 600; } .story-text p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1.1rem; } .story-image { height: 400px; background: linear-gradient(135deg, #f97316, #2563eb); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 600; position: relative; overflow: hidden; } .story-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; } .story-image:hover::before { left: 100%; } /* Journeymen Technicians Section */ .journeymen { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; } .journeymen .section-title { color: #ffffff; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .journeymen .section-subtitle { color: #e0e7ff; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .journeymen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; } .journeymen-card { background: rgba(255,255,255,0.1); padding: 3rem 2rem; border-radius: 20px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); min-height: 300px; display: flex; flex-direction: column; justify-content: center; text-align: center; } .journeymen-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 60px rgba(0,0,0,0.2); } .journeymen-card h3 { color: #fed7aa; margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 600; line-height: 1.3; } .journeymen-card p { line-height: 1.6; opacity: 0.9; font-size: 1rem; } /* Certifications Section */ .certifications { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .certifications-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; padding: 2rem; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .certifications-intro p { color: #6b7280; line-height: 1.7; font-size: 1.1rem; } .certifications-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1200px; margin: 0 auto; } .certification-card { background: white; border-radius: 25px; padding: 3rem; 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: 350px; display: flex; flex-direction: column; align-items: center; text-align: center; } .certification-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; } .certification-card:hover::before { transform: translateX(0); } .certification-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); } .cert-image { width: 120px; height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; background: #f8fafc; border-radius: 15px; padding: 1rem; transition: all 0.3s ease; } .cert-image img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.3s ease; } .certification-card:hover .cert-image { background: rgba(249, 115, 22, 0.1); } .certification-card:hover .cert-image img { transform: scale(1.1); } .cert-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; } .cert-content h3 { font-size: 1.4rem; color: #2563eb; margin-bottom: 1rem; font-weight: 600; line-height: 1.3; } .cert-content p { color: #6b7280; line-height: 1.6; font-size: 1rem; } /* Our Locations Section */ .our-locations { background: white; } .locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } .location-card { background: linear-gradient(145deg, #ffffff, #f8fafc); border-radius: 25px; padding: 2.5rem; 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; } .location-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; } .location-card:hover::before { transform: translateX(0); } .location-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .location-card h3 { color: #2563eb; margin-bottom: 1.5rem; font-size: 1.3rem; font-weight: 600; line-height: 1.3; } .location-year { display: inline-block; background: linear-gradient(45deg, #f97316, #ea580c); color: white; padding: 0.3rem 0.8rem; border-radius: 15px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem; } .location-details { margin-bottom: 1.5rem; flex-grow: 1; } .detail-item { display: flex; align-items: flex-start; margin-bottom: 0.8rem; color: #6b7280; line-height: 1.6; font-size: 0.95rem; } .detail-item strong { color: #374151; margin-right: 0.5rem; min-width: 60px; } .location-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; } .location-link:hover { color: #2563eb; transform: translateX(5px); } /* Core Values Section */ .core-values { background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #2563eb 100%); color: white; } .core-values .section-title { color: #ffffff; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .core-values .section-subtitle { color: #fed7aa; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; } .value-card { background: rgba(255,255,255,0.1); padding: 3rem 2rem; border-radius: 20px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); min-height: 300px; display: flex; flex-direction: column; justify-content: center; text-align: center; } .value-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 60px rgba(0,0,0,0.2); } .value-card h3 { color: #fed7aa; margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 600; line-height: 1.3; } .value-card p { line-height: 1.6; opacity: 0.9; font-size: 1rem; } /* Community Section */ .community { background: white; } .community-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .community-text { padding: 2rem; } .community-text h3 { font-size: 1.8rem; color: #2563eb; margin-bottom: 1.5rem; font-weight: 600; } .community-text p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1.1rem; } .community-image { height: 400px; background: linear-gradient(135deg, #f97316, #2563eb); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 600; position: relative; overflow: hidden; } .community-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; } .community-image:hover::before { left: 100%; } /* Why Choose Section */ .why-choose { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .why-choose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .why-choose-card { padding: 2.5rem; background: white; border-radius: 20px; border-left: 5px solid #f97316; 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: space-between; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .why-choose-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent); transition: left 0.8s ease; } .why-choose-card:hover::before { left: 100%; } .why-choose-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-left-color: #2563eb; } .why-choose-card h3 { font-size: 1.4rem; font-weight: 600; color: #2563eb; margin-bottom: 1.2rem; line-height: 1.3; } .why-choose-card p { color: #6b7280; line-height: 1.6; font-size: 1rem; margin-bottom: 1.5rem; flex-grow: 1; } .why-choose-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; } .why-choose-link:hover { color: #2563eb; transform: translateX(5px); } /* Contact CTA Section */ .contact-cta { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); text-align: center; color: white; } .contact-cta .section-title { color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .cta-content { max-width: 700px; margin: 0 auto; } .cta-content p { font-size: 1.1rem; color: #e0e7ff; margin-bottom: 2.5rem; line-height: 1.6; } .cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; } .cta-button { background: linear-gradient(45deg, #f97316, #ea580c); color: white; padding: 1rem 2.5rem; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3); } .cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4); } .cta-button.secondary { background: white; color: #2563eb; box-shadow: 0 10px 30px rgba(255,255,255,0.2); } .cta-button.secondary:hover { background: #f8fafc; } /* 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; } /* Responsive Design */ @media (max-width: 1024px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } .story-content, .community-content { grid-template-columns: 1fr; gap: 3rem; } .journeymen-grid { grid-template-columns: repeat(2, 1fr); } .values-grid { grid-template-columns: repeat(2, 1fr); } .why-choose-grid { grid-template-columns: repeat(2, 1fr); } .locations-grid { grid-template-columns: 1fr; } } @media (max-width: 768px) { .mobile-menu-btn { display: block; } .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-item:last-child { border-bottom: none; } .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; } .nav-cta { background: #f97316; color: white !important; margin: 0.5rem 1rem; border-radius: 8px; text-align: center; } .nav-cta:hover { background: #ea580c; } .dropdown { position: relative; } .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; } .dropdown-content a { display: block; padding: 0.8rem 2rem; color: #6b7280; text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: all 0.2s ease; border-radius: 0; margin: 0; border-bottom: 1px solid #e5e7eb; } .dropdown-content a:last-child { border-bottom: none; } .dropdown-content a:hover { background: #e5e7eb; color: #374151; transform: none; padding-left: 2.5rem; } .hero { background-attachment: scroll; height: 100vh; min-height: 100vh; padding: 0; } .hero .container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 20px; } .hero h1 { font-size: 2.5rem; } .hero-subtitle { font-size: 1.1rem; } .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 400px; } .hero-stat { padding: 1.5rem 1rem; min-height: 140px; } .hero-stat h3 { font-size: 2rem; } .story-image, .community-image { height: 300px; } .journeymen-grid { grid-template-columns: 1fr; gap: 2rem; } .journeymen-card { padding: 2rem; min-height: 260px; } .certifications-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } .certification-card { padding: 2rem; min-height: 300px; } .values-grid { grid-template-columns: 1fr; gap: 2rem; } .value-card { padding: 2rem; min-height: 260px; } .why-choose-grid { grid-template-columns: 1fr; gap: 2rem; } .why-choose-card { padding: 2rem; min-height: 280px; } .cta-buttons { flex-direction: column; align-items: center; } .section { padding: 60px 0; } .section-title { font-size: 2rem; } } @media (max-width: 480px) { .hero { height: 100vh; min-height: 100vh; padding: 0; } .hero .container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 20px; } .hero h1 { font-size: 2rem; } .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; max-width: 280px; } .hero-stat { padding: 1.2rem; min-height: 120px; } .hero-stat h3 { font-size: 1.8rem; } .story-text, .community-text { padding: 1rem; } .story-image, .community-image { height: 250px; } .journeymen-card, .certification-card, .value-card, .why-choose-card { padding: 1.5rem; min-height: 240px; } .location-card { padding: 2rem; min-height: 300px; } .section { padding: 50px 0; } .section-title { font-size: 1.8rem; } }
Five Star Auto Body
  • Home
  • About
  • Services
    Auto Body Repair Collision Repair
  • Locations
    Vancouver WA Longview WA Chehalis WA
  • Gallery
  • Reviews
  • Contact

About Five Star Auto Body

Washington's Premier Auto Body Repair Company - Serving Vancouver, Longview, and Chehalis with 20+ Journeymen Technicians and 7 Manufacturer Certifications Since 2008

20+

Journeymen Technicians
Certified master craftsmen

4

Washington Locations
Vancouver, Longview, Chehalis

17+

Years of Excellence
Trusted since 2008

7

Manufacturer Certifications
Kia, FCA, Hyundai, Nissan, GM, Mazda, Ford

Our Story - Built on Customer Satisfaction

The Five Star Auto Body journey from a single Vancouver shop to Washington's most trusted auto body repair company

A Family Business Rooted in Southwest Washington

Founded by Marley in 2008, Five Star Auto Body started with a simple vision: provide exceptional auto body repair services where customer satisfaction is the top priority. Marley, who grew up in the Vancouver area and attended local schools, understood the importance of treating every customer like family and every vehicle repair with the care and precision we'd demand for our own cars.

What started as a single location on NE 68th Street in Vancouver has grown into four strategically located facilities across Southwest Washington. This growth wasn't built on advertising - it was earned through quality work, word of mouth, referrals, and repeat customers who trust us with their vehicles time and time again.

Customer satisfaction is the most important part of our business and always has been. We've grown our business through referrals and believe that has been the biggest contributing factor to our success. Quality work equals great word of mouth, which equals referrals and repeat customers - it's a simple formula that has guided us since day one.

Today, Five Star Auto Body operates four locations with 20+ journeymen-certified technicians and holds seven manufacturer certifications from Kia, FCA, Hyundai, Nissan, GM, Mazda, and Ford. Our reputation for excellence reflects our community's trust in our work, and we're proud to be the go-to choice for drivers who demand nothing less than perfection in their auto body repairs.

Five Star Auto Body - Serving Washington Families Since 2008

20+ Journeymen Technicians - The Five Star Difference

Our exclusive team of certified journeymen brings unmatched expertise to every auto body repair project across all Washington locations

Master-Level Expertise Only

Unlike other auto body shops that employ apprentices or entry-level technicians, Five Star Auto Body exclusively hires journeymen-certified professionals. Each of our 20+ technicians has completed extensive training programs and brings an average of 7+ years of specialized collision repair experience to every project.

Continuous Education Programs

The automotive industry evolves rapidly with new technologies, materials, and repair techniques. Our technicians participate in ongoing manufacturer training programs, staying current with the latest ADAS calibration, aluminum repair methods, and advanced paint systems to ensure cutting-edge service delivery.

Quality Guarantee Promise

With journeymen-level expertise across our entire team, we confidently guarantee superior workmanship on every repair. Our comprehensive lifetime warranty program and seven manufacturer certifications ensure that your vehicle receives the highest quality auto body restoration available in Washington state.

7 Manufacturer Certifications - Factory-Authorized Excellence

Authorized and certified by seven leading automotive manufacturers to provide OEM-quality collision repair

Five Star Auto Body is proud to be certified by Kia, FCA (Chrysler, Dodge, Jeep, Ram), Hyundai, Nissan, GM (Chevrolet, Buick, GMC, Cadillac), Mazda, and Ford. These certifications require ongoing training, specialized equipment, and adherence to strict manufacturer repair standards, ensuring your vehicle receives factory-authorized restoration that maintains warranty coverage and resale value.

Kia Certified Collision Repair

Kia Certified Collision Repair

Factory-authorized Kia collision repair facility with specialized training in Kia-specific repair procedures, genuine parts usage, and warranty compliance across all our Washington locations.

FCA Certified Collision Repair

FCA Certified Auto Body Shop

Authorized repair facility for Chrysler, Dodge, Jeep, and Ram vehicles with factory training and specialized equipment for FCA collision repair standards and procedures.

Hyundai Certified Collision Repair

Hyundai Certified Auto Body

Certified Hyundai collision repair center with technicians trained in advanced Hyundai repair techniques, aluminum restoration, and genuine parts installation maintaining warranty compliance.

Nissan Certified Collision Repair

Nissan Certified Collision Center

Factory-authorized Nissan collision repair facility with access to genuine Nissan parts, specialized repair procedures, and certified technician training for all Nissan models and warranties.

GM Certified Collision Repair

GM Certified Auto Body Shop

Factory-authorized General Motors collision repair facility with certified technicians trained in GM-specific repair procedures for Chevrolet, Buick, GMC, and Cadillac vehicles ensuring manufacturer warranty compliance.

Mazda Certified Collision Repair

Mazda Certified Collision Center

Authorized Mazda collision repair facility with specialized training in Mazda-specific repair techniques, genuine parts usage, and SKYACTIV technology expertise for all Mazda vehicles maintaining factory standards.

Ford Certified Collision Repair

Ford Certified Collision Center

Authorized Ford collision repair facility with specialized training and genuine Ford parts access for all Ford and Lincoln vehicles, maintaining OEM standards and manufacturer warranty requirements.

Four Washington Auto Body Locations - Strategic Growth Since 2008

From our first shop in Vancouver to four comprehensive facilities serving Southwest Washington

Vancouver WA - NE 68th Street EST. 2008

Address: 3019 NE 68th St, Vancouver, WA 98665
Phone: (360) 699-4887
Hours: Mon-Fri 8:00 AM - 5:00 PM, Sat 10:00 AM - 2:00 PM
History: Our original location where it all began - serving Vancouver for over 17 years
Location Details →

Longview WA Location EST. 2022

Address: 760 Commerce Ave, Longview, WA 98632
Phone: (360) 353-3018
Hours: Mon-Fri 8:00 AM - 5:00 PM
Services: Professional collision repair, auto body restoration, serving Cowlitz County
Location Details →

Vancouver WA - Columbia Street EST. 2023

Address: 1813 Columbia St, Vancouver, WA 98660
Phone: (360) 258-1612
Hours: Mon-Fri 8:00 AM - 5:00 PM
Services: Full collision repair, auto body restoration, downtown Vancouver convenience
Location Details →

Chehalis WA - N Market Blvd EST. 2025

Address: 55 N Market Blvd, Chehalis, WA 98532
Phone: (360) 748-8344
Hours: Mon-Fri 8:00 AM - 5:00 PM
Services: Expert collision repair, auto body restoration, serving Lewis County
Location Details →

Core Values That Drive Excellence

The fundamental principles that guide every auto body repair project and customer interaction

Customer Satisfaction First

Customer satisfaction is the most important part of our business and always has been. Every decision we make, from hiring only journeymen technicians to maintaining manufacturer certifications, is focused on ensuring you receive the highest quality auto body repair service and exceptional customer experience.

Quality Work & Referrals

We've grown our business through referrals and believe that has been the biggest contributing factor to our success. Quality work equals great word of mouth, which equals referrals and repeat customers. This organic growth model keeps us focused on what matters most - delivering exceptional results on every repair.

Community Commitment

As a family-owned business, we believe in giving back to the Southwest Washington communities that have supported us. We sponsor local high schools in the area because Marley grew up here, attended local schools, and his children and friends' children attend these schools too. Supporting our community is part of who we are.

Deep Roots in Southwest Washington

A family-owned business committed to supporting the local community

Supporting Local Schools & Community

Five Star Auto Body is more than just an auto body shop - we're an integral part of the Southwest Washington community. Marley grew up in the Vancouver area, attended local schools, and built his business right here where he raised his family. His kids and friends' children attend local schools in the area, making our commitment to the community deeply personal.

We love to sponsor local high schools throughout Clark, Cowlitz, and Lewis Counties because we understand the importance of investing in the next generation. From sports teams to academic programs, we're proud to support the schools and students who represent the future of our communities.

This family-owned business philosophy extends to how we treat our customers - like family. When you bring your vehicle to any of our four locations, you're not just another repair ticket. You're a neighbor, a community member, and someone we're committed to serving with the same level of care and quality we'd provide for our own families.

Supporting Southwest Washington Communities Since 2008

What Makes Five Star Auto Body Different

Discover the key differentiators that make us Washington's premier choice for auto body repair

Exclusive Journeymen-Only Team

While most auto body shops employ a mix of apprentices and experienced technicians, Five Star Auto Body exclusively hires journeymen-certified professionals. This means every repair is performed by master-level craftsmen with 7+ years of specialized experience, ensuring consistent quality across all projects and locations.

Join Our Team →

Seven Manufacturer Certifications

As one of the few auto body facilities in Washington certified by Kia, FCA, Hyundai, Nissan, GM, Mazda, and Ford, we meet the strictest manufacturer standards for collision repair quality and procedures. These certifications ensure your vehicle receives factory-authorized restoration that maintains warranty coverage and resale value.

Learn More →

Built on Referrals & Trust

Our growth from one location to four facilities wasn't built on advertising - it was earned through exceptional work that generates word of mouth referrals and repeat customers. This organic growth model keeps us focused on delivering quality results that make customers proud to recommend us to family and friends.

Read Reviews →

Experience the Five Star Difference

Ready to see why thousands of Washington drivers trust Five Star Auto Body for their collision repair and auto body restoration needs? Contact us today for your free estimate and experience the difference that comes from working with a family-owned business that puts customer satisfaction first.

Get Your Free Estimate Read Customer Reviews

Services

  • Auto Body Repair
  • Collision Repair
  • Auto Body Vancouver
  • Auto Body Longview
  • Auto Body Chehalis
  • Collision Vancouver
  • Collision Longview
  • Collision Chehalis

Locations

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

Company

  • About Five Star Auto Body
  • Customer Reviews
  • Careers & Employment
  • Auto Body Blog
  • Project Gallery
  • Contact Us

Contact Info

  • Vancouver: (360) 699-4887
  • Vancouver: (360) 258-1612
  • Longview: (360) 353-3018
  • Chehalis: (360) 748-8344
  • Email: fivestarautobody@gmail.com

© 2025 Five Star Auto Body. All rights reserved.

Family-Owned Auto Body Shop Vancouver WA | Trusted Collision Repair Since 2008 | 20+ Journeymen Technicians