Contact Five Star Auto Body | Free Estimates Vancouver WA, Longview WA & Chehalis WA * { 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; } .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 { color: white; text-align: center; position: relative; height: 100vh; min-height: 100vh; max-height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; } .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); z-index: 0; } .hero .container { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .hero h1 { font-size: 3rem; 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.2rem; margin-bottom: 2rem; opacity: 0.95; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 2rem auto; max-width: 900px; } .contact-method { background: rgba(255,255,255,0.15); padding: 2rem; border-radius: 20px; text-align: center; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; min-height: 220px; display: flex; flex-direction: column; justify-content: center; } .contact-method:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.2); } .contact-method h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #fed7aa; font-weight: 600; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); line-height: 1.3; } .contact-method p { font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; } .contact-button { display: inline-block; background: linear-gradient(45deg, #f97316, #ea580c); color: white; padding: 12px 24px; text-decoration: none; border-radius: 25px; font-weight: 600; font-size: 0.95rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3); margin-top: auto; } .contact-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4); } .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; } .what-to-expect { background: white; } .expect-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-bottom: 3rem; } .expect-card { background: linear-gradient(145deg, #f8fafc, #e2e8f0); padding: 2.5rem; border-radius: 20px; border-left: 5px solid #f97316; min-height: 280px; display: flex; flex-direction: column; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .expect-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-left-color: #2563eb; } .expect-card h3 { font-size: 1.4rem; color: #2563eb; margin-bottom: 1.2rem; font-weight: 600; line-height: 1.3; } .expect-card p { color: #6b7280; line-height: 1.6; font-size: 1rem; margin-bottom: 1.5rem; flex-grow: 1; } .visit-preparation { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; padding: 3rem; border-radius: 25px; text-align: center; box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2); } .visit-preparation h3 { color: white; font-size: 1.6rem; margin-bottom: 1.5rem; font-weight: 600; } .visit-preparation > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; } .visit-preparation > div > div { background: rgba(255,255,255,0.1); padding: 1.5rem; border-radius: 15px; backdrop-filter: blur(10px); } .visit-preparation h4 { color: #fed7aa; margin-bottom: 1rem; font-size: 1.1rem; font-weight: 600; } .visit-preparation p { font-size: 0.9rem; line-height: 1.5; opacity: 0.9; } .insurance-notice { background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%); color: white; padding: 2rem 0; position: relative; overflow: hidden; border-top: 4px solid #f97316; border-bottom: 4px solid #f97316; } .notice-content { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; } .notice-text h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: #fed7aa; text-align: center; } .insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } .insurance-item { background: rgba(255, 255, 255, 0.1); padding: 1rem; border-radius: 12px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); transition: all 0.3s ease; } .insurance-item:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); } .call-ahead { border-left: 4px solid #ef4444; } .walk-in { border-left: 4px solid #10b981; } .insurance-companies { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; flex-wrap: wrap; } .company-badge { padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.7rem; font-weight: bold; color: white; text-transform: uppercase; letter-spacing: 0.5px; } .geico { background: #005a9b; } .progressive { background: #0066cc; } .statefarm { background: #cc0000; } .insurance-item p { font-size: 0.9rem; line-height: 1.4; margin: 0; } .insurance-item strong { color: #fed7aa; } .notice-cta { display: flex; align-items: center; } .urgent-cta { background: linear-gradient(45deg, #ef4444, #dc2626); color: white; padding: 0.8rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: bold; font-size: 0.9rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); } .urgent-cta:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6); } .contact-info { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; } .contact-info-card { background: white; padding: 2.5rem; border-radius: 25px; text-align: center; 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); min-height: 280px; display: flex; flex-direction: column; justify-content: center; } .contact-info-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.15); } .contact-info-card h3 { font-size: 1.4rem; color: #2563eb; margin-bottom: 1.5rem; font-weight: 600; line-height: 1.3; } .contact-info-card p { color: #6b7280; line-height: 1.7; font-size: 1rem; margin-bottom: 1.5rem; } .contact-info-card a { color: #f97316; text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .contact-info-card a:hover { color: #2563eb; } .service-hours { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; } .service-hours .section-title { color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .service-hours .section-subtitle { color: #e0e7ff; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 800px; margin: 0 auto; } .hours-card { background: rgba(255,255,255,0.1); padding: 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: 280px; display: flex; flex-direction: column; justify-content: center; text-align: center; } .hours-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); } .hours-card h3 { color: #fed7aa; margin-bottom: 1.5rem; font-size: 1.4rem; font-weight: 600; line-height: 1.3; } .hours-card p { line-height: 1.6; opacity: 0.9; margin-bottom: 1rem; font-size: 1.1rem; } .hours-card .highlight { color: #fed7aa; font-weight: 600; font-size: 1.2rem; } .locations { background: white; } .locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1000px; margin: 0 auto; } .location-card { background: linear-gradient(145deg, #ffffff, #f8fafc); border-radius: 25px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(249, 115, 22, 0.1); min-height: 550px; display: flex; flex-direction: column; } .location-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 35px 90px rgba(0,0,0,0.18); border-color: rgba(249, 115, 22, 0.3); } .location-content { padding: 2.5rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .location-map { height: 180px; margin: 1.5rem 0; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 2px solid rgba(249, 115, 22, 0.1); transition: all 0.3s ease; } .location-map:hover { border-color: rgba(249, 115, 22, 0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.15); } .location-map iframe { width: 100%; height: 100%; border: none; border-radius: 13px; filter: grayscale(10%) contrast(1.05); } .location-card h3 { color: #2563eb; margin-bottom: 1.5rem; font-size: 1.4rem; font-weight: 600; line-height: 1.3; } .location-details { margin-bottom: 2rem; flex-grow: 1; } .detail-item { display: flex; align-items: flex-start; margin-bottom: 1rem; color: #6b7280; line-height: 1.6; } .detail-item strong { color: #374151; margin-right: 0.5rem; } .location-buttons { display: flex; gap: 1rem; margin-top: auto; } .btn-primary, .btn-secondary { flex: 1; padding: 0.8rem 1.5rem; border-radius: 20px; text-decoration: none; text-align: center; font-weight: 500; font-size: 0.95rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .btn-primary { background: linear-gradient(45deg, #f97316, #ea580c); color: white; box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4); } .btn-secondary { background: transparent; color: #2563eb; border: 2px solid #2563eb; } .btn-secondary:hover { background: #2563eb; color: white; transform: translateY(-2px); } .service-coverage { background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #2563eb 100%); color: white; } .service-coverage .section-title { color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .service-coverage .section-subtitle { color: #fed7aa; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); } .contact-faq { background: #f9fafb; } .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { background: white; border-radius: 15px; margin-bottom: 1.5rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s ease; min-height: 120px; display: flex; flex-direction: column; } .faq-item:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); } .faq-question { padding: 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e5e7eb; transition: all 0.3s ease; flex-grow: 1; } .faq-question:hover { background: #f8fafc; } .faq-question h3 { color: #2563eb; margin: 0; font-size: 1.2rem; font-weight: 600; line-height: 1.4; } .faq-toggle { font-size: 1.5rem; color: #f97316; transition: transform 0.3s ease; } .faq-item.active .faq-toggle { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .faq-answer.active { max-height: 300px; } .faq-answer-content { padding: 2rem; color: #6b7280; line-height: 1.7; font-size: 1rem; } .map-section { background: white; } .map-container { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); height: 500px; position: relative; } .map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1); } .footer { background: #374151; color: white; padding: 3rem 0 2rem; } .footer-content { display: grid; grid-template-columns: repeat(4, 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; } @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-link { display: block; padding: 1rem 1.5rem; } .dropdown-content { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: #f8fafc; margin: 0; border-radius: 0; max-height: 0; overflow: hidden; } .dropdown.active .dropdown-content { max-height: 500px; } .hero { min-height: auto; height: auto; padding: 100px 0 60px; } .hero h1 { font-size: 2.2rem; } .contact-methods { grid-template-columns: 1fr; max-width: 400px; } .expect-grid { grid-template-columns: 1fr; } .visit-preparation > div { grid-template-columns: 1fr; } .insurance-grid { grid-template-columns: 1fr; } .notice-content { grid-template-columns: 1fr; text-align: center; } .contact-info-grid { grid-template-columns: 1fr; } .hours-grid { grid-template-columns: 1fr; } .locations-grid { grid-template-columns: 1fr; } .footer-content { grid-template-columns: 1fr; } }
Five Star Auto Body - Vancouver WA Auto Body Shop
  • Home
  • About
  • Services
    Auto Body Repair Collision Repair Dent Repair Auto Paint Frame Straightening
  • Locations
    Vancouver WA Longview WA Chehalis WA
  • Gallery
  • Reviews
  • Contact

