/* ========== Mechanical Page Variables ========== */
.mechanical-page {
    --mech-primary: #f04e30;
    --mech-dark: #2a2a2a;
    --mech-light: #f9f9f9;
}

/* ========== Hero Section ========== */
.mechanical-hero {
    background: linear-gradient(135deg, 
        rgba(40,40,40,0.9) 0%,
        rgba(30,30,30,0.9) 100%),
        url('images/mechanical_hero.png') center/cover;
    padding: 8rem 1rem;
    text-align: center;
    position: relative;
}

.mechanical-hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mechanical-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Services Grid ========== */
.mechanical-services {
    padding: 4rem 0;
    background: var(--mech-light);
}

.mechanical-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mechanical-service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mechanical-service-card:hover {
    transform: translateY(-5px);
}

/* Image Hover Effect */
.service-image-hover {
    position: relative;
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.service-image-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mechanical-service-card:hover .service-image-hover img {
    transform: scale(1.05);
}

/* Process Banner */
.process-banner {
    background: black;
    color: white;
    padding: 4rem 1rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.process-step {
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--mech-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .mechanical-hero-title {
        font-size: 2.5rem;
    }

    .mechanical-hero-subtitle {
        font-size: 1.2rem;
    }

    .service-image-hover {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .mechanical-hero-title {
        font-size: 2rem;
    }

    .mechanical-service-card {
        padding: 1.5rem;
    }
}
