Battle Ground WA Electrician | Licensed Electrical Contractor | Crown Electric :root { --maroon: #800020; --maroon-dark: #660018; --maroon-light: #a0002a; --gold: #FFD700; --gold-dark: #DAA520; --gold-light: #FFF8DC; --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; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--gray-800); overflow-x: hidden; font-size: 16px; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; } /* ===== NAVIGATION SYSTEM ===== */ .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; } .nav-dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown-content a { display: block; padding: 0.75rem 1.5rem; color: var(--gray-700); text-decoration: none; font-weight: 500; transition: all 0.3s ease; } .dropdown-content a:hover { background: var(--gray-50); color: var(--maroon); padding-left: 2rem; } /* CTA Button */ .nav-cta { background: var(--maroon); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; white-space: nowrap; } .nav-cta:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3); } /* Mobile Menu Toggle */ .mobile-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1002; } .mobile-menu-toggle span { width: 25px; height: 3px; background: var(--maroon); transition: all 0.3s ease; border-radius: 2px; } /* Mobile Menu */ .mobile-menu-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s ease; } .mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); z-index: 999; transition: all 0.3s ease; overflow-y: auto; padding: 2rem 0 1rem; } .mobile-menu.active { right: 0; } .mobile-menu-overlay.active { opacity: 1; visibility: visible; } .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem 2rem; border-bottom: 1px solid var(--gray-200); } .mobile-menu-close { background: none; border: none; font-size: 1.5rem; color: var(--gray-600); cursor: pointer; padding: 0.5rem; } .mobile-menu-items { padding: 1rem 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; transition: all 0.3s ease; } .mobile-menu-link:hover, .mobile-menu-link.active { color: var(--maroon); background: var(--gray-50); } .mobile-dropdown { background: var(--gray-50); max-height: 0; overflow: hidden; transition: all 0.3s ease; } .mobile-dropdown.active { max-height: 400px; } .mobile-dropdown-link { display: block; padding: 0.75rem 2rem; color: var(--gray-600); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; } .mobile-dropdown-link:hover { color: var(--maroon); background: var(--white); } .mobile-menu-cta { display: block; margin: 1.5rem; padding: 1rem; background: var(--maroon); color: var(--white); text-align: center; text-decoration: none; border-radius: 10px; font-weight: 600; } /* ===== HERO SECTION ===== */ .hero { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); padding: 120px 0 80px; color: var(--white); position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,') repeat; opacity: 0.3; } .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; } .hero-badge { display: inline-block; background: rgba(255, 215, 0, 0.2); color: var(--gold); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; border: 1px solid rgba(255, 215, 0, 0.3); } .hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: var(--white); } .hero-subtitle { font-size: 1.2rem; line-height: 1.6; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.9); } .hero-cta { display: flex; gap: 1rem; margin-bottom: 2rem; } .btn-primary { background: var(--gold); color: var(--maroon); padding: 1rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; } .btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); } .btn-secondary { background: transparent; color: var(--white); padding: 1rem 2rem; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; } .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); } .hero-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } .hero-feature { display: flex; align-items: center; gap: 0.75rem; background: rgba(255, 255, 255, 0.1); padding: 1rem; border-radius: 10px; backdrop-filter: blur(10px); } .hero-feature-icon { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--maroon); font-size: 0.8rem; } .hero-visual { display: flex; justify-content: center; align-items: center; } .hero-image { width: 100%; max-width: 500px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); } /* ===== SECTIONS ===== */ .section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; } .section-badge { display: inline-block; background: var(--gold-light); color: var(--maroon); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; } .section-title { font-size: 2.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; line-height: 1.2; } .section-subtitle { font-size: 1.2rem; color: var(--gray-600); line-height: 1.6; } /* ===== SERVICES SECTION ===== */ .services { background: var(--gray-50); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } .service-card { background: var(--white); padding: 2rem; border-radius: 20px; box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; border: 1px solid var(--gray-200); } .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); } .service-icon { width: 60px; height: 60px; background: var(--maroon); color: var(--white); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin-bottom: 1.5rem; } .service-card h3 { font-size: 1.4rem; color: var(--gray-900); margin-bottom: 1rem; font-weight: 600; } .service-card p { color: var(--gray-600); line-height: 1.6; margin-bottom: 1.5rem; } .service-details { background: var(--gray-50); padding: 1rem; border-radius: 10px; margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; } .service-link { color: var(--maroon); text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .service-link:hover { color: var(--maroon-dark); } /* ===== WHY CHOOSE SECTION ===== */ .why-choose { background: var(--white); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .feature-card { text-align: center; padding: 2rem; } .feature-icon { width: 80px; height: 80px; background: var(--gold-light); color: var(--maroon); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; margin: 0 auto 1.5rem; } .feature-card h3 { font-size: 1.3rem; color: var(--gray-900); margin-bottom: 1rem; font-weight: 600; } .feature-card p { color: var(--gray-600); line-height: 1.6; } /* ===== AREAS SECTION ===== */ .service-areas { background: var(--gray-50); } .areas-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } .areas-list { display: flex; flex-direction: column; gap: 1.5rem; } .area-item { background: var(--white); padding: 1.5rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); } .area-item h4 { color: var(--maroon); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 600; } .area-item p { color: var(--gray-600); line-height: 1.5; font-size: 0.95rem; } .map-container { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); } /* ===== CONTACT SECTION ===== */ .contact { background: var(--maroon); color: var(--white); } .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .contact-info h2 { font-size: 2.2rem; margin-bottom: 1rem; 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: flex; flex-direction: column; gap: 1rem; } .contact-item { display: flex; align-items: center; gap: 1rem; background: rgba(255, 255, 255, 0.1); padding: 1rem; border-radius: 10px; backdrop-filter: blur(10px); } .contact-item-icon { width: 50px; height: 50px; background: var(--gold); color: var(--maroon); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; } .contact-item-info h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.25rem; font-weight: 600; } .contact-item-info p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin: 0; } .contact-item-info a { color: var(--gold); text-decoration: none; } .contact-form { background: rgba(255, 255, 255, 0.1); padding: 2rem; border-radius: 20px; backdrop-filter: blur(10px); } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; color: var(--white); font-weight: 500; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 10px; background: rgba(255, 255, 255, 0.1); color: var(--white); font-size: 1rem; } .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.7); } .form-submit { background: var(--gold); color: var(--maroon); padding: 1rem 2rem; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; width: 100%; } .form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); } /* ===== RESPONSIVE DESIGN ===== */ @media (max-width: 1024px) { .nav-menu { display: none; } .mobile-menu-toggle { display: flex; } .hero-content { grid-template-columns: 1fr; text-align: center; } .hero h1 { font-size: 2.5rem; } .areas-content { grid-template-columns: 1fr; } .contact-content { grid-template-columns: 1fr; } } @media (max-width: 768px) { .container { padding: 0 15px; } .hero { padding: 100px 0 60px; } .hero h1 { font-size: 2rem; } .hero-subtitle { font-size: 1.1rem; } .hero-cta { flex-direction: column; } .hero-features { grid-template-columns: 1fr; } .section { padding: 60px 0; } .section-title { font-size: 2rem; } .services-grid { grid-template-columns: 1fr; } .features-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { .hero h1 { font-size: 1.8rem; } .section-title { font-size: 1.8rem; } .btn-primary, .btn-secondary { padding: 0.75rem 1.5rem; font-size: 1rem; } } /* Accessibility */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } /* Focus states */ a:focus, button:focus, input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; } /* Print styles */ @media print { .navbar, .mobile-menu, .hero-cta, .contact-form { display: none; } .hero { background: var(--maroon); color: var(--white); padding: 2rem 0; } .section { padding: 1rem 0; } }
Crown Electric Logo Crown Electric
  • Home
  • Services
    Electric Panels EV Chargers Rewiring Services New Construction Residential Services Commercial Services
  • Service Areas
    Clark County Vancouver WA Battle Ground Camas Ridgefield
  • About
  • Contact
  • Call (360) 896-4122
Crown Electric Logo Crown Electric
Home
Services
Electric Panels EV Chargers Rewiring Services New Construction Residential Services Commercial Services
Service Areas
Clark County Vancouver WA Battle Ground Camas Ridgefield
About
Contact
Call (360) 896-4122
Battle Ground WA Licensed Electrician

Battle Ground WA Electrician | Crown Electric

Licensed electrical contractor serving Battle Ground Washington with professional electrical services including emergency electrical repairs, electric panel installation, house rewiring, and EV charger installation. Crown Electric provides same-day electrical service throughout Battle Ground WA with transparent pricing and guaranteed workmanship.

Call (360) 896-4122 Get Free Estimate →
✓
Licensed & Insured Battle Ground WA
24
Emergency Electrical Service
$
Transparent Pricing
⚡
Same-Day Service Available
Crown Electric team providing electrical services in Battle Ground WA
Electrical Services Battle Ground WA

Complete Electrical Contractor Services in Battle Ground Washington

Crown Electric provides comprehensive electrical services to Battle Ground WA residents and businesses. Our licensed electricians specialize in emergency electrical repairs, electric panel upgrades, house rewiring, EV charger installation, and commercial electrical installations throughout Battle Ground Washington with professional expertise and community commitment.

EP

Electric Panel Installation Battle Ground WA

Professional electric panel installation and upgrades for Battle Ground Washington homes and businesses. Our licensed electricians provide complete electrical panel replacement, main panel upgrades, and circuit breaker installation with proper permitting and code compliance throughout Battle Ground WA.

Panel Installation Process: Comprehensive electrical assessment, permit coordination, safe panel replacement (4-8 hours), complete circuit testing, and code compliance verification. Includes electrical capacity planning for Battle Ground WA homes requiring increased electrical service and modern safety features.
View Panel Installation Services →
ER

Emergency Electrician Battle Ground WA

24/7 emergency electrical repair services for Battle Ground Washington residents. Crown Electric responds immediately to electrical emergencies including power outages, electrical fires, sparking outlets, and dangerous electrical situations throughout Battle Ground WA with rapid response and professional repairs.

Emergency Response: Same-day service for electrical emergencies, immediate safety assessment, professional electrical troubleshooting, and reliable repair solutions. Available 24/7 for urgent electrical problems in Battle Ground WA including weekend and holiday emergency electrical service.
Call for Emergency Service →
RW

House Rewiring Battle Ground WA

Complete house rewiring services for older homes in Battle Ground Washington. Our licensed electricians replace outdated aluminum wiring, knob and tube systems, and insufficient electrical systems with modern, code-compliant electrical wiring for enhanced safety and reliability throughout Battle Ground WA.

Rewiring Timeline: Partial rewiring (2-4 days), whole house rewiring (5-10 days). Includes aluminum wire replacement, GFCI outlet installation, modern circuit design, and electrical code compliance for Battle Ground WA homes. Minimal disruption with professional cleanup and restoration.
View Rewiring Services →
EV

EV Charger Installation Battle Ground WA

Electric vehicle charger installation for Battle Ground Washington residents. Crown Electric provides Tesla Wall Connector installation, Level 2 charging stations, and home EV charger solutions with dedicated 240V circuit installation and professional electrical setup throughout Battle Ground WA.

EV Charger Setup: Electrical assessment, dedicated 240V circuit installation, GFCI protection, permit coordination, and comprehensive testing. Complete Tesla and universal EV charger installation with user training and warranty support for Battle Ground WA electric vehicle owners.
View EV Charger Services →
COM

Commercial Electrician Battle Ground WA

Professional commercial electrical services for Battle Ground Washington businesses. Crown Electric provides electrical installations, maintenance, and repairs for retail, office, and industrial properties throughout Battle Ground WA with minimal business disruption and code-compliant installations.

Commercial Services: Complete office electrical installation, retail lighting systems, warehouse electrical upgrades, and electrical maintenance contracts. Licensed for all commercial electrical work in Battle Ground WA with proper permitting and inspection coordination.
View Commercial Services →
RES

Residential Electrician Battle Ground WA

Complete residential electrical services for Battle Ground Washington homeowners. Crown Electric provides electrical repairs, outlet installation, lighting upgrades, electrical troubleshooting, and electrical maintenance for homes throughout Battle Ground WA with quality workmanship and reliable service.

Residential Solutions: Electrical repairs, GFCI outlet installation, ceiling fan installation, lighting upgrades, electrical troubleshooting, and home electrical maintenance. Professional electrical solutions for Battle Ground WA homes with guaranteed satisfaction and code compliance.
View Residential Services →
Why Choose Crown Electric

Battle Ground WA's Trusted Licensed Electrical Contractor

Crown Electric combines electrical expertise with local community commitment to provide reliable electrical services for Battle Ground Washington residents and businesses. Our licensed electricians deliver professional electrical solutions with transparent pricing, quality workmanship, and guaranteed satisfaction throughout Battle Ground WA.

LIC

Licensed & Insured Battle Ground WA

Fully licensed Washington State electrical contractor with comprehensive insurance coverage. Crown Electric maintains all required licenses and certifications for electrical work throughout Battle Ground WA with proper bonding and worker's compensation insurance for customer protection.

EXP

10+ Years Battle Ground Electrical Experience

Over a decade of electrical service experience in Battle Ground Washington and Clark County. Our licensed electricians understand local electrical codes, permit requirements, and common electrical challenges in Battle Ground WA homes and businesses.

24/7

Emergency Electrical Service Battle Ground WA

24/7 emergency electrical service for urgent electrical problems in Battle Ground Washington. Crown Electric responds immediately to electrical emergencies with professional assessment, rapid repairs, and reliable solutions throughout Battle Ground WA.

$$$

Transparent Pricing Battle Ground WA

Upfront pricing with no hidden fees for all electrical services in Battle Ground Washington. Crown Electric provides detailed estimates, explains all electrical work, and delivers competitive pricing for residential and commercial electrical projects throughout Battle Ground WA.

QUA

Quality Workmanship Guarantee

Professional electrical workmanship with comprehensive warranty coverage for all electrical installations and repairs in Battle Ground WA. Crown Electric stands behind all electrical work with guaranteed satisfaction and long-term reliability throughout Battle Ground Washington.

COM

Battle Ground Community Commitment

Local electrical contractor committed to supporting Battle Ground Washington families and businesses. Crown Electric participates in community events, supports local organizations, and provides reliable electrical services that strengthen the Battle Ground WA community.

Service Coverage

Licensed Electrician Service Areas - Battle Ground WA & Clark County

Crown Electric provides comprehensive electrical services throughout Battle Ground Washington and surrounding Clark County communities. Our licensed electricians offer consistent quality, reliable response times, and professional electrical installations across Southwest Washington.

Battle Ground WA - Primary Service Focus

Complete electrical services with priority scheduling for Battle Ground Washington residents and businesses. Same-day service available for electrical emergencies, installations, and repairs throughout Battle Ground WA with local expertise and community commitment.

Vancouver WA - Regional Hub

Licensed electrical contractor serving Vancouver WA with comprehensive electrical services including electric panel installation, EV charger installation, and emergency electrical repairs throughout Vancouver Washington.

Clark County Electrical Services

Complete electrical contractor services throughout Clark County including residential and commercial electrical installations, house rewiring, and electrical maintenance with consistent quality and professional service.

Camas WA Electrical Contractor

Professional electrical services in Camas WA including electrical repairs, panel upgrades, and commercial electrical installations with licensed electricians and reliable service throughout Camas Washington.

Ridgefield WA Electrical Services

Licensed electrical contractor services in Ridgefield WA including house rewiring, electrical troubleshooting, and professional electrical installations for homes and businesses throughout Ridgefield Washington.

Contact Battle Ground WA Electrician

Get professional electrical services in Battle Ground Washington from Crown Electric. Our licensed electricians provide free estimates, emergency repairs, and quality installations throughout Battle Ground WA with transparent pricing and guaranteed satisfaction.

CALL

Call Crown Electric

(360) 896-4122

EMAIL

Email Us

Crownelectric240@yahoo.com

AREA

Service Area

Battle Ground WA & Clark County

TIME

Business Hours

Monday - Friday: 8:00 AM - 4:00 PM

ADDR

Office Address

6109 NE 121st Ave Suite 104
Vancouver, WA 98682

Get Free Battle Ground WA Electrical Estimate