Contact Five Star Auto Body for Free Collision Repair Estimates

Get free in-person estimates for collision repair, frame straightening, dent repair, and auto painting at 4 convenient Washington locations. Walk-ins welcome Mon-Fri 9AM-4PM for most insurance companies. 20+ certified journeymen technicians serving Vancouver, Longview, and Chehalis.

Call to Schedule (Required for 3 Insurance Companies Only)

ONLY Geico, Progressive, and State Farm customers need to call ahead to schedule. All other insurance companies can walk in anytime during estimate hours (9AM-4PM).

Call (360) 699-4887

Email for Questions Only

Ask about our collision repair, frame straightening, dent repair, auto painting services, hours, or insurance process. We do NOT provide estimates via email — all estimates must be done in-person.

Email Questions

Walk-In for Free Estimates

Walk-ins welcome Mon-Fri 9AM-4PM for estimates. General business hours 8AM-5PM. ALL insurance companies except Geico, Progressive, and State Farm.

Find Location

What to Expect During Your Auto Body Estimate Visit

Professional collision repair and structural damage assessment at Five Star Auto Body locations across Southwest Washington

Free In-Person Damage Assessment

Our certified technicians perform comprehensive vehicle inspections to identify all collision damage, including hidden structural and frame issues not visible from the surface. We examine paint damage, dent severity, frame alignment, bumper integrity, and safety system functionality using professional diagnostic tools.

