Residential Electrician Vancouver WA | Licensed Home Electrical Contractor | Crown Electric /* CSS Variables */ :root { --maroon: #800020; --maroon-dark: #600018; --maroon-light: #a0002a; --gold: #FFD700; --gold-light: #ffed4e; --gold-dark: #daa520; --white: #ffffff; --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb; --gray-300: #d1d5db; --gray-400: #9ca3af; --gray-500: #6b7280; --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937; --gray-900: #111827; } /* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; line-height: 1.6; color: var(--gray-900); overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } /* Navigation Styles */ .navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-200); z-index: 1000; padding: 1rem 0; transition: all 0.3s ease; } .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1rem; } .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--gray-900); font-weight: 700; font-size: 1.3rem; } .nav-logo img { width: 40px; height: 40px; border-radius: 8px; } .nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; } .nav-link { text-decoration: none; color: var(--gray-700); font-weight: 500; transition: color 0.3s ease; } .nav-link:hover, .nav-link.active { color: var(--maroon); } .nav-phone { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .nav-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3); } /* Mobile Menu Styles */ .mobile-menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; } .mobile-menu-toggle span { width: 25px; height: 3px; background: var(--maroon); border-radius: 2px; transition: all 0.3s ease; } /* Hero Section */ .hero { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 50%, var(--maroon) 100%); color: var(--white); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; box-sizing: border-box; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,'); z-index: 1; opacity: 0.3; } .hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; } .hero-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: var(--white); } .hero-text .highlight { color: var(--gold); position: relative; } .hero-text p { font-size: 1.3rem; line-height: 1.6; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.9); max-width: 500px; } .hero-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; } .hero-feature { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: rgba(255, 255, 255, 0.1); border-radius: 10px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); } .hero-feature-icon { width: 24px; height: 24px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--maroon); font-weight: 700; } .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; } .btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--maroon); padding: 1rem 2rem; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; min-height: 56px; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); } .btn-secondary { background: transparent; color: var(--white); padding: 1rem 2rem; border: 2px solid var(--white); border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; min-height: 56px; } .btn-secondary:hover { background: var(--white); color: var(--maroon); } .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; min-height: 450px; } .hero-image-container { position: relative; width: 100%; max-width: 500px; background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%); border-radius: 25px; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255, 215, 0, 0.2); backdrop-filter: blur(20px); overflow: hidden; padding: 15px; } .hero-placeholder { width: 100%; height: 400px; background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-600); font-size: 1.1rem; font-weight: 600; text-align: center; padding: 2rem; border: 2px solid rgba(255, 215, 0, 0.3); } /* Section Styles */ .section { padding: 100px 0; } .section-header { text-align: center; margin-bottom: 4rem; } .section-badge { display: inline-block; background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); color: var(--white); padding: 0.6rem 1.8rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; } .section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--gray-900); margin-bottom: 1rem; line-height: 1.2; } .section-subtitle { font-size: 1.2rem; color: var(--gray-600); max-width: 800px; margin: 0 auto; line-height: 1.6; } /* Residential Services Section */ .residential-services { background: var(--gray-50); } .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; } .service-type { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); border: 1px solid var(--gray-200); transition: all 0.4s ease; position: relative; overflow: hidden; min-height: 420px; display: flex; flex-direction: column; } .service-type::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; } .service-type:hover::before { transform: scaleX(1); } .service-type:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(128, 0, 32, 0.15); border-color: var(--maroon); } .service-type h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; line-height: 1.3; } .service-type p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; flex-grow: 1; } .service-specs { background: var(--gray-50); padding: 1.2rem; border-radius: 10px; margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.5; color: var(--gray-700); border: 1px solid var(--gray-200); } .service-specs strong { color: var(--maroon); } .service-link { color: var(--maroon); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; margin-top: auto; } .service-link:hover { color: var(--maroon-light); transform: translateX(5px); } /* Process Section */ .process { background: var(--white); } .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; } .process-step { text-align: center; padding: 2rem 1rem; } .process-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.5rem; position: relative; } .process-number::after { content: ''; position: absolute; top: 50%; left: 100%; width: 60px; height: 2px; background: var(--gold); transform: translateY(-50%); z-index: -1; } .process-step:last-child .process-number::after { display: none; } .process-step h4 { font-size: 1.2rem; color: var(--gray-900); margin-bottom: 0.5rem; } .process-step p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.5; } /* Pricing Section */ .pricing { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); color: var(--white); } .pricing .section-title { color: var(--white); } .pricing .section-subtitle { color: rgba(255, 255, 255, 0.9); } .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; } .pricing-card { background: rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); text-align: center; } .pricing-card h4 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--gold); } .pricing-range { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; } .pricing-card ul { list-style: none; text-align: left; color: rgba(255, 255, 255, 0.9); line-height: 2; } .pricing-card li::before { content: '✓'; color: var(--gold); font-weight: 700; margin-right: 0.5rem; } /* Google Reviews Section */ .google-reviews { background: var(--gray-50); } .reviews-container { margin-top: 3rem; } .google-embed { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); } /* Contact Section */ .contact { background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%); color: var(--white); } .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; color: var(--white); } .contact-info p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.9); } .contact-details { display: grid; gap: 1.5rem; } .contact-item { display: flex; align-items: center; gap: 1rem; } .contact-item-icon { width: 50px; height: 50px; background: var(--gold); color: var(--maroon); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; } .contact-item-info h4 { color: var(--gold); margin-bottom: 0.25rem; font-size: 1rem; } .contact-item-info p { margin: 0; font-size: 0.95rem; } .contact-item-info a { color: var(--white); text-decoration: none; } .contact-item-info a:hover { color: var(--gold); } .map-container { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); } /* Mobile Responsive */ @media (max-width: 768px) { .nav-menu { display: none; } .mobile-menu-toggle { display: flex; } .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; } .hero-features { grid-template-columns: 1fr; } .services-grid { grid-template-columns: 1fr; } .process-grid { grid-template-columns: repeat(2, 1fr); } .process-number::after { display: none; } .pricing-grid { grid-template-columns: 1fr; } .contact-content { grid-template-columns: 1fr; } .btn-primary, .btn-secondary { width: 100%; justify-content: center; } } @media (max-width: 480px) { .container { padding: 0 0.75rem; } .hero { padding-top: 100px; } .section { padding: 60px 0; } .process-grid { grid-template-columns: 1fr; } }
Crown Electric Logo Crown Electric
  • Home
  • Services
  • Service Areas
  • About
  • Contact
(360) 896-4122

Licensed Residential Electrician Vancouver WA

Crown Electric is Vancouver WA's most trusted residential electrical contractor providing comprehensive home electrical services including panel upgrades, rewiring, outlet installation, and electrical repairs throughout Clark County since 2012.

Licensed & Insured
Residential Specialists
Same-Day Service
Satisfaction Guaranteed
Call (360) 896-4122 View Services →
Licensed Residential Electrician
Vancouver WA Team Photo
Residential Services

Comprehensive Home Electrical Services Vancouver WA

Crown Electric specializes in residential electrical services for homeowners throughout Vancouver WA and Clark County. Our licensed electricians provide expert installation, repair, and maintenance services with transparent pricing and guaranteed workmanship for your home's electrical systems.

Electric Panel Upgrades Vancouver WA

Professional electric panel installation and upgrades for Vancouver WA homes. Crown Electric handles main panel replacement, circuit breaker upgrades, and electrical service increases to meet modern electrical demands and ensure home safety throughout Clark County.

Service Details: Complete electrical assessment, permit coordination, professional installation with quality materials, code compliance inspection, and warranty coverage. Most residential panel upgrades completed in 6-8 hours with same-day completion available in Vancouver WA.
View Panel Services →

House Rewiring Services Clark County

Complete house rewiring services for older homes in Vancouver WA and Clark County. Our licensed residential electricians replace outdated aluminum wiring, knob and tube systems, and insufficient electrical capacity with modern, code-compliant wiring for enhanced safety and functionality.

Rewiring Process: Partial house rewiring (2-4 days), whole house rewiring (5-10 days). Includes aluminum wire replacement, GFCI outlet installation, modern circuit design, proper load distribution, and full electrical code compliance for Vancouver WA residential properties.
View Rewiring Services →

Residential Outlet Installation Vancouver WA

Expert residential outlet installation and electrical receptacle services for Vancouver WA homes. Crown Electric installs GFCI outlets, USB outlets, dedicated circuits for appliances, and additional electrical outlets to meet your family's electrical needs throughout Clark County.

Outlet Services: GFCI outlet installation, kitchen outlet upgrades, bathroom electrical outlets, dedicated appliance circuits, USB charging outlets, and outdoor electrical receptacles. All installations include proper grounding and code compliance for Vancouver WA residential properties.
Schedule Outlet Installation →

Home Electrical Safety Inspection Vancouver WA

Comprehensive home electrical safety inspections for Vancouver WA residential properties. Our licensed electricians conduct thorough electrical system evaluations to identify potential hazards, code violations, and maintenance needs throughout Clark County homes.

Inspection Includes: Electrical panel evaluation, outlet and switch testing, wiring condition assessment, GFCI testing, grounding system inspection, and detailed safety report with recommendations. Essential for older homes and property purchases in Vancouver WA.
Schedule Safety Inspection →

EV Charger Installation for Homes Vancouver WA

Professional home EV charger installation for Tesla and all electric vehicle brands throughout Vancouver WA. Crown Electric installs Level 2 charging stations with proper electrical capacity assessment and dedicated circuit installation for optimal charging performance.

Installation Details: Tesla Wall Connector and universal Level 2 charger installation, electrical panel capacity assessment, dedicated 240V circuit installation, GFCI protection, permit coordination, and complete setup with user training for Vancouver WA homeowners.
View EV Charger Services →

Emergency Residential Electrical Repair Vancouver WA

24/7 emergency residential electrical repair services for Vancouver WA homes. Crown Electric provides immediate response for electrical emergencies including power outages, electrical faults, sparking outlets, and electrical safety hazards throughout Clark County.

Emergency Services: Power restoration, electrical fault diagnosis, outlet and switch repair, circuit breaker replacement, emergency wiring repairs, and electrical safety hazard resolution. Available 24/7 for urgent residential electrical issues in Vancouver WA.
Call Emergency Line →
Our Process

Professional Residential Electrical Installation Process

Crown Electric follows a systematic approach for all residential electrical projects in Vancouver WA and Clark County. Our proven process ensures quality workmanship, code compliance, and customer satisfaction for every home electrical service.

1

Initial Consultation

Free consultation and assessment of your home's electrical needs with transparent pricing for Vancouver WA residential services.

2

Planning & Permits

Detailed project planning and permit acquisition coordination with Clark County electrical departments.

3

Professional Installation

Expert installation using quality materials with minimal disruption to your Vancouver WA home.

4

Testing & Warranty

Comprehensive testing, inspection coordination, and warranty coverage for all residential electrical work.

Transparent Pricing

Residential Electrical Service Pricing Vancouver WA

Crown Electric provides upfront, transparent pricing for all residential electrical services in Vancouver WA and Clark County. No hidden fees or surprises - just honest pricing for quality electrical work with licensed, insured electricians.

Basic Electrical Services

$150 - $400
  • Outlet installation & repair
  • Switch installation
  • Light fixture installation
  • GFCI outlet installation
  • Basic electrical troubleshooting

Panel & Wiring Services

$800 - $3,500
  • Electrical panel upgrades
  • Circuit breaker replacement
  • Partial house rewiring
  • Dedicated circuit installation
  • Electrical service upgrades

Major Electrical Projects

$2,000 - $8,000
  • Whole house rewiring
  • EV charger installation
  • Electrical service increases
  • Complete electrical upgrades
  • Electrical safety compliance
Customer Reviews

Trusted Residential Electrician Vancouver WA Reviews

Read authentic reviews from satisfied homeowners throughout Vancouver WA, Battle Ground, Camas, and Ridgefield who have trusted Crown Electric for their residential electrical needs.

Contact Vancouver WA's Most Trusted Residential Electrician

Ready to schedule residential electrical services in Vancouver WA or Clark County? Crown Electric provides same-day service for most residential electrical needs. Our licensed electricians deliver transparent pricing, quality workmanship, and guaranteed satisfaction for your home's electrical systems.

Call Crown Electric

(360) 896-4122

Email Us

Crownelectric240@yahoo.com

Service Area

Vancouver WA & Clark County

Business Hours

Monday - Friday: 8:00 AM - 4:00 PM
Emergency Service: 24/7

Office Address

6109 NE 121st Ave Suite 104
Vancouver, WA 98682