/* Service image styles */
.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Contact information with map */
.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-details {
    flex: 1;
    min-width: 300px;
}

.contact-info-map {
    flex: 2;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-info-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
}

/* Footer clean styles */
footer {
    background: var(--hover-color) !important;
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    background: none !important;
    box-shadow: none !important;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3:after {
    display: none;
}

@media (max-width: 768px) {
    .contact-info-map {
        min-width: 100%;
        height: 300px;
    }
}
