/* Electricians Page Specific Styles */

/* Work Process Section */
.work-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #4673AF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(70, 115, 175, 0.3);
}

.step-content {
    width: 45%;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-step:nth-child(odd) .step-content {
    margin-right: auto;
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    margin-bottom: 5px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.project-content {
    padding: 25px;
}

.project-content h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.project-content p {
    color: #666;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.meta-label {
    color: #999;
}

.meta-value {
    color: #4673AF;
    font-weight: 500;
}

/* Service Stats */
.service-stats {
    margin-top: 2rem;
}

.service-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4673AF;
}

.service-stats p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* CTA Section Override */
.cta-section {
    padding: 80px 0;
}

.cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Quick Contact Sidebar */
.quick-contact-sidebar {
    position: fixed;
    right: -300px;
    top: 30%;
    width: 250px;
    background: white;
    padding: 20px;
    border-radius: 12px 0 0 12px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 100;
}

.quick-contact-sidebar:hover {
    right: 0;
}

.quick-contact-sidebar::before {
    content: 'Contact';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #4673AF;
    color: white;
    padding: 5px 15px;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-widget h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-areas-widget h6 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-areas-widget ul li {
    padding: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        flex-direction: column !important;
    }
    
    .step-number {
        position: relative;
        left: 40px;
        transform: none;
        margin-bottom: 20px;
    }
    
    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-sidebar {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-stats .row {
        gap: 20px;
    }
}