/* ============================================================
   SERVICE DETAIL PAGE – PREMIUM TASARIM (KAROTCITY 2025)
============================================================ */



.service-detail-wrapper {
    background: #fff;
    border-radius: 22px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 12px 38px rgba(0,0,0,0.12);
}

/* ROW hizalama – ASIL KRİTİK NOKTA */
.service-detail-row {
    display: flex;
    align-items: flex-start !important;  /* YAZI BAŞI HİZA */
    gap: 30px;
}

/* SOL: RESİM */
.service-image-box {
    flex: 1;
    display: flex;
    justify-content: flex-start;  /* sola hizala */
    align-items: flex-start;      /* yazının başına hizala */
    padding: 25px;
}

.service-image {
    width: 100%;
    max-width: 430px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
    transition: 0.35s;
}

.service-image:hover {
    transform: scale(1.03);
}

/* SAĞ TARAF */
.service-info-box {
    flex: 1.4;
    padding: 40px 35px;
}

.service-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #b3003f;
    margin-bottom: 12px;
}

.service-short {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 20px;
}

.service-description {
    line-height: 1.75;
    color: #444;
    margin-bottom: 25px;
}

/* BUTON */
.btn-danger {
    background: linear-gradient(135deg, #b3003f, #ff4d6d);
    border: none;
    padding: 14px 38px;
    font-weight: 600;
    transition: .25s;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff4d6d, #b3003f);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-detail-row {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .service-image-box {
        justify-content: center;
    }

    .service-info-box {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .service-image {
        max-width: 300px;
    }
}
