/* ========================================
   DETAIL PAGE NAVIGATION (Projects & Services)
======================================== */
.detail-navigation {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    /* İki uca yasla */
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-navigation .btn {
    min-width: 200px;
    justify-content: center;
    flex: 0 1 auto;
    /* Masaüstü: auto width (içeriğe göre) */
}

@media (max-width: 768px) {
    .detail-navigation {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .detail-navigation .btn {
        width: 100%;
        flex: 1 1 auto;
        /* Mobilde tam genişlik */
        margin-left: 0 !important;
    }
}