/*
 * HİZMETLER LİSTE SAYFASI
 * /hizmetler sayfasındaki kartların ve mobil görünümün özel kuralları.
 */
.service-detail-section {
        background: linear-gradient(180deg, #ffffff 0%, #f7f4fa 100%);
    }

    .service-detail-intro {
        max-width: 700px;
        margin: 0 auto;
        color: #6f6f78;
    }

    .service-detail-card {
        position: relative;
        height: 100%;
        padding: 36px;
        overflow: hidden;
        background: #fff;
        border: 1px solid rgba(91, 36, 137, 0.1);
        border-radius: 18px;
        box-shadow: 0 12px 35px rgba(42, 20, 66, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .service-detail-card:hover {
        transform: translateY(-7px);
        border-color: rgba(91, 36, 137, 0.28);
        box-shadow: 0 22px 48px rgba(42, 20, 66, 0.13);
    }

    .service-detail-number {
        position: absolute;
        top: 18px;
        right: 25px;
        color: rgba(91, 36, 137, 0.07);
        font-size: 70px;
        font-weight: 800;
        line-height: 1;
    }

    .service-detail-header {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 22px;
    }

    .service-detail-icon {
        display: flex;
        width: 76px;
        min-width: 76px;
        height: 76px;
        margin-right: 18px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f5ecfc, #e8fff6);
        border-radius: 18px;
    }

    .service-detail-icon img {
        max-width: 46px;
        max-height: 46px;
    }

    .service-detail-card h3 {
        margin-bottom: 4px;
        color: #24212a;
        font-size: 23px;
        font-weight: 700;
    }

    .service-detail-label {
        color: #5b2489;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }

    .service-detail-card > p {
        min-height: 104px;
        margin-bottom: 22px;
        color: #6f6f78;
        line-height: 1.75;
    }

    .service-detail-list {
        margin: 0 0 25px;
        padding: 22px 0 16px;
        border-top: 1px solid #eee9f2;
        list-style: none;
    }

    .service-detail-list li {
        position: relative;
        margin-bottom: 11px;
        padding-left: 28px;
        color: #403b46;
        line-height: 1.5;
    }

    .service-detail-list li::before {
        position: absolute;
        top: 2px;
        left: 0;
        color: #35d89a;
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
    }

    .service-detail-link {
        display: inline-flex;
        align-items: center;
        color: #5b2489;
        font-weight: 700;
        transition: color 0.2s ease;
    }

    .service-detail-link i {
        margin-left: 9px;
        transition: transform 0.2s ease;
    }

    .service-detail-link:hover {
        color: #35b985;
        text-decoration: none;
    }

    .service-detail-link:hover i {
        transform: translateX(4px);
    }

    @media (max-width: 767px) {
        .service-detail-card {
            padding: 26px;
        }

        .service-detail-card > p {
            min-height: auto;
        }
    }
