Auto Paint Vancouver WA | Car Painting & Refinishing | Five Star Auto Body * { 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; } .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; position: relative; } .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.active { background: linear-gradient(45deg, #f97316, #ea580c); color: white; } .nav-link { color: #374151; text-decoration: none; font-weight: 500; padding: 0.5rem 0; } .nav-link:hover { color: #f97316; } .nav-link.active { color: #f97316; } .nav-cta { background: #f97316; color: white; padding: 0.5rem 1rem; border-radius: 25px; text-decoration: none; font-weight: bold; } .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; } /* Hero Section */ .hero { color: white; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 100px 20px 60px; } /* Desktop Video */ .hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 0; transform: translateX(-50%) translateY(-50%); object-fit: cover; display: block; } /* Desktop - Video overlay */ .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); z-index: 1; } /* Mobile Background Image - Hidden by default */ .hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://assets.ycodeapp.com/assets/app113220/Images/main%20exterior-bis4odmgjg.webp'); background-size: cover; background-position: center; background-attachment: scroll; z-index: -1; display: none; } .hero .container { position: relative; z-index: 2; max-width: 1000px; } .hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.1; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .hero-subtitle { font-size: 1.3rem; margin-bottom: 1.5rem; opacity: 0.95; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.5; } .hero-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 2rem 0; } .hero-feature { background: rgba(255,255,255,0.15); padding: 1.5rem 1rem; border-radius: 15px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); transition: all 0.3s ease; } .hero-feature:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); } .hero-feature h3 { font-size: 1rem; margin-bottom: 0.5rem; color: #fed7aa; } .hero-feature p { font-size: 0.9rem; opacity: 0.9; line-height: 1.4; } .hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; } .cta-primary { display: inline-block; background: linear-gradient(45deg, #f97316, #ea580c); color: white; padding: 15px 35px; text-decoration: none; border-radius: 30px; font-weight: 700; font-size: 1.1rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4); } .cta-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5); } .cta-secondary { display: inline-block; background: transparent; color: white; padding: 15px 35px; text-decoration: none; border-radius: 30px; font-weight: 700; font-size: 1.1rem; border: 2px solid white; transition: all 0.3s ease; } .cta-secondary:hover { background: white; color: #2563eb; transform: translateY(-3px); } /* 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; line-height: 1.7; } /* Paint Services Overview */ .paint-overview { background: white; } .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .overview-content h2 { font-size: 2.2rem; color: #2563eb; margin-bottom: 1.5rem; font-weight: 700; line-height: 1.2; } .overview-content p { color: #6b7280; line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; } .overview-list { list-style: none; margin-bottom: 2rem; } .overview-list li { padding: 0.8rem 0; padding-left: 2rem; position: relative; color: #374151; font-size: 1rem; border-bottom: 1px solid #f3f4f6; } .overview-list li::before { content: '✓'; position: absolute; left: 0; color: #f97316; font-weight: bold; font-size: 1.2rem; } .overview-image { background: linear-gradient(145deg, #f8fafc, #e2e8f0); border-radius: 25px; padding: 2rem; text-align: center; min-height: 400px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(249, 115, 22, 0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.08); } .overview-image img { max-width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } /* Paint Services Grid */ .paint-services { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .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: 350px; display: flex; flex-direction: column; } .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(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.15); } .service-card h3 { font-size: 1.4rem; color: #2563eb; margin-bottom: 1rem; font-weight: 600; } .service-card p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; } .service-card a { color: #f97316; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; } .service-card a:hover { color: #2563eb; transform: translateX(5px); } /* Color Matching Technology */ .color-matching { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; } .color-matching .section-title { color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .color-matching .section-subtitle { color: #e0e7ff; } .tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .tech-card { background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 20px; text-align: center; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); transition: all 0.4s ease; min-height: 260px; display: flex; flex-direction: column; justify-content: center; } .tech-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-10px); } .tech-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #fed7aa; font-weight: 600; } .tech-card p { opacity: 0.9; line-height: 1.6; font-size: 0.95rem; } /* Paint Process Section */ .paint-process { background: white; } .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; position: relative; } .process-grid::before { content: ''; position: absolute; top: 50px; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, #f97316, #2563eb); z-index: 0; } .process-step { background: linear-gradient(145deg, #f8fafc, #e2e8f0); padding: 2rem 1.5rem; border-radius: 20px; text-align: center; position: relative; z-index: 1; transition: all 0.3s ease; min-height: 280px; display: flex; flex-direction: column; align-items: center; } .process-step:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); } .step-number { width: 60px; height: 60px; background: linear-gradient(45deg, #f97316, #ea580c); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin-bottom: 1.5rem; box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3); } .process-step h3 { font-size: 1.1rem; color: #2563eb; margin-bottom: 1rem; font-weight: 600; line-height: 1.3; } .process-step p { color: #6b7280; line-height: 1.6; font-size: 0.9rem; } /* Pricing Guide Section */ .pricing-guide { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .pricing-card { background: white; border-radius: 25px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(249, 115, 22, 0.1); transition: all 0.4s ease; } .pricing-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.15); } .pricing-header { background: linear-gradient(45deg, #f97316, #ea580c); color: white; padding: 2rem; text-align: center; } .pricing-header.featured { background: linear-gradient(45deg, #2563eb, #1d4ed8); } .pricing-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 700; } .pricing-header .price-range { font-size: 1.1rem; opacity: 0.9; } .pricing-body { padding: 2rem; } .pricing-body ul { list-style: none; margin-bottom: 2rem; } .pricing-body li { padding: 0.8rem 0; border-bottom: 1px solid #f3f4f6; color: #374151; padding-left: 1.5rem; position: relative; } .pricing-body li::before { content: '✓'; position: absolute; left: 0; color: #10b981; font-weight: bold; } .pricing-cta { display: block; background: linear-gradient(45deg, #f97316, #ea580c); color: white; text-align: center; padding: 1rem; text-decoration: none; font-weight: 600; border-radius: 25px; transition: all 0.3s ease; } .pricing-cta:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3); } /* Location CTA Section */ .location-cta-section { background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #2563eb 100%); color: white; } .location-cta-section .section-title { color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); } .location-cta-section .section-subtitle { color: #fed7aa; } .locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } .location-card { background: rgba(255,255,255,0.15); padding: 2rem; border-radius: 20px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25); transition: all 0.4s ease; text-align: center; } .location-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-8px); } .location-card h3 { font-size: 1.2rem; margin-bottom: 1rem; color: #fed7aa; } .location-card p { font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; opacity: 0.9; } .location-card .phone { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; } .location-card a { color: white; text-decoration: none; transition: color 0.3s ease; } .location-card a:hover { color: #fed7aa; } .location-card .location-btn { display: inline-block; background: white; color: #f97316; padding: 0.8rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; } .location-card .location-btn:hover { background: #fed7aa; color: #ea580c; transform: translateY(-2px); } /* FAQ Section */ .faq { background: white; } .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { background: linear-gradient(145deg, #f8fafc, #e2e8f0); 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; } .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; transition: all 0.3s ease; } .faq-question:hover { background: rgba(249, 115, 22, 0.05); } .faq-question h3 { color: #2563eb; margin: 0; font-size: 1.1rem; font-weight: 600; line-height: 1.4; flex: 1; padding-right: 1rem; } .faq-toggle { font-size: 1.5rem; color: #f97316; transition: transform 0.3s ease; flex-shrink: 0; } .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: 0 2rem 2rem; color: #6b7280; line-height: 1.8; } /* Related Services */ .related-services { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .related-card { background: white; padding: 2.5rem; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-left: 5px solid #f97316; transition: all 0.4s ease; } .related-card:hover { transform: translateY(-8px); box-shadow: 0 25px 70px rgba(0,0,0,0.12); border-left-color: #2563eb; } .related-card h3 { font-size: 1.3rem; color: #2563eb; margin-bottom: 1rem; font-weight: 600; } .related-card p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; } .related-card a { color: #f97316; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; } .related-card a:hover { color: #2563eb; transform: translateX(5px); } /* Contact CTA */ .contact-cta { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; text-align: center; } .contact-cta .section-title { color: white; } .contact-cta .section-subtitle { color: #e0e7ff; } .contact-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; } .contact-btn-primary { display: inline-block; background: white; color: #2563eb; padding: 15px 40px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.2); } .contact-btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(0,0,0,0.3); } .contact-btn-secondary { display: inline-block; background: transparent; color: white; padding: 15px 40px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1.1rem; border: 2px solid white; transition: all 0.3s ease; } .contact-btn-secondary:hover { background: white; color: #2563eb; transform: translateY(-3px); } /* Footer */ .footer { background: #374151; color: white; padding: 3rem 0 2rem; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 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; } .footer-bottom { border-top: 1px solid #6b7280; padding-top: 2rem; text-align: center; opacity: 0.7; font-size: 0.9rem; } /* Mobile Responsive Styles */ @media (min-width: 769px) { .hero-video { display: block !important; } .hero::after { display: none !important; } } @media (max-width: 1200px) { .hero-features { grid-template-columns: repeat(2, 1fr); } .tech-grid { grid-template-columns: repeat(2, 1fr); } .process-grid { grid-template-columns: repeat(3, 1fr); } .process-grid::before { display: none; } .locations-grid { grid-template-columns: repeat(2, 1fr); } .related-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .mobile-menu-btn { display: block; } /* Mobile - Hide video, show background image */ .hero-video { display: none !important; } .hero::after { display: block !important; } .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); } .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; max-height: 0; overflow: hidden; } .dropdown.active .dropdown-content { max-height: 500px; } .hero { min-height: auto; padding: 120px 20px 60px; } .hero h1 { font-size: 2rem; } .hero-subtitle { font-size: 1rem; } .hero-features { grid-template-columns: 1fr; gap: 1rem; } .hero-cta-group { flex-direction: column; align-items: center; } .section { padding: 50px 0; } .section-title { font-size: 1.8rem; } .overview-grid { grid-template-columns: 1fr; gap: 2rem; } .services-grid, .tech-grid, .process-grid, .pricing-grid, .locations-grid, .related-grid { grid-template-columns: 1fr; } .contact-buttons { flex-direction: column; align-items: center; } .nav-logo img { height: 60px; } } @media (max-width: 480px) { /* Mobile - Hide video, show background image on small screens */ .hero-video { display: none !important; } .hero::after { display: block !important; } .hero { padding: 100px 15px 40px; } .hero h1 { font-size: 1.6rem; } .hero-subtitle { font-size: 0.9rem; } .section { padding: 40px 0; } .section-title { font-size: 1.5rem; } .section-subtitle { font-size: 0.9rem; } .container { padding: 0 15px; } .service-card, .tech-card, .process-step, .pricing-card, .location-card, .related-card { padding: 1.5rem; } .cta-primary, .cta-secondary, .contact-btn-primary, .contact-btn-secondary { padding: 12px 25px; font-size: 1rem; } .nav-logo img { height: 50px; } }
Five Star Auto Body - Auto Paint & Body Shop in Vancouver WA
  • About
  • Services
    Auto Body Repair Collision Repair Auto Paint Dent Repair Frame Repair
  • Locations
    Vancouver WA Longview WA Chehalis WA
  • Gallery
  • Reviews
  • Contact
Your browser does not support the video tag.

Professional Auto Paint Services in Vancouver WA, Longview & Chehalis

Expert car painting and factory color matching serving Clark County and Southwest Washington. From collision paint repair to panel refinishing, Five Star Auto Body delivers showroom-quality finishes at 4 convenient locations.

Factory Color Matching

Advanced spectrophotometer technology for precise OEM color matching on all makes and models

Premium Paint Systems

High-quality basecoat/clearcoat and specialty finishes exceeding manufacturer specs

Lifetime Warranty

Backed by our comprehensive workmanship guarantee at all 4 locations

Free Estimates

Transparent pricing with no hidden fees — insurance claims welcome

Call (360) 699-4887 Get Free Estimate

Expert Car Painting & Automotive Refinishing in Clark County

Five Star Auto Body provides comprehensive auto paint services throughout Southwest Washington, including Vancouver, Salmon Creek, Hazel Dell, Felida, Orchards, Cascade Park, and the greater Clark County area. Whether you need collision paint repair after an accident, factory color restoration, or panel refinishing, our certified technicians deliver quality results using premium automotive paint systems and state-of-the-art color matching technology.

Our 20+ journeymen technicians bring decades of combined experience in automotive painting and refinishing. We work with all vehicle makes and models — from everyday commuters crossing the I-5 Interstate Bridge to luxury vehicles — ensuring each car leaves our shop with a showroom-quality finish that matches or exceeds factory standards. With 96% of Clark County residents commuting by personal vehicle, we understand the importance of keeping your car looking its best.

  • Computerized spectrophotometer color matching
  • Premium basecoat/clearcoat paint systems
  • OEM-quality materials and processes
  • I-CAR and manufacturer-certified technicians
  • Lifetime warranty on all paint work
  • Insurance claim assistance included
  • Integrated paint services for frame and structural repairs
Schedule Your Free Estimate
Professional auto paint color matching and refinishing at Five Star Auto Body in Vancouver WA

Complete Auto Paint Services

From collision repairs to panel refinishing, we offer comprehensive automotive painting solutions for vehicles throughout Vancouver, Longview, Chehalis, and all of Southwest Washington.

Collision Paint Repair

Expert paint restoration following collision damage. We seamlessly blend new paint with existing finish, ensuring invisible repairs that restore your vehicle's appearance and protect against rust and corrosion. Our technicians match factory colors precisely using advanced color-matching technology, whether it's a minor fender bender on Highway 14 or major collision work.

Learn About Collision Repair →

Factory Color Matching

Using computerized spectrophotometer technology, we achieve precise color matching that accounts for paint age, fading, and weathering from the Pacific Northwest's 164 rainy days per year. Our advanced systems analyze your vehicle's exact color formula to create an accurate match, ensuring seamless blending with your existing paint.

Get Color Match Quote →

Spot Painting & Touch-Ups

Repairs for minor scratches, chips, and small damaged areas from parking lot dings, road debris, and daily commuter wear. Our spot painting service blends seamlessly with surrounding panels, providing a quality repair ideal for maintaining your vehicle's appearance and resale value.

Request Touch-Up →

Specialty & Custom Finishes

Beyond standard paint jobs, we offer specialty finishes including metallic, pearl, matte, and satin effects. Our experienced painters create custom color blends and unique effects using premium paint systems. From classic cars to modern luxury vehicles, we deliver any desired finish with precision.

See Custom Work →

Clear Coat Protection

Premium clear coat applications that protect your paint from UV damage, oxidation, and environmental contaminants common in the Pacific Northwest. Our high-quality automotive clear coats provide long-lasting protection against rain, road spray, and seasonal pollen, maintaining that just-painted shine for years.

Protect Your Paint →

Frame Repair Refinishing

After frame straightening and structural repair, affected panels require professional refinishing to restore factory appearance. Our paint and frame teams coordinate closely to ensure seamless color matching and corrosion protection on all structural repair work, delivering complete restoration.

Learn About Frame Repair →

Advanced Color Matching Technology

Our state-of-the-art color matching systems deliver precise results for every vehicle. We invest in the latest automotive paint technology to ensure accurate color matching across all makes and models.

Spectrophotometer Analysis

Digital color measurement technology reads your vehicle's exact paint formula, accounting for manufacturing variations, UV exposure, and the effects of Pacific Northwest weather on color appearance.

Computer Paint Mixing

Precision paint mixing systems create custom formulas matched specifically to your vehicle, ensuring seamless blending with existing paint regardless of age, fading, or environmental weathering.

Multi-Angle Verification

We verify color matches under multiple lighting conditions and viewing angles to ensure the repair is invisible in all environments — from bright summer sun to overcast Pacific Northwest skies.

OEM Database Access

Direct access to manufacturer paint codes and formulas for all vehicle brands ensures authentic color reproduction that meets factory specifications for collision, structural, and cosmetic paint work.

Our Auto Paint Process

Every paint job follows our proven 5-step process, ensuring consistent, high-quality results that meet manufacturer specifications and exceed customer expectations.

1

Assessment & Color Match

Thorough inspection of damage and computerized color analysis to create your exact paint formula. Includes evaluation of any structural or frame damage requiring coordinated repair.

2

Surface Preparation

Professional sanding from 80-grit through 600-grit, cleaning, and priming to create the perfect foundation for paint adhesion and long-lasting results.

3

Primer Application

High-quality primer seals the surface and provides corrosion protection — critical in the rainy Pacific Northwest climate — while ensuring optimal paint adhesion.

4

Paint Application

Expert application of basecoat and clearcoat layers using HVLP spray technology in our climate-controlled spray booth for flawless coverage.

5

Finish & Quality Check

Final polishing, buffing with 1500-2000 grit, and multi-point quality inspection under multiple lighting conditions to ensure flawless results.

Auto Paint Cost Guide — Vancouver WA

Understanding auto paint costs helps you plan your repair. Prices vary based on damage extent, paint type, and vehicle size. Contact us for a free, detailed estimate specific to your vehicle at any of our 4 Washington locations.

Minor Paint Repairs

Starting at $1,000
  • Small scratch repairs
  • Touch-up work
  • Localized color matching
  • Surface preparation included
  • Clear coat application
Get Quote

Panel Repaints

$1,500 - $3,000+
  • Single panel refinishing
  • Bumper or fender repaint
  • Door panel refinishing
  • Factory color matching
  • 2-3 day turnaround
Get Panel Quote

Multi-Panel & Structural

$3,000+
  • Multiple panel refinishing
  • Collision & frame repair paint
  • Premium paint systems
  • Comprehensive prep work
  • Lifetime quality guarantee
Get Full Quote

Auto Paint Services at 4 Washington Locations

Visit any of our convenient locations in Vancouver, Longview, or Chehalis for expert auto paint services. Serving Clark County, Cowlitz County, Lewis County, and all of Southwest Washington. Free estimates available at all shops.

NE 68th St — Vancouver

3019 NE 68th St
Vancouver, WA 98665

(360) 699-4887
Auto Paint Vancouver

Columbia St — Vancouver

1813 Columbia St
Vancouver, WA 98660

(360) 258-1612
Auto Paint Vancouver

Longview Location

760 Commerce Ave
Longview, WA 98632

(360) 353-3018
Auto Paint Longview

Chehalis Location

55 N Market Blvd
Chehalis, WA 98532

(360) 748-8344
Auto Paint Chehalis

Auto Paint Questions & Answers

Common questions about car painting, costs, and our auto paint process in Vancouver WA and Southwest Washington.

How much does a car paint job cost in Vancouver WA?

+

Auto paint costs vary based on the scope of work. Most paint jobs start at $1,000 for minor repairs. Single panel repaints typically cost $1,500-$3,000+ depending on the panel size and paint type. Multi-panel work and collision paint repairs are $3,000 and up depending on damage extent and preparation required. We provide free, detailed estimates for all auto paint work at any of our 4 Washington locations in Vancouver, Longview, and Chehalis.

How long does auto paint take to complete?

+

Auto paint timelines depend on the project scope. Minor repairs typically take 1-2 days. Single panel repaints usually require 2-3 business days. Multi-panel work may take 5-7 business days to ensure proper preparation, application, and curing time. If frame or structural repair is also needed, timelines may extend to coordinate both services. We provide accurate timeframes during your free estimate.

Do you offer factory color matching for all vehicle makes?

+

Yes, Five Star Auto Body uses advanced computerized spectrophotometer technology for precise factory color matching on all vehicle makes and models. Our systems access OEM color databases and analyze your specific vehicle's paint to create an accurate match. We account for paint age, fading, and weathering — especially important in the Pacific Northwest climate — to ensure seamless blending with your existing finish.

What types of automotive paint do you use?

+

We use premium automotive paint systems including basecoat/clearcoat, single-stage, and waterborne paints. Our paint systems meet or exceed OEM specifications and include options for metallic, pearl, matte, satin, and custom colors. We select paint based on your vehicle's original finish and your preferences, ensuring the best results for durability, appearance, and long-term protection against Southwest Washington's weather conditions.

Does frame or structural damage require repainting?

+

Yes, most frame straightening and structural repair work requires repainting the affected panels. When structural components are repaired or replaced, the surrounding paint is typically compromised. Our frame repair and paint departments work together as a coordinated team to ensure seamless color matching, proper corrosion protection, and a factory-quality finish on all structural repair jobs.

Is your auto paint work covered by warranty?

+

All auto paint work performed at Five Star Auto Body is backed by our comprehensive lifetime warranty on workmanship. This covers paint defects, peeling, and finish issues resulting from our application process. We stand behind our work and are committed to your complete satisfaction. Our warranty is honored at all four of our Washington locations.

Do you work with insurance for paint repairs in Clark County?

+

Yes, we work directly with all major insurance companies for collision paint repairs and claim-related work throughout Clark County, Cowlitz County, and Lewis County. Our team handles the paperwork and communicates directly with your insurance adjuster to ensure proper coverage. We help navigate the claims process and ensure you receive the quality paint repair your vehicle deserves.

Related Auto Body Services

Our comprehensive services work together to restore your vehicle to pre-accident condition. Every service is available at all 4 Washington locations.

Collision Repair

Complete collision repair including structural work, panel replacement, and paint refinishing. Our I-CAR certified technicians restore your vehicle using manufacturer-approved methods and OEM parts.

Explore Collision Repair →

Auto Body Repair

Professional auto body repair for dents, dings, scratches, and panel damage. We use advanced techniques including paintless dent repair when possible to maintain your vehicle's original finish.

Explore Auto Body Repair →

Dent Repair

Expert dent removal using both traditional and paintless dent repair methods. We assess each situation to recommend the most cost-effective approach while delivering flawless results.

Explore Dent Repair →

Frame Repair

Professional frame straightening and structural repair restoring your vehicle's geometry to manufacturer specifications. Frame repairs are coordinated with our paint department for seamless refinishing.

Explore Frame Repair →

Ready for a Flawless Finish?

Contact Five Star Auto Body today for your free auto paint estimate. Serving Vancouver, Clark County, Longview, Chehalis, and all of Southwest Washington with precision paint work that exceeds expectations.

Call (360) 699-4887 Request Free Estimate

Auto Paint Services

  • Auto Paint Vancouver WA
  • Auto Paint Longview WA
  • Auto Paint Chehalis WA

All Services

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

Locations

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

Resources

  • Blog
  • Project Gallery
  • Reviews
  • 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 Paint Vancouver WA | Car Painting Longview WA | Automotive Refinishing Chehalis WA | Serving Clark County & Southwest Washington