Average Assessment Time: 15-30 minutes

Insurance Claims Consultation

We help navigate your insurance claim process with expertise gained from working with all major providers. Our team explains coverage options, deductible requirements, and claim timelines specific to your policy — whether your vehicle needs minor dent repair or full frame straightening and structural repair.

Insurance Companies Served: All major providers including Geico, Progressive, State Farm

Detailed Repair Timeline Estimate

Receive accurate completion timeframes based on damage severity, parts availability, and current shop capacity across our Vancouver, Longview, and Chehalis locations. Frame and structural repairs typically require additional time for computerized measuring and verification to manufacturer tolerances.

Typical Timelines: Minor repairs 1-3 days | Collision work 7-14 days | Frame repair 5-10+ days

Quality Guarantee Discussion

Learn about our comprehensive warranty coverage on collision repairs, frame straightening, paint work, and parts installation. We explain our quality control processes, manufacturer certifications, and post-repair support that backs every job with a lifetime guarantee.

Warranty Coverage: Lifetime guarantee on workmanship and materials

What to Bring for Your Auto Body Estimate Visit

Insurance Information

Policy card, claim number (if filed), and contact information for your insurance agent or company representative

Vehicle Documentation

Registration, accident report (if available), and photos of damage taken immediately after the incident

Personal Items

Remove all personal belongings from your vehicle and ensure keys are available for our technicians to access all areas

Important Insurance Information

GEICO PROGRESSIVE STATE FARM

Appointment Required: These 3 insurance companies require scheduled appointments. Call before visiting to schedule your estimate.

All Other Insurance Companies: No appointment needed! Walk-ins welcome anytime Monday-Friday 9:00 AM - 4:00 PM for free collision repair, frame repair, dent repair, and auto paint estimates.

Call (360) 699-4887

How to Contact Five Star Auto Body

Most customers can walk in anytime for estimates. Only Geico, Progressive, and State Farm customers need to call first.

Phone for Scheduling (3 Insurance Companies Only)

Call any of our locations ONLY if you have Geico, Progressive, or State Farm insurance to schedule your required appointment for collision repair, frame straightening, or any auto body service.

Main: (360) 699-4887
Business Hours: Mon-Fri 8:00 AM - 5:00 PM
Estimate Hours: Mon-Fri 9:00 AM - 4:00 PM

Email for General Information

Send us questions about our auto body repair services — including collision repair, frame straightening, dent repair, and auto painting — business hours, or insurance requirements.

Email: fivestarautobody@gmail.com
Response: Within 24 hours during business days

Walk-In for Free In-Person Estimates

All estimates must be done in-person at any of our 4 Washington locations. Walk-ins welcome Mon-Fri 9AM-4PM for estimates (most insurance companies). Saturday estimates at NE 68th St Vancouver.

Locations: Vancouver (2), Longview, Chehalis
Saturday Estimates: 3019 NE 68th St Vancouver 10:00 AM - 2:00 PM

Auto Body Shop Hours

Convenient hours across all locations with Saturday estimates available at our 3019 NE 68th St Vancouver location

General Business Hours

Monday - Friday

8:00 AM - 5:00 PM

All four locations: Vancouver (2), Longview, and Chehalis

Walk-In Estimate Hours

Monday - Friday

9:00 AM - 4:00 PM

Saturday: 3019 NE 68th St Vancouver 10:00 AM - 2:00 PM

Our 4 Washington Auto Body Locations

Visit any location for expert collision repair, frame straightening, dent repair, auto painting, and free in-person estimates during estimate hours.

Columbia St - Vancouver WA

Address: 1813 Columbia St, Vancouver WA 98660
Phone: (360) 258-1612
Business Hours: Mon-Fri 8:00 AM - 5:00 PM
Estimate Hours: Mon-Fri 9:00 AM - 4:00 PM
Services: Collision repair, frame straightening, dent repair, auto painting
Call Location Details & Directions

3019 NE 68th St - Vancouver WA

