/* ===========================================
   TEK KOLON KART LAYOUT (HER EKRANDA)
   =========================================== */

.service-detail-wrapper {
    width: 92%;
    max-width: 680px;
    margin: 10px auto 80px auto;  /* yukarı çekildi */
}

/* KART */
.service-detail-card {
    display: block;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;

    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);

    border: 4px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, #00a8ff, #0066ff);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    padding-bottom: 25px;
}

/* FOTOĞRAF ALANI */
.service-image-wrapper {
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f6fa;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;

    /* GÖRÜNTÜ KALİTE ARTTIRICI */
    object-fit: contain !important;
    image-rendering: high-quality;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;

    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* METİN ALANI */
.service-card-body {
    padding: 0 25px 10px 25px;
}

.service-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #002b5c;
    margin: 15px 0 12px 0;
}

.service-short {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-description {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* ===========================================
   MOBIL TAM RESPONSIVE Düzenleme
=========================================== */
@media(max-width: 768px) {

    /* SOLA KAYIK KART SORUNU ÇÖZÜLDÜ */
    .service-left {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-detail-wrapper {
        width: 95%;
        max-width: 100%;
        margin: 10px auto 40px auto;
    }

    .service-detail-card {
        border-radius: 20px;
        padding-bottom: 20px;
    }

    /* Foto daha minimal */
    .service-image-wrapper {
        padding: 12px;
        background-color: #f5f7fb;
    }

    .service-image-wrapper img {
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    .service-card-body {
        padding: 0 18px 10px 18px;
    }

    .service-title {
        font-size: 1.5rem;
        margin-top: 12px;
        text-align: center;
    }

    .service-short {
        font-size: 1rem;
        line-height: 1.55;
        text-align: center;
    }

    .service-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-top: 8px;
        text-align: left;
    }
}


/* ===========================================
   SUPER SMALL (Dar Telefonlar: < 430px)
=========================================== */
@media(max-width: 430px) {

    .service-title {
        font-size: 1.35rem;
        font-weight: 800;
    }

    .service-short {
        font-size: 0.98rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-image-wrapper {
        padding: 10px;
    }
}

