.services-grid {

    width: var(--container);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(320px, 1fr)
        );

    gap: 28px;
}

.service-card {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-md);

    background: var(--surface);

    border:
        1px solid var(--border);

    transition: var(--transition);

    box-shadow: var(--shadow);
}

.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,255,255,0.18);
}

.service-image-wrapper {

    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #0f0f10;
}

.service-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 800ms ease;
}

.service-card:hover .service-image {

    transform: scale(1.05);
}

.service-placeholder {

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        rgba(255,255,255,0.2);

    font-size: 2rem;
}

.service-content {

    padding: 22px;
}

.service-meta {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 14px;
}

.service-category {

    color: var(--text-soft);

    font-size: 0.82rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.service-price {

    font-size: 0.95rem;

    font-weight: 700;
}

.service-title {

    margin: 0;

    font-size: 1.35rem;

    line-height: 1.2;

    font-weight: 700;
}

.service-professional {

    margin-top: 12px;

    color: var(--text-soft);

    font-size: 0.95rem;
}

/*
|--------------------------------------------------------------------------
| EMPTY STATE
|--------------------------------------------------------------------------
*/

.empty-state {

    width: var(--container);

    margin: 120px auto;

    text-align: center;
}

.empty-state i {

    font-size: 4rem;

    color:
        rgba(255,255,255,0.2);
}

.empty-state h3 {

    margin-top: 24px;

    font-size: 1.8rem;
}

.empty-state p {

    color: var(--text-soft);
}