House Rewiring Services Vancouver WA | Aluminum Wire Replacement | Crown Electric /* ===== CSS VARIABLES ===== */ :root { --maroon: #800020; --maroon-light: #9a0024; --maroon-dark: #660019; --gold: #FFD700; --gold-light: #FFED4A; --gold-dark: #B8860B; --white: #FFFFFF; --gray-50: #F8FAFC; --gray-100: #F1F5F9; --gray-200: #E2E8F0; --gray-300: #CBD5E1; --gray-400: #94A3B8; --gray-500: #64748B; --gray-600: #475569; --gray-700: #334155; --gray-800: #1E293B; --gray-900: #0F172A; } /* ===== GLOBAL STYLES ===== */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; color: var(--gray-800); background-color: var(--white); } .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } /* ===== 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 { color: var(--gray-700); text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.3s ease; position: relative; padding: 0.5rem 0; } .nav-link:hover, .nav-link.active { color: var(--maroon); } .nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--maroon); } /* Dropdown */ .nav-dropdown { position: relative; } .dropdown-content { position: absolute; top: 100%; left: 0; min-width: 250px; background: var(--white); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border-radius: 12px; padding: 1rem 0; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 100; border: 1px solid var(--gray-200); } .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-weight: 400; transition: all 0.3s ease; } .dropdown-link:hover { background: var(--gray-50); color: var(--maroon); padding-left: 2rem; } /* CTA Section */ .nav-cta { display: flex; align-items: center; gap: 1rem; } .nav-phone { color: var(--maroon); text-decoration: none; font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease; } .nav-phone:hover { color: var(--maroon-light); } /* Mobile Menu Toggle */ .mobile-menu-toggle { display: none; flex-direction: column; width: 30px; height: 20px; background: none; border: none; cursor: pointer; padding: 0; z-index: 1002; } .mobile-menu-toggle span { width: 100%; height: 3px; background: var(--maroon); margin: 2px 0; 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: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease; } .mobile-menu-overlay.active { opacity: 1; visibility: visible; } .mobile-menu { position: fixed; top: 0; right: -350px; width: 300px; height: 100vh; background: var(--white); z-index: 1001; transition: right 0.3s ease; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; } .mobile-menu.active { right: 0; } .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--gray-200); } .mobile-menu-logo { display: flex; align-items: center; gap: 0.5rem; color: var(--maroon); font-weight: 800; font-size: 1.2rem; } .mobile-menu-logo img { width: 30px; height: 30px; object-fit: contain; } .mobile-menu-close { background: none; border: none; font-size: 2rem; color: var(--gray-600); cursor: pointer; padding: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; } .mobile-menu-nav { flex: 1; padding: 1rem 0; } .mobile-nav-link { display: block; padding: 1rem 1.5rem; color: var(--gray-700); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--gray-100); transition: all 0.3s ease; } .mobile-nav-link:hover, .mobile-nav-link.active { background: var(--gray-50); color: var(--maroon); padding-left: 2rem; } .mobile-nav-dropdown { border-bottom: 1px solid var(--gray-100); } .mobile-dropdown-toggle { width: 100%; padding: 1rem 1.5rem; background: none; border: none; text-align: left; font-weight: 500; color: var(--gray-700); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; } .mobile-dropdown-toggle:hover { background: var(--gray-50); color: var(--maroon); } .mobile-dropdown-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--gray-50); } .mobile-dropdown-content.active { max-height: 500px; } .mobile-dropdown-link { display: block; padding: 0.8rem 2rem; color: var(--gray-600); text-decoration: none; transition: all 0.3s ease; border-bottom: 1px solid var(--gray-200); } .mobile-dropdown-link:hover { background: var(--white); color: var(--maroon); padding-left: 2.5rem; } .mobile-menu-cta { margin: 1.5rem; padding: 1rem 2rem; 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 { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 1rem; border-radius: 12px; border: 1px solid rgba(255, 215, 0, 0.2); font-size: 0.9rem; font-weight: 600; text-align: center; transition: transform 0.3s ease; } .hero-feature:hover { transform: translateY(-5px); border-color: var(--gold); } .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; text-decoration: none; border-radius: 12px; 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 15px rgba(255, 215, 0, 0.3); } .btn-primary:hover { transform: translateY(-2px); 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: 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; } /* ===== REWIRING TYPES SECTION ===== */ .rewiring-types { background: var(--gray-50); } .types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; } .rewiring-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; } .rewiring-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; } .rewiring-type:hover::before { transform: scaleX(1); } .rewiring-type:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(128, 0, 32, 0.15); border-color: var(--maroon); } .rewiring-type h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; line-height: 1.3; } .rewiring-type p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; flex-grow: 1; } .rewiring-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); } .rewiring-specs strong { color: var(--maroon); } .rewiring-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; } .rewiring-link:hover { color: var(--maroon-light); transform: translateX(5px); } /* ===== WHY CHOOSE SECTION ===== */ .why-choose { background: var(--white); } .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 3rem; } .benefit-item { display: flex; gap: 1.5rem; align-items: flex-start; } .benefit-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2); } .benefit-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.8rem; line-height: 1.3; } .benefit-content p { color: var(--gray-600); line-height: 1.6; } /* ===== PROCESS SECTION ===== */ .process-section { background: var(--gray-50); } .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; } .process-step { text-align: center; position: relative; } .process-step::after { content: ''; position: absolute; top: 30px; right: -50%; width: 100%; height: 2px; background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%); z-index: 1; } .process-step:last-child::after { display: none; } .step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.3rem; margin: 0 auto 1.5rem; box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2); position: relative; z-index: 2; } .step-title { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.8rem; } .step-description { color: var(--gray-600); line-height: 1.6; font-size: 0.95rem; } /* ===== SERVICE AREAS SECTION ===== */ .service-areas { background: var(--white); } .areas-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: center; } .areas-text h3 { font-size: 1.8rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1.5rem; line-height: 1.3; } .areas-text p { color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; } .areas-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } .area-item { background: var(--gray-50); padding: 1rem 1.5rem; border-radius: 10px; border: 1px solid var(--gray-200); transition: all 0.3s ease; } .area-item:hover { background: var(--maroon); color: var(--white); transform: translateX(5px); } .area-item a { color: inherit; text-decoration: none; font-weight: 500; } .map-container { background: var(--gray-100); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); border: 1px solid var(--gray-200); } .map-placeholder { width: 100%; height: 350px; background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%); 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; } /* ===== FAQ SECTION ===== */ .faq-section { background: var(--gray-50); } .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { background: var(--white); border-radius: 15px; margin-bottom: 1.5rem; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); border: 1px solid var(--gray-200); overflow: hidden; } .faq-question { padding: 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; } .faq-question:hover { background: var(--gray-50); } .faq-question h3 { font-size: 1.2rem; font-weight: 600; color: var(--gray-900); margin: 0; line-height: 1.4; } .faq-toggle { width: 30px; height: 30px; background: var(--maroon); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.2rem; transition: transform 0.3s ease; flex-shrink: 0; } .faq-item.active .faq-toggle { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .faq-item.active .faq-answer { max-height: 300px; } .faq-answer-content { padding: 0 2rem 2rem; color: var(--gray-600); line-height: 1.7; } /* ===== CTA SECTION ===== */ .cta-section { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); color: var(--white); text-align: center; } .cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; } .cta-content p { font-size: 1.2rem; margin-bottom: 2.5rem; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin-left: auto; margin-right: auto; } .cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; } /* ===== RESPONSIVE DESIGN ===== */ @media (max-width: 1024px) { .nav-menu { display: none; } .mobile-menu-toggle { display: flex; } .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; } .types-grid { grid-template-columns: 1fr; gap: 1.5rem; } .benefits-grid { grid-template-columns: 1fr; gap: 2rem; } .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; } .process-step::after { display: none; } .areas-content { grid-template-columns: 1fr; gap: 2rem; } } @media (max-width: 768px) { .container { padding: 0 1rem; } .section { padding: 60px 0; } .hero { min-height: 80vh; padding-top: 100px; } .hero-text h1 { font-size: 2.5rem; } .hero-features { grid-template-columns: 1fr; } .hero-cta { flex-direction: column; align-items: center; } .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; } .process-steps { grid-template-columns: 1fr; gap: 2rem; } .areas-list { grid-template-columns: 1fr; } .cta-buttons { flex-direction: column; align-items: center; } .rewiring-type { padding: 1.5rem; min-height: auto; } .benefit-item { flex-direction: column; text-align: center; gap: 1rem; } .faq-question { padding: 1.5rem; } .faq-question h3 { font-size: 1.1rem; } } @media (max-width: 480px) { .nav-phone span { font-size: 0.9rem; } .mobile-menu { width: 280px; max-width: 90vw; } .hero-text h1 { font-size: 2rem; } .hero-text p { font-size: 1.1rem; } .section-title { font-size: 1.8rem; } .section-subtitle { font-size: 1rem; } .rewiring-type { padding: 1rem; } .benefit-icon { width: 50px; height: 50px; } .step-number { width: 50px; height: 50px; font-size: 1.1rem; } } /* ===== UTILITY CLASSES ===== */ .text-center { text-align: center; } .hidden { display: none; } .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; }
Crown Electric Logo Crown Electric
  • Home
  • Services
    Electric Panels EV Chargers Rewiring Services New Construction Residential Services Commercial Services
  • Service Areas
    Vancouver WA Battle Ground Camas Ridgefield
  • About
  • Contact
(360) 896-4122
Crown Electric Logo 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

House Rewiring Services Vancouver WA

Professional rewiring services for older homes in Vancouver WA and Clark County. Expert aluminum wire replacement, knob and tube rewiring, and electrical code compliance by licensed electricians with 20+ years experience.

Aluminum Wire Replacement
Knob & Tube Rewiring
Code Compliance
Licensed & Insured
Call (360) 896-4122 View Services β†’
πŸ“Έ Rewiring Services Image
Professional Electrical Work
Rewiring Solutions

Professional Rewiring Services Vancouver WA

Crown Electric provides comprehensive rewiring solutions for homes throughout Vancouver WA and Clark County. From complete aluminum wire replacement to knob and tube system upgrades, our licensed electricians ensure safety and code compliance.

Whole House Rewiring Vancouver WA

Complete electrical system replacement for older homes in Vancouver WA with outdated wiring systems. Our whole house rewiring service includes new circuits, outlets, switches, and electrical panel upgrades to meet current electrical codes and safety standards.

Timeline: 5-10 days depending on home size
Includes: New circuits, outlets, switches, panel upgrade
Cost Range: $8,000-$15,000 for typical homes
Best For: Homes over 50 years old with aluminum/knob tube wiring
Learn More About Whole House Rewiring β†’

Aluminum Wire Replacement Clark County

Safe aluminum wire replacement throughout Clark County addressing fire hazards and electrical code violations. Our certified electricians replace dangerous aluminum wiring with modern copper wiring, ensuring family safety and property protection.

Timeline: 2-4 days for partial replacement
Safety Priority: Eliminates fire risk from aluminum connections
Code Compliance: Meets current NEC standards
Best For: Homes built 1965-1975 with aluminum branch circuits
Get Aluminum Wire Assessment β†’

Knob and Tube Rewiring Vancouver

Complete knob and tube system replacement for Vancouver WA historic homes. Professional removal of obsolete knob and tube wiring with modern electrical installation including proper grounding, GFCI protection, and adequate circuit capacity.

Timeline: 3-7 days depending on accessibility
Modern Features: GFCI protection, proper grounding
Capacity Upgrade: Increased electrical capacity for modern needs
Best For: Homes built before 1950 with original wiring
Schedule Knob & Tube Assessment β†’
Safety & Compliance

Why Choose Professional Rewiring Services

Professional electrical rewiring protects your family and property while ensuring code compliance. Crown Electric's experienced team provides thorough rewiring solutions with transparent pricing and quality guarantees.

πŸ”₯

Fire Prevention & Safety

Aluminum wiring and knob and tube systems create significant fire risks. Professional rewiring eliminates these hazards with modern, code-compliant electrical systems that protect your Vancouver WA home and family.

⚑

Increased Electrical Capacity

Modern homes require substantially more electrical capacity than older systems provide. Our rewiring services upgrade your electrical system to handle today's appliances, electronics, and electrical demands safely.

πŸ“‹

Code Compliance & Permits

Professional rewiring ensures full compliance with current electrical codes in Vancouver WA and Clark County. We handle all permit requirements and inspections, guaranteeing your electrical system meets safety standards.

🏠

Property Value & Insurance

Updated electrical systems significantly increase property value and may reduce insurance premiums. Many insurance companies require rewiring for homes with aluminum or knob and tube wiring for coverage.

Our Process

Rewiring Timeline & Process Vancouver WA

Crown Electric follows a systematic approach to home rewiring that minimizes disruption while ensuring quality results. Our experienced team coordinates all aspects from permits to final inspection.

1

Electrical Assessment

Comprehensive evaluation of existing wiring, electrical panel, and capacity requirements. We identify safety hazards and provide detailed rewiring recommendations.

2

Permit & Planning

Obtain required electrical permits from Vancouver WA authorities. Create detailed rewiring plan minimizing wall damage and disruption to your daily routine.

3

Professional Installation

Expert installation of new wiring, outlets, switches, and electrical panel. Clean, organized work with daily progress updates and minimal mess.

4

Testing & Inspection

Comprehensive testing of all circuits and systems. Coordinate final inspection with Clark County authorities to ensure code compliance and safety certification.

Local Expertise

Rewiring Services Throughout Clark County

Crown Electric provides professional rewiring services throughout Vancouver WA and Clark County. Our local expertise ensures compliance with regional electrical codes and permit requirements.

Expert Local Rewiring Contractors

As Vancouver WA's trusted electrical contractor, Crown Electric understands the unique challenges of rewiring older homes throughout Clark County. We're familiar with local electrical codes, permit processes, and inspection requirements.

Our team has extensive experience with the diverse housing stock in Clark County, from historic Vancouver homes to mid-century properties in Battle Ground, Camas, and Ridgefield.

Vancouver WA
Battle Ground
Camas
Ridgefield
Clark County
Other Areas
πŸ—ΊοΈ Clark County Service Map
Vancouver β€’ Battle Ground β€’ Camas β€’ Ridgefield
Common Questions

Rewiring Services FAQ

Get answers to frequently asked questions about house rewiring, aluminum wire replacement, and electrical safety in Vancouver WA.

How much does whole house rewiring cost in Vancouver WA?

+

Whole house rewiring in Vancouver WA typically ranges from $8,000 to $15,000 depending on home size, accessibility, and electrical panel requirements. Crown Electric provides free detailed estimates including permits, materials, and labor. Costs vary based on square footage, number of circuits needed, and complexity of installation.

When should I replace aluminum wiring in my Clark County home?

+

Aluminum wire replacement is recommended immediately for homes built between 1965-1975 throughout Clark County. Signs include frequent circuit breaker trips, warm outlets or switches, flickering lights, and burning smells. Aluminum wiring creates fire hazards and insurance concerns requiring professional assessment and replacement.

How long does house rewiring take in Vancouver WA?

+

House rewiring timeline in Vancouver WA ranges from 2-4 days for partial rewiring to 5-10 days for complete whole house rewiring. Factors affecting timeline include home size, wiring accessibility, permit processing, and electrical panel upgrades. Crown Electric provides detailed timeline estimates during initial assessment.

Do I need permits for rewiring in Vancouver WA?

+

Yes, electrical permits are required for rewiring projects in Vancouver WA and throughout Clark County. Crown Electric handles all permit applications, inspections, and code compliance requirements. Permits ensure safety standards and are necessary for insurance and resale purposes.

Is knob and tube wiring dangerous in older homes?

+

Knob and tube wiring in Vancouver WA homes poses significant safety risks including fire hazards, lack of grounding protection, and inadequate electrical capacity. Many insurance companies refuse coverage for homes with knob and tube systems. Professional replacement with modern wiring ensures safety and insurability.

Ready for Professional Rewiring Services?

Contact Crown Electric for expert house rewiring, aluminum wire replacement, and electrical safety solutions throughout Vancouver WA and Clark County. Free estimates and 24/7 emergency service available.

Call (360) 896-4122 Get Free Estimate β†’