.angie-services-676af0c0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.angie-service-card-link-676af0c0 {
    text-decoration: none;
    display: block;
    height: 100%;
}
.angie-service-card-676af0c0 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
}
.angie-service-card-676af0c0:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.angie-service-bg-676af0c0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}
.angie-service-card-676af0c0:hover .angie-service-bg-676af0c0 {
    transform: scale(1.05);
}
.angie-service-overlay-676af0c0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    transition: background 0.3s ease;
}
.angie-service-card-676af0c0:hover .angie-service-overlay-676af0c0 {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.3) 100%);
}
.angie-service-content-676af0c0 {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    color: #fff;
}
.angie-service-title-676af0c0 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #fff;
    transition: transform 0.3s ease;
}
.angie-service-desc-676af0c0 {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.angie-service-card-676af0c0:hover .angie-service-title-676af0c0 {
    transform: translateY(-5px);
}
.angie-service-card-676af0c0:hover .angie-service-desc-676af0c0 {
    max-height: 150px;
    opacity: 1;
    margin-top: 0.5rem;
}