Five Star Auto Body NE 68th Street Vancouver WA | Auto Body Shop Northeast Vancouver | Collision Repair 98662 * { 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 - Same as homepage */ .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); } @media (max-width: 768px) { .nav-logo img { height: 60px; } .nav-container { padding: 0 15px; } } @media (max-width: 480px) { .nav-logo img { height: 50px; } .nav-container { padding: 0 10px; } } .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: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; } .nav-link:hover { 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; } .dropdown-toggle.active::after { transform: rotate(180deg); } /* Hero Section */ .hero { background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #2563eb 100%); color: white; height: 100vh; min-height: 100vh; text-align: center; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 100px 20px 20px; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.1); z-index: 1; } .hero .container { position: relative; z-index: 2; width: 100%; max-height: calc(100vh - 140px); display: flex; flex-direction: column; justify-content: center; } .hero h1 { font-size: 2.8rem; font-weight: bold; margin-bottom: 0.8rem; line-height: 1.2; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); } .hero-subtitle { font-size: 1.1rem; margin-bottom: 1.5rem; opacity: 0.95; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); max-width: 800px; margin-left: auto; margin-right: auto; } .hero-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem auto 0; max-width: 600px; } .feature-card { background: rgba(255,255,255,0.2); padding: 1.5rem 1rem; border-radius: 20px; backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s ease; } .feature-card:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.2); } .feature-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; opacity: 0.9; } .feature-main { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; } .feature-sub { font-size: 0.8rem; opacity: 0.8; } .hero-cta { margin-top: 2rem; } .cta-button { display: inline-block; background: rgba(255,255,255,0.2); color: white; padding: 15px 30px; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 1.1rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.3); margin: 0 10px; } .cta-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); background: rgba(255,255,255,0.3); } /* 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: 600px; margin-left: auto; margin-right: auto; } /* Location Details Section */ .location-details { background: linear-gradient(135d, #2563eb 0%, #1d4ed8 100%); color: white; } .location-details .section-title { color: #ffffff; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); font-weight: 800; } .location-details .section-subtitle { color: #e0e7ff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-weight: 500; } .details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .detail-card { text-align: center; padding: 3rem 2rem; background: rgba(255,255,255,0.15); border-radius: 25px; 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); min-height: 280px; display: flex; flex-direction: column; justify-content: center; } .detail-card:hover { transform: translateY(-10px) scale(1.05); background: rgba(255,255,255,0.2); box-shadow: 0 25px 60px rgba(0,0,0,0.3); } .detail-icon { font-size: 3rem; margin-bottom: 1rem; } .detail-title { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: white; line-height: 1.2; } .detail-desc { font-size: 1rem; opacity: 0.9; line-height: 1.5; } .detail-link { color: #fed7aa; text-decoration: none; font-weight: 600; margin-top: 1rem; transition: all 0.3s ease; } .detail-link:hover { color: white; text-shadow: 0 0 10px rgba(253, 215, 170, 0.5); } /* Location Info Section */ .location-info { background: white; } .info-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .info-content { padding: 2rem 0; } .info-content h3 { font-size: 2rem; color: #2563eb; margin-bottom: 1.5rem; font-weight: 600; } .info-content p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; } .contact-info { background: #f8fafc; padding: 2rem; border-radius: 20px; border-left: 5px solid #f97316; margin: 2rem 0; } .contact-row { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1rem; } .contact-row:last-child { margin-bottom: 0; } .contact-label { font-weight: 600; color: #374151; min-width: 100px; margin-right: 1rem; } .contact-value { color: #6b7280; } .contact-value a { color: #2563eb; text-decoration: none; transition: color 0.3s ease; } .contact-value a:hover { color: #f97316; } .map-container { background: #f8fafc; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .map-frame { height: 400px; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1); transition: filter 0.3s ease; } .map-frame:hover iframe { filter: grayscale(0%) contrast(1.2); } /* Services Section */ .services { background: #f9fafb; } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .service-card { background: linear-gradient(145deg, #ffffff, #f8fafc); 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; text-align: center; } .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-icon { width: 80px; height: 80px; background: linear-gradient(45deg, #f97316, #ea580c); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: white; box-shadow: 0 10px 30px 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-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; justify-content: center; margin-top: auto; } .service-link:hover { color: #2563eb; transform: translateX(5px); } /* Why Choose Section */ .why-choose { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); } .why-choose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .why-choose-card { 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; text-align: center; } .why-choose-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; } .why-choose-card:hover::before { transform: translateX(0); } .why-choose-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); } .why-choose-icon { width: 80px; height: 80px; background: linear-gradient(45deg, #2563eb, #1d4ed8); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: white; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); } .why-choose-card h3 { font-size: 1.4rem; color: #2563eb; margin-bottom: 1.2rem; font-weight: 600; line-height: 1.3; } .why-choose-card p { color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; 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; justify-content: center; margin-top: auto; } .why-choose-link:hover { color: #2563eb; transform: translateX(5px); } /* Directions Section */ .directions { background: white; } .directions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; } .directions-card { background: linear-gradient(145deg, #f8fafc, #e2e8f0); padding: 2.5rem; 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: flex-start; } .directions-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; } .directions-card:hover::before { left: 100%; } .directions-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-left-color: #2563eb; } .directions-card h3 { font-size: 1.4rem; font-weight: 600; color: #2563eb; margin-bottom: 1.2rem; line-height: 1.3; } .directions-card p { color: #6b7280; line-height: 1.6; font-size: 1rem; margin-bottom: 1.5rem; flex-grow: 1; } .directions-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; } .directions-link:hover { color: #2563eb; transform: translateX(5px); } /* CTA Section */ .cta-section { background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #2563eb 100%); color: white; } .cta-section .section-title { color: #ffffff; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); font-weight: 800; } .cta-section .section-subtitle { color: #fed7aa; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-weight: 500; } .cta-content { text-align: center; max-width: 800px; margin: 0 auto; } .cta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin: 2rem 0; } .cta-item { background: rgba(255,255,255,0.2); padding: 2rem 1.5rem; border-radius: 25px; 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); text-decoration: none; color: white; display: flex; flex-direction: column; align-items: center; min-height: 200px; justify-content: center; } .cta-item:hover { transform: translateY(-5px) scale(1.05); background: rgba(255,255,255,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.2); } .cta-item h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.3; } .cta-item p { font-size: 0.9rem; line-height: 1.5; opacity: 0.9; text-align: center; } /* Footer - Same as homepage */ .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; } /* Mobile Responsive */ @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; } /* Mobile Hero */ .hero { height: 100vh; min-height: 100vh; padding: 90px 15px 15px; } .hero h1 { font-size: 1.8rem; margin-bottom: 0.8rem; line-height: 1.2; } .hero-subtitle { font-size: 1rem; margin-bottom: 1.2rem; padding: 0 10px; } .hero-features { grid-template-columns: 1fr; gap: 1rem; margin: 1.5rem auto 0; max-width: 300px; } .feature-card { padding: 1.2rem 1rem; } .feature-title { font-size: 0.8rem; } .feature-main { font-size: 1rem; } .feature-sub { font-size: 0.75rem; } .cta-button { padding: 12px 24px; font-size: 1rem; margin: 5px; display: block; margin-bottom: 10px; } /* Mobile Sections */ .section { padding: 50px 0; } .section-title { font-size: 1.8rem; margin-bottom: 1rem; } .section-subtitle { font-size: 1rem; margin-bottom: 2rem; padding: 0 10px; } /* Details: 3x1 becomes 1x3 */ .details-grid { grid-template-columns: 1fr; gap: 1.5rem; } .detail-card { padding: 2rem 1.5rem; min-height: auto; } .detail-icon { font-size: 2.5rem; margin-bottom: 0.8rem; } .detail-title { font-size: 1.2rem; margin-bottom: 0.8rem; } .detail-desc { font-size: 0.9rem; } /* Location Info */ .info-container { grid-template-columns: 1fr; gap: 2rem; } .info-content h3 { font-size: 1.6rem; margin-bottom: 1rem; } .info-content p { font-size: 0.9rem; margin-bottom: 1rem; } .contact-info { padding: 1.5rem; } .contact-row { flex-direction: column; align-items: flex-start; margin-bottom: 0.8rem; } .contact-label { margin-bottom: 0.3rem; min-width: auto; } .map-frame { height: 250px; } /* Services: 3x1 becomes 1x3 */ .services-grid { grid-template-columns: 1fr; gap: 1.5rem; } .service-card { padding: 1.5rem; min-height: auto; } .service-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 1rem; } .service-card h3 { font-size: 1.2rem; margin-bottom: 1rem; } .service-card p { font-size: 0.9rem; margin-bottom: 1rem; } /* Why Choose: 3x1 becomes 1x3 */ .why-choose-grid { grid-template-columns: 1fr; gap: 1.5rem; } .why-choose-card { padding: 1.5rem; min-height: auto; } .why-choose-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 1rem; } .why-choose-card h3 { font-size: 1.2rem; margin-bottom: 1rem; } .why-choose-card p { font-size: 0.9rem; margin-bottom: 1rem; } /* Directions: 2x1 becomes 1x2 */ .directions-grid { grid-template-columns: 1fr; gap: 1.5rem; } .directions-card { padding: 1.5rem; min-height: auto; } .directions-card h3 { font-size: 1.2rem; margin-bottom: 1rem; } .directions-card p { font-size: 0.9rem; margin-bottom: 1rem; } /* CTA: 2x1 becomes 1x2 */ .cta-grid { grid-template-columns: 1fr; gap: 1rem; } .cta-item { padding: 1.5rem 1rem; min-height: auto; } .cta-item h3 { font-size: 1.1rem; margin-bottom: 0.8rem; } .cta-item p { font-size: 0.85rem; } /* Footer */ .footer-content { grid-template-columns: 1fr; gap: 2rem; } .footer-section h3 { font-size: 1.1rem; margin-bottom: 1rem; } .footer-section a { font-size: 0.9rem; } .footer-bottom { font-size: 0.8rem; padding-top: 1.5rem; } } @media (max-width: 480px) { .hero { height: 100vh; min-height: 100vh; padding: 80px 10px 10px; } .hero h1 { font-size: 1.5rem; margin-bottom: 0.6rem; } .hero-subtitle { font-size: 0.9rem; margin-bottom: 1rem; padding: 0 5px; } .hero-features { max-width: 260px; gap: 0.8rem; margin: 1rem auto 0; } .feature-card { padding: 1rem 0.8rem; } .feature-title { font-size: 0.75rem; } .feature-main { font-size: 0.9rem; } .feature-sub { font-size: 0.7rem; } .cta-button { padding: 10px 20px; font-size: 0.9rem; } .section { padding: 40px 0; } .section-title { font-size: 1.6rem; margin-bottom: 0.8rem; } .section-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; padding: 0 5px; } .container { padding: 0 15px; } .detail-card, .service-card, .why-choose-card, .directions-card { padding: 1.2rem; } .contact-info { padding: 1.2rem; } .cta-item { padding: 1.2rem 0.8rem; } }
Five Star Auto Body
  • About
  • Services
    Auto Body Repair Collision Repair
  • Locations
    Vancouver WA Longview WA Chehalis WA
  • Gallery
  • Reviews
  • Contact

Five Star Auto Body NE 68th Street Vancouver

Professional auto body and collision repair services at our NE 68th Street Vancouver WA location. Conveniently serving Northeast Vancouver, Hazel Dell, Salmon Creek and surrounding neighborhoods with expert service.

NE 68th Street
Vancouver WA 98662
Easy Parking Available
Mon-Fri
7:30 AM - 5:30 PM
Free Estimates
Call (360) 699-4887 Get Free Estimate

NE 68th Street Vancouver Location Details

Complete information about our Northeast Vancouver auto body repair facility and services

📍
Address & Contact Information
Our NE 68th Street Vancouver location is conveniently situated in Northeast Vancouver, providing easy access for residents throughout the area. We're located at NE 68th Street, Vancouver WA 98662, with ample customer parking and professional facilities designed for efficient auto body repair services.
Vancouver Services →
🕐
Hours & Availability
Our NE 68th Street location operates Monday through Friday from 7:30 AM to 5:30 PM, providing convenient scheduling for working professionals and busy families. We offer flexible appointment scheduling and accept walk-ins for estimates during business hours.
Schedule Appointment →
🏢
Facility Features & Amenities
Our Northeast Vancouver facility features state-of-the-art auto body repair equipment, dedicated customer parking, comfortable waiting area, and professional workspace designed for efficiency. We maintain a clean, organized environment with modern tools and technology.
Visit Us →

Your Northeast Vancouver Auto Body Experts

Our NE 68th Street Vancouver location has been proudly serving the Northeast Vancouver community with expert auto body repair and collision services. Located in the heart of Northeast Vancouver WA 98662, we provide convenient access for residents of Hazel Dell, Salmon Creek, and surrounding neighborhoods.

As your trusted local auto body repair specialists, our NE 68th Street team combines advanced technical expertise with personalized customer service. We understand the unique needs of Northeast Vancouver residents and work diligently to restore your vehicle quickly and efficiently.

Our facility features modern equipment, certified technicians, and direct insurance billing capabilities. Whether you need minor dent repair or comprehensive collision restoration, our NE 68th Street location delivers exceptional results with manufacturer-certified quality standards.

Address: NE 68th Street, Vancouver WA 98662
Phone: (360) 699-4887
Hours: Monday-Friday 7:30 AM - 5:30 PM
Services: Auto body repair, collision repair, dent removal, paint restoration, insurance claims
Serving: Northeast Vancouver, Hazel Dell, Salmon Creek, surrounding areas
Email: info@fivestarvancouver.com
Parking: Free customer parking available

Auto Body Services at NE 68th Street

Complete auto body and collision repair services available at our Northeast Vancouver location

🔧

Auto Body Repair NE 68th Street

Professional auto body repair services including dent repair, panel replacement, scratch removal, and paint restoration. Our certified technicians at the NE 68th Street location provide quality workmanship for all vehicle makes and models with precision craftsmanship and attention to detail.

Learn More →
🚗

Collision Repair NE 68th Street

Expert collision repair services for accident damage including frame straightening, structural repair, and advanced safety system calibration. Our Northeast Vancouver team restores vehicles to pre-accident condition with precision and manufacturer-approved techniques.

Learn More →
📋

Insurance Claims Support

Complete insurance claims processing and support at our NE 68th Street location. We work directly with all major insurance companies, handle paperwork, and coordinate with adjusters for seamless claim resolution throughout the repair process.

File Claim →

Why Choose Our NE 68th Street Location

Advantages of choosing our Northeast Vancouver auto body repair facility

📍

Convenient Northeast Vancouver Location

Ideally located on NE 68th Street for easy access from Northeast Vancouver neighborhoods, Hazel Dell, Salmon Creek, and surrounding areas. Our location provides convenient access to I-5, SR-14, and local roads with minimal traffic delays for customer convenience.

Get Directions →
🅿️

Dedicated Customer Parking

Ample customer parking available at our NE 68th Street facility eliminates parking concerns and provides safe, convenient vehicle drop-off and pickup. Our well-lit parking area ensures customer security and easy access to our service entrance.

Visit Us →
👥

Experienced Local Team

Our NE 68th Street team includes certified journeymen technicians with extensive experience serving the Northeast Vancouver community. We understand local needs, provide personalized service, and maintain long-term relationships with area customers.

Meet Our Team →

Directions & Accessibility

Easy access and convenient location features for our NE 68th Street Vancouver facility

Driving Directions to NE 68th Street

Our NE 68th Street location is easily accessible from I-5, I-205, and SR-14. From I-5 North or South, take the NE 78th Street exit and head west to NE 68th Street. From I-205, take the NE 134th Street exit and head west. Clear signage and visible storefront make our auto body shop easy to locate in Northeast Vancouver. GPS coordinates are available for navigation convenience.

Get Map Directions →

Accessibility & Customer Convenience

Our NE 68th Street facility features accessible entrance, customer parking spaces, and ADA-compliant facilities. We provide comfortable waiting area, restroom facilities, and easy vehicle drop-off process. Public transportation access via C-TRAN routes with nearby bus stops for customer convenience throughout the auto body repair process.

Plan Your Visit →

Visit Our NE 68th Street Location

Contact information and location map for our Northeast Vancouver auto body facility

Call Now

Speak directly with our NE 68th Street team at (360) 699-4887. We're here to answer questions, schedule appointments, and provide free estimates for all your auto body repair needs in Northeast Vancouver.

Email Us

Send us an email at info@fivestarvancouver.com with photos of your vehicle damage for a preliminary estimate. Our NE 68th Street team will respond promptly with detailed information.

NE 68th Street Services

  • Auto Body Repair Vancouver
  • Collision Repair Vancouver
  • Columbia Street Auto Body
  • Auto Body Repair
  • Collision Repair

Vancouver Locations

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

Company

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

NE 68th Street Contact

  • Phone: (360) 699-4887
  • Email: info@fivestarvancouver.com
  • Hours: Mon-Fri 7:30 AM - 5:30 PM
  • Address: NE 68th Street, Vancouver WA

© 2024 Five Star Auto Body. All rights reserved.

Five Star Auto Body NE 68th Street Vancouver WA | Auto Body Shop Northeast Vancouver