About Five Star Auto Body | Washington's Premier Auto Body Repair Company | 40+ 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-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1000px; 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-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; } /* Why Choose Section */ .why-choose { background: white; } .why-choose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .why-choose-card { padding: 2.5rem; background: linear-gradient(145deg, #f8fafc, #e2e8f0); 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; } .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, #f8fafc 0%, #e2e8f0 100%); text-align: center; } .cta-content { max-width: 700px; margin: 0 auto; } .cta-content h2 { color: #2563eb; margin-bottom: 1rem; font-size: 2.2rem; } .cta-content p { font-size: 1.1rem; color: #6b7280; 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: transparent; color: #2563eb; border: 2px solid #2563eb; box-shadow: none; } .cta-button.secondary:hover { background: #2563eb; color: white; } /* 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 { 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 { height: 300px; } .journeymen-grid { grid-template-columns: 1fr; gap: 2rem; } .journeymen-card { padding: 2rem; min-height: 260px; } .certifications-grid { grid-template-columns: 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 { padding: 1rem; } .story-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; } } /* Performance Optimizations */ .nav-logo img { will-change: transform; } .hero-stat, .journeymen-card, .certification-card, .location-card, .value-card, .why-choose-card { will-change: transform; } /* Accessibility Improvements */ @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } /* Print Styles */ @media print { .navbar, .footer { display: none; } .hero { background: none; color: black; } .section { padding: 20px 0; } }
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 40+ Journeymen Technicians and Manufacturer-Certified Excellence Since 2010

40+

Journeymen Technicians
Certified master craftsmen

4

Washington Locations
Vancouver, Longview, Chehalis

15+

Years of Excellence
Trusted auto body expertise

4

Manufacturer Certifications
Kia, FCA, Hyundai, Nissan

Our Story & Commitment to Excellence

The Five Star Auto Body difference starts with our unwavering commitment to quality, expertise, and customer satisfaction

Family Owned & Operated Auto Body Company

Founded in 2010, Five Star Auto Body has grown from a single location dream into Washington's most trusted auto body repair company. Our family-owned business philosophy centers on treating every customer like family and every vehicle repair with the precision and care we'd demand for our own cars.

What sets us apart as the best auto body shop in Vancouver WA, Longview WA, and Chehalis WA is our exclusive commitment to hiring only journeymen-level technicians. While other shops may use apprentices or entry-level workers, our 40+ certified technicians bring an average of 7+ years of specialized auto body repair experience to every project.

Our reputation for excellence has earned us manufacturer certifications from Kia, FCA, Hyundai, and Nissan, making us one of the few collision repair facilities in Washington state authorized to perform warranty-approved repairs for multiple automotive brands. This level of recognition speaks to our commitment to maintaining the highest standards in collision repair and auto body restoration.

Today, we operate four strategically located facilities across Southwest Washington, serving customers from Vancouver to Chehalis and everywhere in between. Our growth 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 Facility - Serving Washington Since 2010

40+ 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 40+ 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 manufacturer certifications ensure that your vehicle receives the highest quality auto body restoration available in Washington state.

Manufacturer Certified Auto Body Repair Facility

Authorized and certified by leading automotive manufacturers to provide OEM-quality collision repair across all Washington locations

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.

Four Convenient Washington Auto Body Locations

Strategically located auto body repair facilities serving Southwest Washington with comprehensive collision repair services

Vancouver WA - Columbia Street

Address: Columbia Street, Vancouver, WA 98660
Phone: (360) 258-1612
Hours: Mon-Fri 8:00 AM - 5:00 PM
Services: Full collision repair, auto body restoration, paint matching, frame straightening
Location Details →

Vancouver WA - NE 68th Street

Address: NE 68th Street, Vancouver, WA 98662
Phone: (360) 699-4887
Hours: Mon-Fri 8:00 AM - 5:00 PM, Sat 10:00 AM - 2:00 PM
Services: Complete collision repair, dent removal, paint restoration, structural repair
Location Details →

Longview WA Location

Address: Commerce Avenue, Longview, WA 98632
Phone: (360) 353-3018
Hours: Mon-Fri 8:00 AM - 5:00 PM
Services: Professional collision repair, auto body restoration, insurance claims support
Location Details →

Chehalis WA - N Market Boulevard

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

Core Values That Drive Excellence

The fundamental principles that guide every auto body repair project and customer interaction across all Five Star locations

Precision & Quality First

Every collision repair project receives meticulous attention to detail from our journeymen technicians. We use manufacturer-approved techniques, genuine OEM parts, and state-of-the-art equipment to ensure your vehicle is restored to pre-accident condition with precision that exceeds industry standards.

Customer Trust & Transparency

Building lasting relationships through honest communication, transparent pricing, and reliable service delivery. We believe in educating our customers about the repair process, providing detailed estimates, and maintaining open communication throughout every auto body restoration project.

Innovation & Continuous Improvement

Staying at the forefront of automotive repair technology through ongoing investment in advanced equipment, technician training, and process improvement. We continuously evolve our methods to deliver faster turnaround times without compromising the exceptional quality our customers expect.

What Makes Five Star Auto Body Different

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

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. Our commitment to hiring only the most skilled technicians in the industry sets us apart from competitors and guarantees superior results.

Join Our Team →

Multiple Manufacturer Certifications

As one of the few auto body facilities in Washington certified by Kia, FCA, Hyundai, and Nissan, we meet the strictest manufacturer standards for collision repair quality and procedures. These certifications require ongoing training, specialized equipment, and adherence to OEM repair methods, ensuring your vehicle receives factory-authorized restoration that maintains warranty coverage and resale value.

Learn More →

Comprehensive Project Documentation

We maintain detailed documentation of every repair project in our project gallery, showcasing before-and-after transformations that demonstrate our craftsmanship and attention to detail. This transparency allows customers to see the quality of our work and builds confidence in our ability to restore their vehicles to like-new condition with precision and care.

View Gallery →

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 true professionals.

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

© 2024 Five Star Auto Body. All rights reserved.

Best Auto Body Shop Vancouver WA | Trusted Collision Repair Washington | Experienced Auto Body Chehalis WA