FREE Auto Body Estimate Vancouver WA | (360) 699-4887
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; overflow: hidden; height: 100vh; background: #0f172a; margin: 0; padding: 0; position: fixed; width: 100%; } /* Full-Screen Hero */ .hero { height: 100vh; width: 100vw; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); padding-top: 50px; padding-bottom: 50px; } /* Animated Background Orbs */ .hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%); border-radius: 50%; top: -200px; right: -200px; animation: float 15s ease-in-out infinite; z-index: 1; } .hero::after { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%); border-radius: 50%; bottom: -150px; left: -150px; animation: float 20s ease-in-out infinite reverse; z-index: 1; } @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.1); } } /* Content Container */ .hero-content { position: relative; z-index: 10; max-width: 1400px; width: 100%; height: 100%; padding: 0 40px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; overflow: hidden; } /* LEFT SIDE */ .hero-left { color: white; display: flex; flex-direction: column; justify-content: center; height: 100%; overflow: hidden; } .hero-left h1 { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 0.8rem; text-shadow: 3px 3px 6px rgba(0,0,0,0.4); } .hero-left .highlight { color: #fed7aa; font-size: 3.5rem; } /* Social Proof Stars */ .social-proof { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; font-size: 1rem; font-weight: 600; transition: all 0.3s ease; padding: 0.6rem 1.2rem; background: rgba(255,255,255,0.08); border-radius: 50px; border: 2px solid rgba(251, 191, 36, 0.3); backdrop-filter: blur(10px); width: fit-content; text-decoration: none; color: white; } .social-proof:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); border-color: rgba(251, 191, 36, 0.5); box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2); } .stars { color: #fbbf24; font-size: 1.5rem; letter-spacing: 3px; text-shadow: 0 0 10px rgba(251, 191, 36, 0.5); } /* GIANT Phone CTA with Dynamic Animation */ .phone-cta { display: block; background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%); color: white; text-align: center; padding: 1.2rem 1.8rem; border-radius: 20px; text-decoration: none; font-weight: 900; font-size: 2.2rem; letter-spacing: 1px; box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4), 0 0 0 0 rgba(249, 115, 22, 0.7); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); margin-bottom: 0.8rem; position: relative; overflow: hidden; animation: pulse-glow 2s ease-in-out infinite; } @keyframes pulse-glow { 0%, 100% { box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4), 0 0 0 0 rgba(249, 115, 22, 0.7); } 50% { box-shadow: 0 20px 60px rgba(249, 115, 22, 0.6), 0 0 0 20px rgba(249, 115, 22, 0); } } .phone-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent); animation: shine 3s ease-in-out infinite; } @keyframes shine { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } } .phone-cta:hover { animation: none; transform: scale(1.05) translateY(-5px); box-shadow: 0 30px 80px rgba(249, 115, 22, 0.6), 0 0 0 0 rgba(249, 115, 22, 0); } .phone-cta:active { transform: scale(0.98); } .phone-cta:hover::before { animation: none; } .cta-subtext { text-align: center; font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.95; color: rgba(255,255,255,0.9); } /* OR Divider */ .divider { text-align: center; margin: 1.2rem 0 1rem; font-weight: 700; font-size: 1rem; position: relative; color: rgba(255,255,255,0.9); } .divider::before, .divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 2px; background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.5), transparent); } .divider::before { left: 0; } .divider::after { right: 0; } /* Quick Form */ .quick-form { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 2px solid rgba(255,255,255,0.18); border-radius: 25px; padding: 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.1); } .form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; text-align: center; color: #fed7aa; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; } .quick-form input { padding: 0.8rem 1rem; border: 2px solid rgba(255,255,255,0.2); border-radius: 15px; font-size: 0.95rem; background: rgba(255,255,255,0.98); font-family: inherit; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .quick-form input:focus { outline: none; border-color: #f97316; background: white; box-shadow: 0 6px 20px rgba(249, 115, 22, 0.2); transform: translateY(-2px); } .submit-btn { width: 100%; background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; padding: 0.9rem; border: none; border-radius: 15px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4); position: relative; overflow: hidden; } .submit-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.2); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s ease, height 0.6s ease; } .submit-btn:hover::before { width: 300px; height: 300px; } .submit-btn:hover { background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5); } .submit-btn:active { transform: translateY(-1px); } .form-note { font-size: 0.7rem; text-align: center; margin-top: 0.6rem; opacity: 0.85; color: rgba(255,255,255,0.8); line-height: 1.3; } /* RIGHT SIDE */ .hero-right { display: flex; flex-direction: column; gap: 1.2rem; height: 100%; overflow: hidden; justify-content: center; } /* Video Section */ .video-container { background: white; border-radius: 25px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(249, 115, 22, 0.1); transition: all 0.4s ease; } .video-container:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 2px rgba(249, 115, 22, 0.3); } .video-placeholder { width: 100%; height: 250px; background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #f97316 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; position: relative; cursor: pointer; overflow: hidden; } .video-placeholder::after { content: '▶'; position: absolute; font-size: 3.5rem; opacity: 0.9; animation: playPulse 1.5s ease-in-out infinite; } @keyframes playPulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.1); opacity: 1; } } .video-placeholder:hover::after { animation: none; transform: scale(1.2); } .video-text { font-size: 1.2rem; font-weight: 700; text-align: center; padding: 0 2rem; position: relative; z-index: 2; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); margin-top: 50px; } .video-subtext { font-size: 0.9rem; opacity: 0.95; margin-top: 0.4rem; } /* Before/After + Testimonial */ .proof-section { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } .before-after-item { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.2); transition: all 0.3s ease; } .before-after-item:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); } .ba-image { width: 100%; height: 120px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; position: relative; } .ba-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3)); } .ba-image.before { background-image: url('https://assets.ycodeapp.com/assets/app113220/Images/screenshot%202025-10-02%20112229-9amsqrgjji.webp'); } .ba-image.after { background-image: url('https://assets.ycodeapp.com/assets/app113220/Images/screenshot%202025-10-02%20112202-eusl6eobre.webp'); } .ba-label { padding: 0.8rem; text-align: center; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; } .before-label { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #dc2626; } .after-label { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #16a34a; } /* Testimonial Box */ .testimonial { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95)); padding: 1.2rem; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.5); border: 1px solid rgba(249, 115, 22, 0.1); transition: all 0.3s ease; } .testimonial:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); } .testimonial-text { font-style: italic; color: #1f2937; font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.6rem; } .testimonial-author { color: #6b7280; font-size: 0.85rem; font-weight: 600; } .testimonial-rating { color: #fbbf24; font-size: 1rem; margin-bottom: 0.4rem; } /* Trust Badges */ .trust-badges { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; } .badge { background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(37, 99, 235, 0.12)); backdrop-filter: blur(10px); padding: 0.7rem 1rem; border-radius: 15px; border: 2px solid rgba(255,255,255,0.3); font-weight: 700; font-size: 0.85rem; text-align: center; color: white; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); transition: all 0.3s ease; } .badge:hover { transform: translateY(-3px) scale(1.02); border-color: rgba(249, 115, 22, 0.5); background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(37, 99, 235, 0.2)); box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3); } /* Top Banner */ .top-banner { position: fixed; top: 0; left: 0; right: 0; background: linear-gradient(135deg, rgba(249, 115, 22, 0.98), rgba(234, 88, 12, 0.98)); color: white; text-align: center; padding: 0.7rem 1rem; font-weight: 600; font-size: 0.8rem; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.15); backdrop-filter: blur(10px); } .top-banner strong { color: #fed7aa; font-size: 0.9rem; } /* Bottom Banner */ .location-banner { position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98)); backdrop-filter: blur(10px); color: white; text-align: center; padding: 0.7rem 1rem; font-weight: 600; font-size: 0.8rem; z-index: 100; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); } .location-banner a { color: #fed7aa; text-decoration: underline; font-weight: 700; transition: all 0.2s ease; cursor: pointer; } .location-banner a:hover { color: #f97316; text-shadow: 0 0 10px rgba(249, 115, 22, 0.5); text-decoration: none; } /* MOBILE RESPONSIVE - AGGRESSIVE OPTIMIZATION */ @media (max-width: 768px) { body { overflow: hidden; } .hero { padding-top: 35px; padding-bottom: 35px; align-items: flex-start; } .hero-content { grid-template-columns: 1fr; padding: 0 15px; gap: 0; max-height: calc(100vh - 70px); overflow-y: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; align-items: flex-start; } .hero-left { height: auto; padding: 0.5rem 0; } .hero-left h1 { font-size: 1.4rem; margin-bottom: 0.4rem; line-height: 1.15; } .hero-left .highlight { font-size: 1.8rem; } .social-proof { font-size: 0.7rem; padding: 0.35rem 0.75rem; margin-bottom: 0.5rem; gap: 0.6rem; } .stars { font-size: 1rem; letter-spacing: 2px; } .phone-cta { font-size: 1.4rem; padding: 0.85rem 1.2rem; margin-bottom: 0.4rem; border-radius: 18px; } .cta-subtext { font-size: 0.7rem; margin-bottom: 0.5rem; } .divider { margin: 0.5rem 0 0.4rem; font-size: 0.75rem; } .quick-form { padding: 0.8rem; border-radius: 20px; } .form-title { font-size: 0.85rem; margin-bottom: 0.5rem; } .form-row { grid-template-columns: 1fr; gap: 0.4rem; margin-bottom: 0.4rem; } .quick-form input { padding: 0.6rem 0.75rem; font-size: 0.8rem; border-radius: 12px; } .submit-btn { padding: 0.7rem; font-size: 0.9rem; border-radius: 12px; } .form-note { font-size: 0.55rem; margin-top: 0.3rem; line-height: 1.2; } /* Hide right side completely on mobile */ .hero-right { display: none; } .top-banner, .location-banner { font-size: 0.65rem; padding: 0.5rem 0.6rem; line-height: 1.25; } .top-banner strong { font-size: 0.7rem; } } /* Small phones */ @media (max-width: 480px) { .hero-left h1 { font-size: 1.25rem; } .hero-left .highlight { font-size: 1.6rem; } .phone-cta { font-size: 1.3rem; padding: 0.75rem 1rem; } .social-proof { font-size: 0.65rem; padding: 0.3rem 0.7rem; } } /* Extra small devices */ @media (max-width: 380px) { .hero-content { padding: 0 12px; } .hero-left h1 { font-size: 1.15rem; } .hero-left .highlight { font-size: 1.5rem; } .phone-cta { font-size: 1.2rem; padding: 0.7rem 0.9rem; } .quick-form { padding: 0.7rem; } .quick-form input { padding: 0.55rem 0.7rem; font-size: 0.75rem; } .submit-btn { padding: 0.65rem; font-size: 0.85rem; } }
Walk-ins Welcome! No appointment needed (except Geico, Progressive, State Farm)
Tour Our Vancouver Facility
Expert Estimators Ready to Help
★★★★★
"Five Star Auto Body took care of our car, kept us updated, and offered a loaner! Better than brand new!"
— Ricky Macom, Vancouver WA
2 Vancouver Locations
20+ Certified Techs
8 Certifications
Lifetime Warranty