Address: 3019 NE 68th St, Vancouver WA 98665
Phone: (360) 699-4887
Business Hours: Mon-Fri 8:00 AM - 5:00 PM
Estimate Hours: Mon-Fri 9:00 AM - 4:00 PM
Saturday: 10:00 AM - 2:00 PM
Services: Collision repair, frame straightening, dent repair, auto painting
Call Location Details & Directions

Commerce Ave - Longview WA

Address: 760 Commerce Ave, Longview WA 98632
Phone: (360) 353-3018
Business Hours: Mon-Fri 8:00 AM - 5:00 PM
Estimate Hours: Mon-Fri 9:00 AM - 4:00 PM
Services: Collision repair, frame straightening, dent repair, auto painting
Call Location Details & Directions

N Market Blvd - Chehalis WA

Address: 55 N Market Blvd, Chehalis WA 98532
Phone: (360) 748-8344
Business Hours: Mon-Fri 8:00 AM - 5:00 PM
Estimate Hours: Mon-Fri 9:00 AM - 4:00 PM
Services: Collision repair, frame straightening, dent repair, auto painting
Call Location Details & Directions

Auto Body Repair Service Areas Throughout Southwest Washington

Comprehensive collision repair, frame straightening, and auto body services serving Vancouver, Longview, Chehalis and surrounding communities

Vancouver & Clark County Auto Body Services

Our two Vancouver locations provide full-service auto body repair to Clark County's 532,000+ residents. From collision repair and frame straightening to paintless dent repair and professional refinishing, we serve Vancouver, Camas, Washougal, Battle Ground, Ridgefield, Salmon Creek, Hazel Dell, Felida, and surrounding communities.

Primary Coverage: Clark County & Southwest Washington

Longview & Chehalis Auto Body Services

Professional collision repair, frame straightening, and complete auto body services serving Longview, Kelso, Castle Rock, Woodland, Centralia, Olympia, Tumwater and surrounding Cowlitz and Lewis County communities along the I-5 corridor.

Primary Coverage: Cowlitz County, Lewis County & Thurston County

Why Choose Five Star Auto Body

20+ Certified Journeymen

I-CAR and ASE certified technicians with manufacturer training ensuring OEM-quality collision and structural repairs

Lifetime Warranty

Comprehensive lifetime guarantee on all auto body repairs, frame straightening, paint work, and parts installation

Insurance Expertise

Direct billing and claims processing with all major insurance companies across Washington State

Complete Services

Collision repair, frame straightening, dent repair, and auto painting under one roof

Frequently Asked Contact Questions

Common questions about contacting Five Star Auto Body and scheduling your visit

How quickly can I get a free auto body repair estimate?

+

Most customers can walk in immediately Monday-Friday 9:00 AM - 4:00 PM and get their estimate right away. Saturday estimates are available at our 3019 NE 68th St Vancouver location from 10:00 AM - 2:00 PM. If you have Geico, Progressive, or State Farm insurance, you must call ahead to schedule an appointment first.

Do I need an appointment to visit Five Star Auto Body?

+

NO appointment needed for most customers! Only Geico, Progressive, and State Farm insurance customers must call ahead. For all other insurance companies, just walk in during estimate hours (Mon-Fri 9AM-4PM, Saturday 10AM-2PM at NE 68th St Vancouver).

Which Five Star Auto Body location should I contact?

+

Contact the location most convenient for you — all four locations offer the same high-quality services including collision repair, frame straightening, dent repair, and auto painting.

Can I get help with insurance claims over the phone?

+

We cannot process insurance claims over the phone — all claims work must be done in-person at one of our locations. However, you can call with questions about the process and our team will guide you through what to expect.

What auto body services does Five Star offer?

+

Five Star Auto Body provides comprehensive services including collision repair, frame straightening and structural repair, paintless dent repair, auto body painting and refinishing, bumper repair, fender repair, and glass replacement. All services come with a lifetime warranty on workmanship and materials.

Does Five Star Auto Body offer frame repair and straightening?

+

Yes. Five Star Auto Body provides professional frame straightening and structural repair at all four Washington locations. Our certified technicians use computerized measuring systems and hydraulic frame machines to restore your vehicle's structural geometry to manufacturer specifications. Visit any location for a free frame damage assessment.

Find All Five Star Auto Body Locations

Four auto body repair locations serving Southwest Washington — Vancouver, Longview, and Chehalis

Services

  • Auto Body Repair
  • Collision Repair
  • Dent Repair
  • Auto Paint
  • Frame Straightening

Locations

  • Vancouver WA
  • Longview WA
  • Chehalis WA
  • Columbia St
  • NE 68th St

Company

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

Contact Info

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

© 2026 Five Star Auto Body. All rights reserved.

Auto Body Repair Vancouver WA | Collision Repair & Frame Straightening Longview WA | Dent Repair & Auto Paint Chehalis WA