.services-grid {
    display: grid;
    /* Columns overridden by Elementor controls */
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    text-decoration: none;
    transition: all .35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.service-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.1),
        transparent
    );
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #111;
    line-height: 1.3;
}

.service-desc {
    margin-top: 14px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E1AF4A;
}

.service-btn svg {
    width: 16px;
    height: 16px;
}

@media(max-width: 767px) {
    .service-content {
        padding: 20px;
    }
}
