Auto Body Repair 55 N Market Blvd Chehalis WA | Five Star Auto Body | Collision Repair * { 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); transition: all 0.3s ease; } .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 Height */ .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; text-align: center; position: relative; height: 100vh; min-height: 100vh; 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: 1.5rem; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); max-width: 900px; } .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: 800px; margin-left: auto; margin-right: auto; } .hero-address { background: rgba(255,255,255,0.15); padding: 2rem 3rem; border-radius: 20px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); margin-bottom: 2rem; transition: all 0.3s ease; } .hero-address:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); } .hero-address h2 { font-size: 1.8rem; color: #fed7aa; margin-bottom: 1rem; font-weight: 600; } .hero-address p { font-size: 1.1rem; margin-bottom: 0.5rem; } .hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; } .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); display: inline-flex; align-items: center; gap: 0.5rem; } .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; border: 2px solid white; box-shadow: none; } .cta-button.secondary:hover { background: white; color: #f97316; } /* Sections */ .section { padding: 80px 0; } .section-title { text-align: center; font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; color: #2563eb; } .section-subtitle { text-align: center; font-size: 1.1rem; color: #6b7280; margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; } /* Location Details - 1x1 */ .location-details { background: white; position: relative; z-index: 1; } .details-card { background: linear-gradient(145deg, #ffffff, #f8fafc); border-radius: 25px; padding: 3rem; box-shadow: 0 20px 60px rgba(0,0,0,0.1); 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; max-width: 1000px; margin: 0 auto; } .details-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; } .details-card:hover::before { transform: translateX(0); } .details-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .details-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; } .details-info h3 { color: #2563eb; font-size: 1.8rem; margin-bottom: 1.5rem; font-weight: 600; } .info-item { display: flex; align-items: flex-start; margin-bottom: 1.2rem; padding: 1rem; background: #f8fafc; border-radius: 10px; border-left: 4px solid #f97316; } .info-item strong { color: #374151; margin-right: 0.8rem; min-width: 120px; font-weight: 600; } .info-item span { color: #6b7280; line-height: 1.6; } .info-item a { color: #2563eb; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .info-item a:hover { color: #f97316; } .details-map { border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 3px solid rgba(249, 115, 22, 0.1); transition: all 0.3s ease; height: 400px; } .details-map:hover { border-color: rgba(249, 115, 22, 0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.15); } .details-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(10%) contrast(1.05); } /* Services at Location - 1x3 */ .location-services { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .service-card { background: white; padding: 2.5rem; border-radius: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(249, 115, 22, 0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #f97316, #2563eb, #f97316); transform: translateX(-100%); transition: transform 0.6s ease; } .service-card:hover::before { transform: translateX(0); } .service-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.15); border-color: rgba(249, 115, 22, 0.3); } .service-card h3 { font-size: 1.4rem; color: #2563eb; margin-bottom: 1.2rem; font-weight: 600; line-height: 1.3; } .service-card p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; flex-grow: 1; } .service-card p a { color: #2563eb; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .service-card p a:hover { color: #f97316; } .service-link { color: #f97316; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; } .service-link:hover { color: #2563eb; transform: translateX(5px); } /* Why Choose Location - 1x3 */ .why-choose-location { 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: 280px; 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); } /* Service Areas - 1x2 */ .service-areas { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; } .service-areas .section-title { color: #ffffff; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .service-areas .section-subtitle { color: #e0e7ff; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; } .area-card { background: rgba(255,255,255,0.1); padding: 3rem 2.5rem; 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: space-between; } .area-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); } .area-card h3 { color: #fed7aa; margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 600; line-height: 1.3; } .area-card p { line-height: 1.6; opacity: 0.9; margin-bottom: 1.5rem; flex-grow: 1; } .area-card p a { color: #fed7aa; text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .area-card p a:hover { color: white; text-shadow: 0 0 10px rgba(253, 215, 170, 0.5); } .area-link { color: #fed7aa; text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; } .area-link:hover { color: white; transform: translateX(5px); } /* Location Reviews - 1x2 */ .location-reviews { background: linear-gradient(135deg, rgba(249, 115, 22, 0.95) 0%, rgba(234, 88, 12, 0.95) 50%, rgba(37, 99, 235, 0.95) 100%), #1e293b; color: white; } .location-reviews .section-title { color: #ffffff; text-shadow: 3px 3px 6px rgba(0,0,0,0.5); font-weight: 800; } .location-reviews .section-subtitle { color: #fed7aa; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); font-weight: 500; } .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; } .review-card { background: rgba(255,255,255,0.15); padding: 2.5rem; border-radius: 20px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.3); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 10px 30px rgba(0,0,0,0.3); } .review-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 60px rgba(0,0,0,0.4); } .review-header { margin-bottom: 1.5rem; } .review-header h3 { color: #ffffff; margin-bottom: 0.5rem; font-size: 1.3rem; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); } .review-rating { color: #fed7aa; font-size: 1.1rem; font-weight: 600; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); } .review-text { font-style: italic; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; color: #f8fafc; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); font-size: 1.05rem; } .review-author { color: #fed7aa; font-weight: 700; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); } .reviews-link { color: #fed7aa; text-decoration: none; font-weight: 700; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; align-self: flex-start; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); } .reviews-link:hover { color: #ffffff; transform: translateX(5px); text-shadow: 2px 2px 4px rgba(0,0,0,0.7); } /* Contact CTA - 1x1 */ .contact-cta { background: white; text-align: center; } .cta-content { max-width: 800px; 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.7; } .cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; } .cta-button-contact { background: linear-gradient(45deg, #f97316, #ea580c); color: white; padding: 1.2rem 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-contact:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4); } .cta-button-contact.secondary { background: transparent; color: #2563eb; border: 2px solid #2563eb; box-shadow: none; } .cta-button-contact.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) { .details-grid { grid-template-columns: 1fr; gap: 2rem; } .details-map { height: 300px; } .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } .why-choose-grid { grid-template-columns: repeat(2, 1fr); } .areas-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-address { padding: 1.5rem 2rem; } .hero-address h2 { font-size: 1.5rem; } .hero-cta { flex-direction: column; gap: 1rem; } .details-card { padding: 2rem; } .details-map { height: 250px; } .services-grid { grid-template-columns: 1fr; gap: 2rem; } .why-choose-grid { grid-template-columns: 1fr; gap: 2rem; } .reviews-grid { grid-template-columns: 1fr; gap: 2rem; } .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-address { padding: 1.2rem 1.5rem; } .hero-address h2 { font-size: 1.3rem; } .details-card { padding: 1.5rem; } .details-map { height: 220px; } .service-card { padding: 2rem; min-height: 300px; } .area-card { padding: 2rem; min-height: 280px; } .why-choose-card { padding: 2rem; min-height: 260px; } .review-card { padding: 2rem; min-height: 300px; } .section { padding: 50px 0; } } /* Performance Optimizations */ .nav-logo img { will-change: transform; } .details-card, .service-card, .area-card, .why-choose-card, .review-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

Auto Body Repair at 55 N Market Boulevard Chehalis WA

Expert collision repair and auto body services at our 55 North Market Boulevard location in Chehalis Washington. Serving Chehalis, Centralia, Olympia, and Lewis County with certified technicians and state-of-the-art equipment.

Five Star Auto Body Chehalis

Address: 55 N Market Boulevard, Chehalis WA 98532

Phone: (360) 748-8344

Hours: Monday - Friday 7:30 AM - 5:30 PM

Call (360) 748-8344 Get Free Estimate

55 N Market Boulevard Location Details

Complete auto body repair facility serving Chehalis, Centralia, Olympia and surrounding Lewis County areas with expert collision repair services

Location Information

Full Address: 55 N Market Boulevard, Chehalis, Washington 98532
Phone Number: (360) 748-8344
Business Hours: Monday through Friday: 7:30 AM - 5:30 PM
Saturday & Sunday: Closed
Services Available: Complete collision repair, auto body restoration, paint matching, dent removal, frame straightening, insurance claims processing
Specialties: Advanced vehicle systems calibration, luxury vehicle repair, commercial fleet services, classic car restoration
Areas Served: Chehalis, Centralia, Olympia, Tumwater, Lacey, Tenino, and surrounding Lewis County areas
Certifications: Manufacturer certified for Kia, FCA, Hyundai, and Nissan collision repair services
Insurance: Direct billing with all major insurance providers including State Farm, Allstate, GEICO, Progressive, and more

Auto Body Services at N Market Boulevard

Comprehensive collision repair and auto body services available at our 55 N Market Boulevard Chehalis location with certified technicians

Collision Repair Chehalis WA

Expert collision repair services at our N Market Boulevard location including frame straightening, structural repair, and advanced safety system calibration. Our Chehalis collision repair specialists restore vehicles to pre-accident condition using manufacturer-approved techniques and OEM parts for quality results.

Learn More →

Auto Body Repair Chehalis WA

Professional auto body repair services at 55 N Market Boulevard including dent removal, panel replacement, and paint restoration. Our certified technicians provide Chehalis auto body repair using advanced techniques and quality materials for lasting restoration results.

Learn More →

Paint & Color Matching Chehalis

Precision paint matching and restoration services at our Chehalis location. Our computerized color matching technology ensures perfect paint blends that seamlessly integrate with your vehicle's original finish. View our completed work in our project gallery showcasing quality paintwork.

View Gallery →

Why Choose Our N Market Boulevard Location

Leading auto body repair facility in Chehalis WA with convenient location, expert technicians, and commitment to customer satisfaction

Convenient Chehalis Location

Strategically located at 55 N Market Boulevard for easy access from Chehalis, Centralia, Olympia, and surrounding Lewis County areas. Our central location provides convenient drop-off and pickup for busy customers with ample parking and easy highway access for your convenience.

Get Directions →

Certified Chehalis Technicians

Our Chehalis location employs certified journeymen technicians with advanced training in collision repair, frame straightening, and modern vehicle systems. Continuous education ensures we stay current with evolving automotive technology. Learn more about our team and company history.

About Our Team →

Insurance Claim Experts

Expert insurance claim processing and direct billing with all major insurance providers at our N Market Boulevard location. Our Chehalis team handles paperwork, works with adjusters, and ensures you receive proper coverage for quality auto body repair services with transparent communication.

Read Reviews →

Areas Served from N Market Boulevard

Our 55 N Market Boulevard Chehalis location provides expert collision repair and auto body services throughout Lewis County Washington

Chehalis & Centralia Auto Body

Serving Chehalis, Centralia, and surrounding North Lewis County areas with comprehensive auto body repair and collision services. Our N Market Boulevard location provides convenient access for residents throughout the greater Chehalis-Centralia metropolitan area. Learn more about our Chehalis area services and coverage.

Explore Chehalis →

Olympia & Tumwater Collision Repair

Professional collision repair services for Olympia, Tumwater, Lacey, and South Thurston County communities. We provide expert auto body repair, paint restoration, and insurance claim support for residents across the greater Olympia area with quality workmanship and timely service from our convenient Chehalis location.

Schedule Service →

Customer Reviews - N Market Boulevard

Read what Chehalis area customers say about their Five Star Auto Body experience at our 55 N Market Boulevard location

Chehalis Location Reviews

4.8★ | Excellent Service

"Outstanding collision repair service at the N Market Boulevard location! They restored my car to like-new condition after a major accident. Professional team, excellent communication, and worked seamlessly with my insurance. The location is convenient and the staff is knowledgeable."

- Jennifer L., Chehalis WA

Read All Reviews →

Quality Workmanship

5.0★ | Exceptional Results

"Exceptional auto body repair experience at the Market Boulevard location. They fixed extensive damage from a collision and the paint match was absolutely perfect. The team was professional, kept me informed throughout the process, and completed the work ahead of schedule. Highly recommend!"

- Robert M., Centralia WA

View More Reviews →

Contact Our N Market Boulevard Location

Get your free auto body repair estimate at our 55 N Market Boulevard Chehalis location. Expert collision repair services, insurance claim support, and quality workmanship for Chehalis, Centralia, Olympia and surrounding Lewis County areas.

Call (360) 748-8344 Get Free Estimate

Chehalis Services

  • Auto Body Repair Chehalis
  • Collision Repair Chehalis
  • Auto Body Repair
  • Collision Repair
  • Project Gallery

All Locations

  • 55 N Market Blvd
  • Vancouver NE 68th
  • Vancouver Columbia St
  • Longview Commerce
  • Chehalis WA
  • Vancouver WA
  • Longview WA

Company

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

Chehalis Contact

  • 55 N Market Blvd: (360) 748-8344
  • Email: info@fivestarvancouver.com
  • Hours: Mon-Fri 7:30 AM - 5:30 PM
  • Address: 55 N Market Boulevard, Chehalis WA 98532

© 2024 Five Star Auto Body. All rights reserved.

Auto Body Repair 55 N Market Blvd Chehalis WA | Collision Repair N Market Boulevard Chehalis | Auto Body Shop Lewis County