﻿body {
}
.service-page {
    padding: 55px 0 90px;
}

.service-page-heading {
    margin-bottom: 32px;
}

    .service-page-heading > span {
        color: var(--awax-red);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .service-page-heading h1 {
        margin: 8px 0 10px;
        font-size: 38px;
        font-weight: 900;
    }

    .service-page-heading p {
        margin: 0;
        color: var(--awax-muted);
        font-size: 16px;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--awax-border);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(18, 24, 31, 0.07);
}

.service-card-image {
    height: 285px;
    overflow: hidden;
    background: #e8ebef;
}

    .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-card-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--awax-muted);
}

.service-card-content {
    padding: 24px;
}

    .service-card-content h2 {
        margin: 0 0 13px;
        font-size: 24px;
        font-weight: 900;
    }

    .service-card-content p {
        min-height: 78px;
        margin: 0 0 22px;
        color: var(--awax-muted);
        line-height: 1.7;
    }

.service-whatsapp-button {
    display: flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #18a947;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

    .service-whatsapp-button:hover {
        background: #128b3a;
        color: #ffffff;
    }

.service-empty-state {
    padding: 55px 20px;
    border: 1px dashed var(--awax-border);
    border-radius: 14px;
    background: #ffffff;
    color: var(--awax-muted);
    text-align: center;
}

@media (max-width: 767px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-page {
        padding: 35px 0 100px;
    }

    .service-page-heading h1 {
        font-size: 30px;
    }

    .service-card-image {
        height: 230px;
    }

    .service-card-content {
        padding: 20px;
    }
}
/* =========================================
   HİZMETLER - MOBİL SON RÖTUŞLAR
   ========================================= */

@media (max-width: 576px) {

    .service-page {
        padding: 34px 0 95px;
    }

    .service-page-heading {
        margin-bottom: 24px;
    }

        .service-page-heading > span {
            font-size: 11px;
            letter-spacing: 1.7px;
        }

        .service-page-heading h1 {
            margin: 7px 0 9px;
            font-size: 30px;
            line-height: 1.15;
        }

        .service-page-heading p {
            font-size: 14px;
            line-height: 1.6;
        }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-card-image {
        height: 220px;
    }

    .service-card-content {
        padding: 18px;
    }

        .service-card-content h2 {
            margin-bottom: 10px;
            font-size: 21px;
            line-height: 1.3;
        }

        .service-card-content p {
            min-height: 0;
            margin-bottom: 17px;
            font-size: 13px;
            line-height: 1.65;
        }

    .service-whatsapp-button {
        width: 100%;
        min-height: 47px;
        padding: 0 14px;
        border-radius: 9px;
        font-size: 13px;
        text-align: center;
    }

    .service-empty-state {
        padding: 35px 16px;
        border-radius: 11px;
        font-size: 13px;
    }
}