﻿.services-home {
    background: #f2f2f2;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75), inset 0 -1px 0 rgba(0,0,0,.03);
}

/* HEADER TAM EKRAN + SOLA YASLI */
.services-home__head-wrap {
    width: 100%;
    padding: 26px 24px 14px;
}

/* sadece başlık alanı 1200px */
.services-home__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 24px 14px; /* altı biraz kısa */
}

/* BAŞLIK SOLA */
.services-home__head {
    max-width: none; /* <-- KİLİT NOKTA */
    margin: 2;
    text-align: left;
}

.services-home__title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 900;
    color: #111;
}

.services-home__desc {
    margin: 0;
    color: #555;
    line-height: 1.5;
    max-width: 760px;
}

/* GRID full width */
.services-home__full {
    width: 100%;
    padding: 0 24px 26px; /* ekran kenar boşluğu */
}

/* kartlar full-width alanda yayılacak */
.services-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}

/* Kart */
.svc-card {
    min-width: 0;
    /*    background: linear-gradient(#fbfbfb, #f4f4f4);
    border: 1px solid #e0e0e0;*/
    background: linear-gradient(#eef1f3, #e3e7ea);
    border: 1px solid #d2d7db;
    border-radius: 16px;
    padding: 18px 16px;
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 1px 0 rgba(255,255,255,.75), 0 10px 24px rgba(0,0,0,.05);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
    min-height: 160px;
}

    .svc-card:hover {
        /*   transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(0,0,0,.08);*/
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0,0,0,.10);
        background: linear-gradient(#e9edf0,#dde3e7);
    }

.svc-name {
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.svc-text {
    color: #555;
    line-height: 1.45;
    font-size: 13.5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* icon chip */
.svc-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ececec;
    border: 1px solid #dddddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    flex: 0 0 auto;
}

    .svc-ico svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.svc-card:hover .svc-ico {
    background: #0aa2a2;
    border-color: #0aa2a2;
    color: #fff;
}

/* Responsive */
@media (max-width:1200px) {
    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:980px) {
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:560px) {
    .services-home__head-wrap,
    .services-home__full {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
