/* Repair & Restoration Specific Styles */
:root {
    --primary-color: #1A5F7A;
    --secondary-color: #159895;
    --accent-color: #57C5B6;
    --light-color: #F8F9FA;
    --dark-color: #2C3333;
    --gradient-primary: linear-gradient(135deg, #1A5F7A, #159895);
    --shadow-primary: 0 10px 20px rgba(0,0,0,0.2);
}

/* Repair Services Grid */
.repair-services {
    margin-top: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    background-color: var(--light-color);
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: var(--gradient-primary);
    color: white;
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item:hover i {
    color: white;
}

.service-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-item:hover h4 {
    color: white;
}

/* Service Gallery */
.service-gallery {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Call to Action Section */
.service-cta {
    margin: 50px;
    background-color: var(--light-color);
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: var(--accent-color);
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--dark-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* Interaction Enhancements */
.interactive-hover {
    transition: all 0.3s ease;
}

.interactive-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}