Commercial Electrician Vancouver WA | Licensed Electrical Contractor | Crown Electric /* CSS Variables */ :root { --maroon: #800020; --maroon-light: #A0002A; --maroon-dark: #600018; --gold: #FFD700; --gold-light: #FFED4E; --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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--gray-800); background: var(--white); } .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } /* Header Styles */ .navbar { background: var(--white); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease; } .navbar.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); } .nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 20px; max-width: 1200px; margin: 0 auto; position: relative; } /* Logo */ .nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--maroon); font-weight: 800; font-size: 1.5rem; z-index: 1002; } .nav-logo img { width: 40px; height: 40px; object-fit: contain; } /* Desktop Navigation */ .nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; } .nav-link { text-decoration: none; color: var(--gray-700); font-weight: 500; font-size: 0.95rem; transition: all 0.3s ease; position: relative; padding: 0.5rem 0; } .nav-link:hover { color: var(--maroon); } .nav-link.active { color: var(--maroon); font-weight: 600; } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; } .nav-link:hover::after, .nav-link.active::after { width: 100%; } /* Desktop Dropdown */ .nav-dropdown { position: relative; } .dropdown-content { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 240px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border-radius: 10px; padding: 1rem 0; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; border: 1px solid var(--gray-200); z-index: 1001; } .nav-dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown-link { display: block; padding: 0.8rem 1.5rem; color: var(--gray-700); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; } .dropdown-link:hover { background: var(--gray-50); color: var(--maroon); } /* CTA Section */ .nav-cta { display: flex; align-items: center; gap: 1rem; } .nav-phone { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); color: var(--white); padding: 0.8rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; } .nav-phone:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3); } /* Mobile Menu Toggle */ .mobile-menu-toggle { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1002; position: relative; } .mobile-menu-toggle span { display: block; height: 3px; width: 100%; background: var(--maroon); border-radius: 3px; transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); transform-origin: center; } .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(20px); } .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); } /* Mobile Menu Overlay */ .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999; } .mobile-menu-overlay.active { opacity: 1; visibility: visible; } /* Mobile Menu */ .mobile-menu { position: fixed; top: 0; right: -100%; width: 320px; max-width: 85vw; height: 100vh; background: var(--white); z-index: 1001; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); overflow-y: auto; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); } .mobile-menu.active { right: 0; } /* Mobile Menu Header */ .mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .mobile-menu-logo { display: flex; align-items: center; gap: 0.5rem; color: var(--white); text-decoration: none; font-weight: 800; font-size: 1.2rem; } .mobile-menu-close { background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; } .mobile-menu-close:hover { background: rgba(255, 255, 255, 0.1); } /* Mobile Menu Navigation */ .mobile-menu-nav { padding: 2rem 0; } .mobile-menu-item { border-bottom: 1px solid var(--gray-100); } .mobile-menu-link { display: block; padding: 1rem 1.5rem; color: var(--gray-700); text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.3s ease; } .mobile-menu-link:hover { background: var(--gray-50); color: var(--maroon); } /* Mobile Dropdown */ .mobile-dropdown-toggle { width: 100%; background: none; border: none; padding: 1rem 1.5rem; text-align: left; color: var(--gray-700); font-weight: 500; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s ease; } .mobile-dropdown-toggle:hover { background: var(--gray-50); color: var(--maroon); } .mobile-dropdown-toggle span { font-size: 1.2rem; transition: transform 0.3s ease; } .mobile-menu-item.active .mobile-dropdown-toggle span { transform: rotate(45deg); } .mobile-dropdown { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--gray-50); } .mobile-menu-item.active .mobile-dropdown { max-height: 500px; } .mobile-dropdown-link { display: block; padding: 0.8rem 3rem; color: var(--gray-600); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; } .mobile-dropdown-link:hover { background: var(--white); color: var(--maroon); } /* Mobile CTA */ .mobile-menu-cta { margin: 2rem 1.5rem; background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); color: var(--white); text-decoration: none; border-radius: 12px; text-align: center; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 56px; box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2); } .mobile-menu-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3); } /* 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; color: rgba(255, 255, 255, 0.95); font-weight: 500; padding-left: 0; } .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; } .btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 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: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px 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: inline-flex; align-items: center; gap: 0.5rem; } .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; } /* Commercial Services Section */ .commercial-services { background: var(--gray-50); } .services-grid { display: grid; grid-template-columns: repeat(3, 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-section { 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(--gold) 0%, var(--gold-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--maroon); font-weight: 800; font-size: 1.5rem; margin: 0 auto 1.5rem; } .process-step h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; } .process-step p { color: var(--gray-600); line-height: 1.6; } /* Industries Section */ .industries-section { background: var(--gray-50); } .industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; } .industry-card { background: var(--white); border-radius: 15px; padding: 2rem; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); border: 1px solid var(--gray-200); transition: all 0.3s ease; } .industry-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(128, 0, 32, 0.1); } .industry-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; } .industry-card p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; } .industry-services { background: var(--gray-50); padding: 1rem; border-radius: 8px; font-size: 0.9rem; line-height: 1.5; color: var(--gray-700); } .industry-services strong { color: var(--maroon); } /* Coverage Section */ .coverage-section { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); color: var(--white); } .coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; } .coverage-card { background: rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 2rem; text-align: center; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); } .coverage-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: var(--gold); } .coverage-card p { line-height: 1.6; color: rgba(255, 255, 255, 0.9); } /* Map Section */ .map-section { background: var(--white); } .map-container { margin-top: 3rem; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); } .map-container iframe { width: 100%; height: 400px; border: none; } /* Contact Section */ .contact-section { background: var(--gray-50); } .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .contact-info h2 { font-size: 2.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1.5rem; line-height: 1.2; } .contact-info p { font-size: 1.1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; } .contact-details { display: flex; flex-direction: column; gap: 1rem; } .contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--white); border-radius: 10px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); } .contact-item a { color: var(--maroon); text-decoration: none; font-weight: 600; font-size: 1.1rem; } .contact-item a:hover { color: var(--maroon-light); } .contact-cta { background: var(--white); border-radius: 20px; padding: 3rem; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); text-align: center; } .contact-cta h3 { font-size: 1.8rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; } .contact-cta p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.6; } .cta-buttons { display: flex; flex-direction: column; gap: 1rem; } .cta-button { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); color: var(--white); padding: 1rem 2rem; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3); } .cta-button.secondary { background: transparent; color: var(--maroon); border: 2px solid var(--maroon); } .cta-button.secondary:hover { background: var(--maroon); color: var(--white); } /* Mobile Responsive */ @media (max-width: 768px) { .container { padding: 0 1rem; } .nav-menu { display: none; } .mobile-menu-toggle { display: block; } .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); } .industries-grid { grid-template-columns: 1fr; } .coverage-grid { grid-template-columns: 1fr; } .contact-content { grid-template-columns: 1fr; gap: 2rem; } .section { padding: 60px 0; } } @media (max-width: 480px) { .logo img { height: 40px; } .logo { font-size: 1.4rem; } .process-grid { grid-template-columns: 1fr; } .hero-buttons { flex-direction: column; } }
Crown Electric Logo Crown Electric
  • Home
  • Services
    Electric Panels EV Chargers Rewiring Services New Construction Residential Commercial
  • Service Areas
    Vancouver WA Battle Ground Camas Ridgefield
  • About
  • Contact
(360) 896-4122
Crown Electric
Home
Electric Panels EV Chargers Rewiring Services New Construction Residential Services Commercial Services
Vancouver WA Battle Ground Camas Ridgefield
About
Contact
Call (360) 896-4122

Commercial Electrician Vancouver WA

Licensed commercial electrical contractor serving businesses, offices, and commercial properties throughout Clark County. Professional electrical installation, maintenance, and emergency repair services.

Licensed & Insured
Emergency Service
Free Estimates
Commercial Certified
Call (360) 896-4122 Get Free Estimate
Commercial Electrical Services
Professional Installation
Licensed Contractor
Commercial Electrical Services

Professional Commercial Electrical Solutions Vancouver WA

Crown Electric provides comprehensive commercial electrical services for businesses throughout Vancouver WA and Clark County. From office electrical installation to warehouse lighting systems, our licensed commercial electricians deliver reliable, code-compliant electrical solutions for all business types.

Office Electrical Installation Vancouver WA

Professional office electrical installation for businesses in Vancouver WA. Complete electrical design and installation for modern office environments including workstation power, conference room AV systems, and energy-efficient lighting throughout Clark County commercial properties.

Office Electrical Services: Workstation power distribution, LED lighting installation, data center electrical, HVAC electrical connections, emergency lighting systems, and electrical capacity upgrades. Professional installation with minimal business disruption and complete code compliance.
View Office Services →

Retail Electrical Contractor Clark County

Specialized retail electrical services for shopping centers, stores, and commercial retail spaces in Clark County. Professional retail lighting design, point-of-sale electrical installation, and security system electrical throughout Vancouver WA retail locations.

Retail Electrical Solutions: Display lighting installation, POS system electrical, retail security electrical, storefront lighting, parking lot lighting, and electrical tenant improvements. Expert retail electrical design with focus on customer experience and energy efficiency.
Get Retail Quote →

Warehouse Electrical Services Vancouver WA

Industrial warehouse electrical installation and maintenance for distribution centers and manufacturing facilities in Vancouver WA. High-bay lighting, heavy machinery electrical, and warehouse electrical upgrades throughout Clark County industrial properties.

Warehouse Electrical: High-bay LED lighting installation, machinery electrical connections, warehouse electrical distribution, dock electrical systems, and industrial electrical maintenance contracts. Licensed for heavy industrial electrical work with OSHA compliance.
Schedule Warehouse Assessment →
Commercial Electrical Process

How We Handle Commercial Electrical Projects Vancouver WA

Our systematic approach ensures professional commercial electrical installation with minimal business disruption. Licensed electricians follow strict protocols for commercial electrical work throughout Clark County with complete permitting and inspection coordination.

1

Commercial Electrical Assessment

Comprehensive evaluation of your commercial electrical needs, load calculations, and code compliance requirements for Vancouver WA business properties.

2

Detailed Project Planning

Professional electrical design and project timeline development with permit coordination and minimal business disruption scheduling for Clark County commercial work.

3

Licensed Installation

Expert commercial electrical installation by licensed electricians using quality materials and following all electrical codes for safe, reliable operation.

4

Testing & Inspection

Complete electrical testing, inspection coordination, and final walkthrough to ensure your commercial electrical system operates safely and efficiently.

Commercial Industries

Commercial Electrical Expertise by Industry Vancouver WA

Crown Electric serves diverse commercial industries throughout Vancouver WA and Clark County. Our licensed electricians understand unique electrical requirements for different business types and provide specialized commercial electrical solutions.

Healthcare Electrical Vancouver WA

Specialized electrical services for medical facilities, dental offices, and healthcare centers in Vancouver WA. Critical power systems, medical equipment electrical, and emergency backup power throughout Clark County healthcare facilities.

Healthcare Electrical: Emergency power systems, medical equipment connections, surgical lighting, nurse call systems, and healthcare electrical maintenance contracts with rapid response times.

Restaurant Electrical Clark County

Commercial kitchen electrical installation and restaurant electrical services throughout Clark County. Professional electrical for commercial kitchens, dining areas, and restaurant electrical upgrades in Vancouver WA food service locations.

Restaurant Electrical: Commercial kitchen electrical, hood electrical installation, POS system electrical, dining area lighting, and restaurant electrical maintenance with 24/7 emergency service availability.

Industrial Electrical Vancouver WA

Heavy industrial electrical services for manufacturing and production facilities in Vancouver WA. Motor control centers, industrial electrical distribution, and manufacturing electrical maintenance throughout Clark County industrial areas.

Industrial Electrical: Motor control installations, industrial electrical panels, machinery electrical connections, plant electrical maintenance, and industrial electrical troubleshooting with experienced technicians.

Property Management Electrical

Comprehensive electrical services for property management companies and multi-tenant buildings in Clark County. Common area electrical, tenant electrical improvements, and building electrical maintenance for Vancouver WA commercial properties.

Property Management: Common area electrical, tenant improvement electrical, building electrical upgrades, parking lot lighting, and property electrical maintenance contracts with priority scheduling.
Service Coverage

Commercial Electrical Contractor Serving Clark County

Crown Electric provides licensed commercial electrical services throughout Southwest Washington. Our commercial electricians serve businesses in Vancouver WA, Battle Ground, Camas, and Ridgefield with professional electrical installation and emergency repair services.

Vancouver WA Commercial

Complete commercial electrical services for Vancouver WA businesses including office electrical, retail electrical installation, and commercial electrical maintenance with same-day emergency service.

Clark County Industrial

Industrial electrical services throughout Clark County including warehouse electrical, manufacturing electrical, and heavy industrial electrical installation with licensed, experienced electricians.

Emergency Commercial Service

24/7 emergency commercial electrical service throughout Clark County. Rapid response for business electrical problems, power outages, and critical electrical repairs to minimize business downtime.

Service Areas

Licensed Commercial Electrician Vancouver WA Location

Crown Electric serves commercial electrical clients throughout Vancouver WA and Clark County from our Vancouver location. Professional commercial electrical services with local expertise and community commitment.

Contact Vancouver WA Commercial Electrician

Ready to discuss your commercial electrical project in Vancouver WA or Clark County? Crown Electric provides free commercial electrical estimates with detailed project planning and transparent pricing for all business electrical needs.

(360) 896-4122
Crownelectric240@yahoo.com
6109 NE 121st Ave Suite 104, Vancouver WA 98682

Get Your Free Commercial Electrical Estimate

Professional commercial electrical assessment with detailed project planning and transparent pricing for your Vancouver WA business.

Call Now: (360) 896-4122 Request Free Estimate